Skip to content

fix(AngleRightIcon): Replace AngleRightIcon with RhMicronsCaretRightIcon#12496

Open
rebeccaalpert wants to merge 1 commit into
patternfly:mainfrom
rebeccaalpert:cursor/replace-angle-right-icon-with-rh-microns-caret-right
Open

fix(AngleRightIcon): Replace AngleRightIcon with RhMicronsCaretRightIcon#12496
rebeccaalpert wants to merge 1 commit into
patternfly:mainfrom
rebeccaalpert:cursor/replace-angle-right-icon-with-rh-microns-caret-right

Conversation

@rebeccaalpert

@rebeccaalpert rebeccaalpert commented Jun 18, 2026

Copy link
Copy Markdown
Member

What:
Part of #12402. Breaking into separate PRs so it is easier to review.

Additional issues:

Summary by CodeRabbit

  • Style
    • Updated right-caret/right-arrow icons throughout the component library, including DualListSelector “Add selected” controls, Pagination next-page navigation, and drag-and-drop examples, to use a new icon variant.
    • Refreshed the same icon in deprecated DualListSelector components, associated example content, and the integration demo app to keep visuals consistent.

@coderabbitai

coderabbitai Bot commented Jun 18, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 0a48d680-9e11-4fac-be66-dcb07f8cbd0d

📥 Commits

Reviewing files that changed from the base of the PR and between 6bf618e and 9ed2703.

⛔ Files ignored due to path filters (3)
  • packages/react-core/src/components/Pagination/__tests__/Generated/__snapshots__/PaginationNavigation.test.tsx.snap is excluded by !**/*.snap, !**/generated/**
  • packages/react-core/src/components/Pagination/__tests__/__snapshots__/Pagination.test.tsx.snap is excluded by !**/*.snap
  • packages/react-core/src/deprecated/components/DualListSelector/__tests__/__snapshots__/DualListSelector.test.tsx.snap is excluded by !**/*.snap
📒 Files selected for processing (19)
  • packages/react-core/src/components/DualListSelector/examples/DualListSelector.md
  • packages/react-core/src/components/DualListSelector/examples/DualListSelectorBasic.tsx
  • packages/react-core/src/components/DualListSelector/examples/DualListSelectorBasicSearch.tsx
  • packages/react-core/src/components/DualListSelector/examples/DualListSelectorBasicTooltips.tsx
  • packages/react-core/src/components/DualListSelector/examples/DualListSelectorComplexOptionsActions.tsx
  • packages/react-core/src/components/DualListSelector/examples/DualListSelectorTree.tsx
  • packages/react-core/src/components/Pagination/PaginationNavigation.tsx
  • packages/react-core/src/deprecated/components/DualListSelector/DualListSelector.tsx
  • packages/react-core/src/deprecated/components/DualListSelector/examples/DualListSelector.md
  • packages/react-core/src/deprecated/components/DualListSelector/examples/DualListSelectorComposable.tsx
  • packages/react-core/src/deprecated/components/DualListSelector/examples/DualListSelectorComposableDragDrop.tsx
  • packages/react-core/src/deprecated/components/DualListSelector/examples/DualListSelectorComposableTree.tsx
  • packages/react-drag-drop/src/components/DragDrop/examples/DragDrop.md
  • packages/react-drag-drop/src/components/DragDrop/examples/DragDropContainerDualListSelector.tsx
  • packages/react-drag-drop/src/components/DragDrop/examples/DragDropDemos.md
  • packages/react-drag-drop/src/components/DragDrop/examples/DualListSelectorDraggable.tsx
  • packages/react-integration/demo-app-ts/src/components/demos/DualListSelectorDemo/DualListSelectorBasicDemo.tsx
  • packages/react-integration/demo-app-ts/src/components/demos/DualListSelectorDemo/DualListSelectorTreeDemo.tsx
  • packages/react-integration/demo-app-ts/src/components/demos/DualListSelectorDemo/DualListSelectorWithActionsDemo.tsx
✅ Files skipped from review due to trivial changes (14)
  • packages/react-integration/demo-app-ts/src/components/demos/DualListSelectorDemo/DualListSelectorWithActionsDemo.tsx
  • packages/react-core/src/deprecated/components/DualListSelector/examples/DualListSelector.md
  • packages/react-core/src/deprecated/components/DualListSelector/examples/DualListSelectorComposableTree.tsx
  • packages/react-core/src/deprecated/components/DualListSelector/examples/DualListSelectorComposableDragDrop.tsx
  • packages/react-core/src/deprecated/components/DualListSelector/examples/DualListSelectorComposable.tsx
  • packages/react-integration/demo-app-ts/src/components/demos/DualListSelectorDemo/DualListSelectorTreeDemo.tsx
  • packages/react-drag-drop/src/components/DragDrop/examples/DualListSelectorDraggable.tsx
  • packages/react-drag-drop/src/components/DragDrop/examples/DragDropContainerDualListSelector.tsx
  • packages/react-drag-drop/src/components/DragDrop/examples/DragDrop.md
  • packages/react-core/src/components/DualListSelector/examples/DualListSelector.md
  • packages/react-core/src/components/DualListSelector/examples/DualListSelectorBasic.tsx
  • packages/react-core/src/components/DualListSelector/examples/DualListSelectorBasicTooltips.tsx
  • packages/react-core/src/components/DualListSelector/examples/DualListSelectorBasicSearch.tsx
  • packages/react-core/src/components/Pagination/PaginationNavigation.tsx
🚧 Files skipped from review as they are similar to previous changes (5)
  • packages/react-integration/demo-app-ts/src/components/demos/DualListSelectorDemo/DualListSelectorBasicDemo.tsx
  • packages/react-core/src/components/DualListSelector/examples/DualListSelectorComplexOptionsActions.tsx
  • packages/react-core/src/deprecated/components/DualListSelector/DualListSelector.tsx
  • packages/react-drag-drop/src/components/DragDrop/examples/DragDropDemos.md
  • packages/react-core/src/components/DualListSelector/examples/DualListSelectorTree.tsx

Walkthrough

Replaces AngleRightIcon with RhMicronsCaretRightIcon in Pagination, DualListSelector components, DualListSelector examples, DragDrop examples, and integration demos.

Changes

Icon Replacement Across Components and Examples

Layer / File(s) Summary
Production component icon updates
packages/react-core/src/components/Pagination/PaginationNavigation.tsx, packages/react-core/src/deprecated/components/DualListSelector/DualListSelector.tsx
Replaces AngleRightIcon import and usage with RhMicronsCaretRightIcon in the Pagination next-button and the deprecated DualListSelector "Add selected" control.
react-core DualListSelector example icon updates
packages/react-core/src/components/DualListSelector/examples/..., packages/react-core/src/deprecated/components/DualListSelector/examples/...
Replaces the AngleRightIcon import and icon prop value in the "Add selected" control across current and deprecated DualListSelector example TSX files and their accompanying markdown import lists.
DragDrop and integration demo icon updates
packages/react-drag-drop/src/components/DragDrop/examples/..., packages/react-integration/demo-app-ts/src/components/demos/DualListSelectorDemo/...
Replaces the AngleRightIcon import and icon prop in the "Add selected" control across DragDrop example files, markdown demo files, and integration demo components.

Estimated code review effort: 1 (Trivial) | ~3 minutes

Possibly related PRs

Suggested reviewers: kmcfaul, thatblindgeye, nicolethoen

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly states the main change: replacing AngleRightIcon with RhMicronsCaretRightIcon.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Warning

Tools execution failed with the following error:

Failed to run tools: Stream initialization permanently failed: 13 INTERNAL: Received RST_STREAM with code 2 (Internal server error)


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@patternfly-build

patternfly-build commented Jun 18, 2026

Copy link
Copy Markdown
Collaborator

@rebeccaalpert rebeccaalpert force-pushed the cursor/replace-angle-right-icon-with-rh-microns-caret-right branch 2 times, most recently from 6bf618e to 0018d2f Compare June 18, 2026 20:03
@rebeccaalpert rebeccaalpert requested a review from kmcfaul June 24, 2026 13:13
@rebeccaalpert rebeccaalpert force-pushed the cursor/replace-angle-right-icon-with-rh-microns-caret-right branch from 0018d2f to e579753 Compare July 8, 2026 13:46
@rebeccaalpert rebeccaalpert force-pushed the cursor/replace-angle-right-icon-with-rh-microns-caret-right branch from e579753 to 9ed2703 Compare July 8, 2026 13:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants