From bc14c4a0fd62a73be43e868436d95af9ad469553 Mon Sep 17 00:00:00 2001 From: Evan Date: Tue, 4 Apr 2023 13:41:14 -0400 Subject: [PATCH 1/4] fix(icons): fixed pfIcon renaming to avoid name conflicts with FA icons --- packages/react-icons/scripts/generateIcons.mjs | 4 ++-- packages/react-icons/scripts/icons/patternflyIcons.mjs | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/packages/react-icons/scripts/generateIcons.mjs b/packages/react-icons/scripts/generateIcons.mjs index ec4de31802d..b7324e5e4bd 100644 --- a/packages/react-icons/scripts/generateIcons.mjs +++ b/packages/react-icons/scripts/generateIcons.mjs @@ -1,5 +1,5 @@ import faIcons from './icons/fontawesomeIcons.js'; -import { pfIcons } from '@patternfly/patternfly/icons/pf-icons.mjs'; +import patternflyIcons from './icons/patternflyIcons.mjs'; import customIcons from './icons/customIcons.js'; /** @@ -8,7 +8,7 @@ import customIcons from './icons/customIcons.js'; export function generateIcons() { return { ...faIcons, - ...pfIcons, + ...patternflyIcons, ...customIcons }; } diff --git a/packages/react-icons/scripts/icons/patternflyIcons.mjs b/packages/react-icons/scripts/icons/patternflyIcons.mjs index b715701e290..c4085f1b386 100644 --- a/packages/react-icons/scripts/icons/patternflyIcons.mjs +++ b/packages/react-icons/scripts/icons/patternflyIcons.mjs @@ -18,10 +18,11 @@ const renaming = { /** * @param {object} icons Icons like { screen: { "width": 1024, "height": 1024, "svgPathData": "" } } */ -export function convertIcons(icons) { +function convertIcons(icons) { delete icons.history; Object.entries(renaming).forEach(([oldKey, newKey]) => { + debugger; icons[newKey] = icons[oldKey]; delete icons[oldKey]; }); @@ -29,3 +30,5 @@ export function convertIcons(icons) { return icons; } +const patternflyIcons = convertIcons(pfIcons) +export default patternflyIcons; From 3f8ae3c50d9fd1b406d3ea8ac20b6852746868ca Mon Sep 17 00:00:00 2001 From: Evan Date: Tue, 4 Apr 2023 13:51:05 -0400 Subject: [PATCH 2/4] remove debugger --- packages/react-icons/scripts/icons/patternflyIcons.mjs | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/react-icons/scripts/icons/patternflyIcons.mjs b/packages/react-icons/scripts/icons/patternflyIcons.mjs index c4085f1b386..e8878dfec72 100644 --- a/packages/react-icons/scripts/icons/patternflyIcons.mjs +++ b/packages/react-icons/scripts/icons/patternflyIcons.mjs @@ -22,7 +22,6 @@ function convertIcons(icons) { delete icons.history; Object.entries(renaming).forEach(([oldKey, newKey]) => { - debugger; icons[newKey] = icons[oldKey]; delete icons[oldKey]; }); From b8f0d89fcd5f62fe7f67af30a08d6d81b523a4ec Mon Sep 17 00:00:00 2001 From: Evan Date: Tue, 4 Apr 2023 15:44:55 -0400 Subject: [PATCH 3/4] updated snapshots --- .../Generated/__snapshots__/EmptyStateIcon.test.tsx.snap | 4 ++-- .../__tests__/__snapshots__/TreeView.test.tsx.snap | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/react-core/src/components/EmptyState/__tests__/Generated/__snapshots__/EmptyStateIcon.test.tsx.snap b/packages/react-core/src/components/EmptyState/__tests__/Generated/__snapshots__/EmptyStateIcon.test.tsx.snap index 89981a6856d..231c76c09c2 100644 --- a/packages/react-core/src/components/EmptyState/__tests__/Generated/__snapshots__/EmptyStateIcon.test.tsx.snap +++ b/packages/react-core/src/components/EmptyState/__tests__/Generated/__snapshots__/EmptyStateIcon.test.tsx.snap @@ -14,7 +14,7 @@ exports[`EmptyStateIcon should match snapshot (auto-generated) 1`] = ` height="1em" role="img" style="vertical-align: -0.125em;" - viewBox="0 0 830 1024" + viewBox="0 0 448 512" width="1em" > <path - d="M0,1024 C7.8,907.1 37.3,664.2 147.8,568.3 C147.8,568.3 207.5,511.5 298.4,511.996718 L530.3,511.996718 C621.3,511.996718 680.9,568.3 680.9,568.3 C680.9,568.3 813.9,680.1 830,1024 L0,1024 Z M639.4,224 C639.4,347.7 539.1,448 415.4,448 C291.7,448 191.4,347.7 191.4,224 C191.4,100.3 291.9,0 415.6,0 C539.3,0 639.4,100.3 639.4,224 L639.4,224 Z" + d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z" /> </svg> </div> diff --git a/packages/react-core/src/components/TreeView/__tests__/__snapshots__/TreeView.test.tsx.snap b/packages/react-core/src/components/TreeView/__tests__/__snapshots__/TreeView.test.tsx.snap index cbea3b94198..4eaa9c96715 100644 --- a/packages/react-core/src/components/TreeView/__tests__/__snapshots__/TreeView.test.tsx.snap +++ b/packages/react-core/src/components/TreeView/__tests__/__snapshots__/TreeView.test.tsx.snap @@ -2309,11 +2309,11 @@ exports[`tree view renders icons successfully 1`] = ` height="1em" role="img" style="vertical-align: -0.125em;" - viewBox="0 0 1217 1024" + viewBox="0 0 576 512" width="1em" > <path - d="M1199.6,520.6 C1187.8,514.9 1174.4,512 1159.3,512 L412.7,512 C288.5,512 236.7,593.1 236.7,593.1 L75.6,810.6 L150,552.2 C162,520.1 187.3,492.8 225.6,470.4 C263.9,448 304.1,448 345.8,448 L1089,448 L1089,256 C1089,256 1089,192 1025,192 L503.3,192 L470.6,130.1 C470.6,130.1 440,64 374.7,64 L65,64 C1,64 1,128 1,128 L1,960 L807.7,960 C837,960 868.9,952.166667 903.4,936.5 C937.9,920.8 964.6,901.5 983.7,879 L1196.4,593.2 C1210.2,577.7 1217,561.41 1217,549.3 C1217,537.19 1211.3,526.3 1199.6,520.6" + d="M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z" /> </svg> </span> @@ -2720,11 +2720,11 @@ exports[`tree view renders individual flag options successfully 1`] = ` height="1em" role="img" style="vertical-align: -0.125em;" - viewBox="0 0 1217 1024" + viewBox="0 0 576 512" width="1em" > <path - d="M1199.6,520.6 C1187.8,514.9 1174.4,512 1159.3,512 L412.7,512 C288.5,512 236.7,593.1 236.7,593.1 L75.6,810.6 L150,552.2 C162,520.1 187.3,492.8 225.6,470.4 C263.9,448 304.1,448 345.8,448 L1089,448 L1089,256 C1089,256 1089,192 1025,192 L503.3,192 L470.6,130.1 C470.6,130.1 440,64 374.7,64 L65,64 C1,64 1,128 1,128 L1,960 L807.7,960 C837,960 868.9,952.166667 903.4,936.5 C937.9,920.8 964.6,901.5 983.7,879 L1196.4,593.2 C1210.2,577.7 1217,561.41 1217,549.3 C1217,537.19 1211.3,526.3 1199.6,520.6" + d="M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z" /> </svg> </span> From c0e0d17a8a20850b1a960e861c5e7160f42cc2c1 Mon Sep 17 00:00:00 2001 From: Evan <evan.wilkinson@redhat.com> Date: Fri, 7 Apr 2023 14:13:37 -0400 Subject: [PATCH 4/4] updated snapshots after rebase --- .../__snapshots__/CodeEditor.test.tsx.snap | 51 ++- .../AboutModalBoxCloseButton.test.tsx.snap | 12 +- .../AlertActionCloseButton.test.tsx.snap | 4 +- .../__snapshots__/AlertIcon.test.tsx.snap | 4 +- .../AlertActionCloseButton.test.tsx.snap | 4 +- .../__snapshots__/BackToTop.test.tsx.snap | 4 +- .../__snapshots__/Breadcrumb.test.tsx.snap | 4 +- .../__snapshots__/Button.test.tsx.snap | 4 +- .../__snapshots__/CardHeader.test.tsx.snap | 4 +- .../__snapshots__/Chip.test.tsx.snap | 16 +- .../__snapshots__/ChipGroup.test.tsx.snap | 20 +- .../__snapshots__/ClipboardCopy.test.tsx.snap | 4 +- .../ClipboardCopyButton.test.tsx.snap | 4 +- .../ClipboardCopyToggle.test.tsx.snap | 4 +- .../DataListToggle.test.tsx.snap | 4 +- .../__snapshots__/DataList.test.tsx.snap | 4 +- .../__snapshots__/DatePicker.test.tsx.snap | 20 +- .../__snapshots__/Drawer.test.tsx.snap | 24 +- .../DualListSelector.test.tsx.snap | 108 +++-- .../EmptyStateIcon.test.tsx.snap | 1 + .../__snapshots__/EmptyState.test.tsx.snap | 3 + .../ExpandableSection.test.tsx.snap | 24 +- .../FormFieldGroup.test.tsx.snap | 4 +- .../__snapshots__/HelperText.test.tsx.snap | 8 +- .../__snapshots__/Icon.test.tsx.snap | 12 +- .../__snapshots__/JumpLinks.test.tsx.snap | 4 +- .../__snapshots__/Label.test.tsx.snap | 12 +- .../__snapshots__/LabelGroup.test.tsx.snap | 4 +- .../__snapshots__/List.test.tsx.snap | 24 +- .../__snapshots__/LoginForm.test.tsx.snap | 4 +- .../__snapshots__/MenuToggle.test.tsx.snap | 40 +- .../__snapshots__/ModalBoxTitle.test.tsx.snap | 24 +- .../__snapshots__/ModalContent.test.tsx.snap | 32 +- .../MultipleFileUploadStatus.test.tsx.snap | 20 +- ...MultipleFileUploadStatusItem.test.tsx.snap | 68 ++- .../__snapshots__/NavExpandable.test.tsx.snap | 4 +- .../__tests__/__snapshots__/Nav.test.tsx.snap | 56 ++- .../NotificationBadge.test.tsx.snap | 4 +- .../NotificationDrawerGroup.test.tsx.snap | 16 +- ...ficationDrawerListItemHeader.test.tsx.snap | 20 +- .../__snapshots__/NumberInput.test.tsx.snap | 104 +++-- .../__snapshots__/Page.test.tsx.snap | 132 ++++-- .../__snapshots__/Navigation.test.tsx.snap | 16 +- .../PaginationOptionsMenu.test.tsx.snap | 4 +- .../__snapshots__/Pagination.test.tsx.snap | 408 +++++++++++++----- .../PopoverCloseButton.test.tsx.snap | 4 +- .../ProgressContainer.test.tsx.snap | 4 +- .../__snapshots__/Progress.test.tsx.snap | 12 +- .../__snapshots__/SearchInput.test.tsx.snap | 92 +++- .../__snapshots__/Select.test.tsx.snap | 129 ++++-- .../__snapshots__/SelectOption.test.tsx.snap | 4 +- .../__snapshots__/SelectToggle.test.tsx.snap | 4 +- .../__snapshots__/Switch.test.tsx.snap | 16 +- .../__snapshots__/OverflowTab.test.tsx.snap | 8 +- .../__snapshots__/Tabs.test.tsx.snap | 4 +- .../__snapshots__/Tile.test.tsx.snap | 12 +- .../__snapshots__/Toolbar.test.tsx.snap | 16 +- .../__snapshots__/TreeView.test.tsx.snap | 268 +++++++++--- .../__snapshots__/WizardToggle.test.tsx.snap | 4 +- .../__snapshots__/Wizard.test.tsx.snap | 24 +- .../ApplicationLauncher.test.tsx.snap | 28 +- .../ContextSelector.test.tsx.snap | 28 +- .../ContextSelectorToggle.test.tsx.snap | 20 +- .../__snapshots__/KebabToggle.test.tsx.snap | 4 +- .../__snapshots__/Dropdown.test.tsx.snap | 64 ++- .../DropdownToggle.test.tsx.snap | 36 +- .../__snapshots__/Toggle.test.tsx.snap | 8 +- .../OptionsMenuToggle.test.tsx.snap | 4 +- .../__snapshots__/OptionsMenu.test.tsx.snap | 28 +- .../__snapshots__/Table.test.tsx.snap | 184 ++++++-- 70 files changed, 1761 insertions(+), 591 deletions(-) diff --git a/packages/react-code-editor/src/components/CodeEditor/__test__/__snapshots__/CodeEditor.test.tsx.snap b/packages/react-code-editor/src/components/CodeEditor/__test__/__snapshots__/CodeEditor.test.tsx.snap index 865498af14b..3edfa6df0dd 100644 --- a/packages/react-code-editor/src/components/CodeEditor/__test__/__snapshots__/CodeEditor.test.tsx.snap +++ b/packages/react-code-editor/src/components/CodeEditor/__test__/__snapshots__/CodeEditor.test.tsx.snap @@ -30,10 +30,12 @@ exports[`CodeEditor matches snapshot with all props 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z" @@ -55,10 +57,12 @@ exports[`CodeEditor matches snapshot with all props 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z" @@ -80,10 +84,12 @@ exports[`CodeEditor matches snapshot with all props 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z" @@ -103,10 +109,12 @@ exports[`CodeEditor matches snapshot with all props 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 640 512" + width="1em" > <path d="M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z" @@ -134,7 +142,7 @@ exports[`CodeEditor matches snapshot with all props 1`] = ` > <div class="react-monaco-editor-container" - data-keybinding-context="2" + data-keybinding-context="1" data-mode-id="plaintext" style="height: 400px;" > @@ -191,11 +199,6 @@ exports[`CodeEditor matches snapshot with all props 1`] = ` class="view-rulers" role="presentation" /> - <div - aria-hidden="true" - class="blockDecorations-container" - role="presentation" - /> <div aria-hidden="true" class="view-zones" @@ -207,7 +210,7 @@ exports[`CodeEditor matches snapshot with all props 1`] = ` class="view-lines monaco-mouse-cursor-text" data-mprt="7" role="presentation" - style="position: absolute; font-family: Consolas, 'Courier New', monospace; font-weight: normal; font-size: 14px; font-feature-settings: \\"liga\\" off, \\"calt\\" off; line-height: 19px; letter-spacing: 0px; width: 54px; height: 19px;" + style="position: absolute; font-family: Consolas, 'Courier New', monospace; font-weight: normal; font-size: 14px; font-feature-settings: \\"liga\\" off, \\"calt\\" off; line-height: 19px; letter-spacing: 0px; width: 45px; height: 5px;" > <div class="view-line" @@ -253,7 +256,7 @@ exports[`CodeEditor matches snapshot with all props 1`] = ` aria-hidden="true" class="decorationsOverviewRuler" height="5" - style="position: absolute; transform: translate3d(0px, 0px, 0px); contain: strict; top: 0px; right: 0px; width: 14px; height: 5px; display: block;" + style="position: absolute; transform: translate3d(0px, 0px, 0px); contain: strict; top: 0px; right: 0px; width: 14px; height: 5px;" width="14" /> <div @@ -264,7 +267,7 @@ exports[`CodeEditor matches snapshot with all props 1`] = ` > <div class="slider" - style="position: absolute; top: 0px; left: 0px; width: 14px; transform: translate3d(0px, 0px, 0px); contain: strict; height: 20px;" + style="position: absolute; top: 0px; left: 0px; width: 14px; transform: translate3d(0px, 0px, 0px); contain: strict; height: 5px;" /> </div> </div> @@ -283,6 +286,7 @@ exports[`CodeEditor matches snapshot with all props 1`] = ` autocorrect="off" class="inputarea monaco-mouse-cursor-text" data-mprt="6" + readonly="true" role="textbox" spellcheck="false" style="font-family: Consolas, 'Courier New', monospace; font-weight: normal; font-size: 14px; font-feature-settings: \\"liga\\" off, \\"calt\\" off; line-height: 19px; letter-spacing: 0px; top: 0px; left: 0px; width: 1px; height: 1px;" @@ -339,6 +343,11 @@ exports[`CodeEditor matches snapshot with all props 1`] = ` class="overflowingContentWidgets" data-mprt="2" /> + <div + aria-hidden="true" + class="context-view" + style="display: none;" + /> </div> </div> </div> @@ -428,11 +437,6 @@ exports[`CodeEditor matches snapshot without props 1`] = ` class="view-rulers" role="presentation" /> - <div - aria-hidden="true" - class="blockDecorations-container" - role="presentation" - /> <div aria-hidden="true" class="view-zones" @@ -444,7 +448,7 @@ exports[`CodeEditor matches snapshot without props 1`] = ` class="view-lines monaco-mouse-cursor-text" data-mprt="7" role="presentation" - style="position: absolute; font-family: Consolas, 'Courier New', monospace; font-weight: normal; font-size: 14px; font-feature-settings: \\"liga\\" off, \\"calt\\" off; line-height: 19px; letter-spacing: 0px; width: 35px; height: 19px;" + style="position: absolute; font-family: Consolas, 'Courier New', monospace; font-weight: normal; font-size: 14px; font-feature-settings: \\"liga\\" off, \\"calt\\" off; line-height: 19px; letter-spacing: 0px; width: 26px; height: 5px;" > <div class="view-line" @@ -486,7 +490,7 @@ exports[`CodeEditor matches snapshot without props 1`] = ` aria-hidden="true" class="decorationsOverviewRuler" height="5" - style="position: absolute; transform: translate3d(0px, 0px, 0px); contain: strict; top: 0px; right: 0px; width: 14px; height: 5px; display: block;" + style="position: absolute; transform: translate3d(0px, 0px, 0px); contain: strict; top: 0px; right: 0px; width: 14px; height: 5px;" width="14" /> <div @@ -497,7 +501,7 @@ exports[`CodeEditor matches snapshot without props 1`] = ` > <div class="slider" - style="position: absolute; top: 0px; left: 0px; width: 14px; transform: translate3d(0px, 0px, 0px); contain: strict; height: 20px;" + style="position: absolute; top: 0px; left: 0px; width: 14px; transform: translate3d(0px, 0px, 0px); contain: strict; height: 5px;" /> </div> </div> @@ -572,6 +576,11 @@ exports[`CodeEditor matches snapshot without props 1`] = ` class="overflowingContentWidgets" data-mprt="2" /> + <div + aria-hidden="true" + class="context-view" + style="display: none;" + /> </div> </div> </div> diff --git a/packages/react-core/src/components/AboutModal/__tests__/__snapshots__/AboutModalBoxCloseButton.test.tsx.snap b/packages/react-core/src/components/AboutModal/__tests__/__snapshots__/AboutModalBoxCloseButton.test.tsx.snap index 1c98e92177b..5d9ec226908 100644 --- a/packages/react-core/src/components/AboutModal/__tests__/__snapshots__/AboutModalBoxCloseButton.test.tsx.snap +++ b/packages/react-core/src/components/AboutModal/__tests__/__snapshots__/AboutModalBoxCloseButton.test.tsx.snap @@ -16,10 +16,12 @@ exports[`AboutModalBoxCloseButton Test 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -46,10 +48,12 @@ exports[`AboutModalBoxCloseButton Test close button aria label 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -76,10 +80,12 @@ exports[`AboutModalBoxCloseButton Test onclose 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" diff --git a/packages/react-core/src/components/Alert/__tests__/Generated/__snapshots__/AlertActionCloseButton.test.tsx.snap b/packages/react-core/src/components/Alert/__tests__/Generated/__snapshots__/AlertActionCloseButton.test.tsx.snap index 856628d6dab..d3038015afb 100644 --- a/packages/react-core/src/components/Alert/__tests__/Generated/__snapshots__/AlertActionCloseButton.test.tsx.snap +++ b/packages/react-core/src/components/Alert/__tests__/Generated/__snapshots__/AlertActionCloseButton.test.tsx.snap @@ -13,10 +13,12 @@ exports[`AlertActionCloseButton should match snapshot 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" diff --git a/packages/react-core/src/components/Alert/__tests__/Generated/__snapshots__/AlertIcon.test.tsx.snap b/packages/react-core/src/components/Alert/__tests__/Generated/__snapshots__/AlertIcon.test.tsx.snap index c907b2fa23c..ceca9c159b0 100644 --- a/packages/react-core/src/components/Alert/__tests__/Generated/__snapshots__/AlertIcon.test.tsx.snap +++ b/packages/react-core/src/components/Alert/__tests__/Generated/__snapshots__/AlertIcon.test.tsx.snap @@ -7,10 +7,12 @@ exports[`AlertIcon should match snapshot (auto-generated) 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z" diff --git a/packages/react-core/src/components/Alert/__tests__/__snapshots__/AlertActionCloseButton.test.tsx.snap b/packages/react-core/src/components/Alert/__tests__/__snapshots__/AlertActionCloseButton.test.tsx.snap index 86004a6347a..c88f18237d9 100644 --- a/packages/react-core/src/components/Alert/__tests__/__snapshots__/AlertActionCloseButton.test.tsx.snap +++ b/packages/react-core/src/components/Alert/__tests__/__snapshots__/AlertActionCloseButton.test.tsx.snap @@ -7,10 +7,12 @@ exports[`Matches the snapshot 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" diff --git a/packages/react-core/src/components/BackToTop/__tests__/__snapshots__/BackToTop.test.tsx.snap b/packages/react-core/src/components/BackToTop/__tests__/__snapshots__/BackToTop.test.tsx.snap index 2239cc68af7..84cec57ed52 100644 --- a/packages/react-core/src/components/BackToTop/__tests__/__snapshots__/BackToTop.test.tsx.snap +++ b/packages/react-core/src/components/BackToTop/__tests__/__snapshots__/BackToTop.test.tsx.snap @@ -27,10 +27,12 @@ exports[`Matches the snapshot 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z" diff --git a/packages/react-core/src/components/Breadcrumb/__tests__/__snapshots__/Breadcrumb.test.tsx.snap b/packages/react-core/src/components/Breadcrumb/__tests__/__snapshots__/Breadcrumb.test.tsx.snap index 7f8520ec585..9b3edcd73a5 100644 --- a/packages/react-core/src/components/Breadcrumb/__tests__/__snapshots__/Breadcrumb.test.tsx.snap +++ b/packages/react-core/src/components/Breadcrumb/__tests__/__snapshots__/Breadcrumb.test.tsx.snap @@ -49,10 +49,12 @@ exports[`Breadcrumb component should render breadcrumb with children 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" diff --git a/packages/react-core/src/components/Button/__tests__/__snapshots__/Button.test.tsx.snap b/packages/react-core/src/components/Button/__tests__/__snapshots__/Button.test.tsx.snap index 070f792ebd9..596c17e9380 100644 --- a/packages/react-core/src/components/Button/__tests__/__snapshots__/Button.test.tsx.snap +++ b/packages/react-core/src/components/Button/__tests__/__snapshots__/Button.test.tsx.snap @@ -289,10 +289,12 @@ exports[`Button link with icon 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z" diff --git a/packages/react-core/src/components/Card/__tests__/__snapshots__/CardHeader.test.tsx.snap b/packages/react-core/src/components/Card/__tests__/__snapshots__/CardHeader.test.tsx.snap index 945b7f05215..ee9c9ca3f9e 100644 --- a/packages/react-core/src/components/Card/__tests__/__snapshots__/CardHeader.test.tsx.snap +++ b/packages/react-core/src/components/Card/__tests__/__snapshots__/CardHeader.test.tsx.snap @@ -35,10 +35,12 @@ exports[`CardHeader onExpand adds the toggle button 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" diff --git a/packages/react-core/src/components/Chip/__tests__/__snapshots__/Chip.test.tsx.snap b/packages/react-core/src/components/Chip/__tests__/__snapshots__/Chip.test.tsx.snap index 97114de3dea..1f655c7d145 100644 --- a/packages/react-core/src/components/Chip/__tests__/__snapshots__/Chip.test.tsx.snap +++ b/packages/react-core/src/components/Chip/__tests__/__snapshots__/Chip.test.tsx.snap @@ -35,10 +35,12 @@ exports[`Chip closable 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -85,10 +87,12 @@ exports[`Chip closable with tooltip 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -136,10 +140,12 @@ exports[`Chip custom max-width text 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -229,10 +235,12 @@ exports[`Chip with role='gridcell' 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" diff --git a/packages/react-core/src/components/ChipGroup/__tests__/__snapshots__/ChipGroup.test.tsx.snap b/packages/react-core/src/components/ChipGroup/__tests__/__snapshots__/ChipGroup.test.tsx.snap index 1b75d50285a..ae819a961c3 100644 --- a/packages/react-core/src/components/ChipGroup/__tests__/__snapshots__/ChipGroup.test.tsx.snap +++ b/packages/react-core/src/components/ChipGroup/__tests__/__snapshots__/ChipGroup.test.tsx.snap @@ -52,10 +52,12 @@ exports[`ChipGroup chip group default 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -129,10 +131,12 @@ exports[`ChipGroup chip group with category 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -206,10 +210,12 @@ exports[`ChipGroup chip group with category and tooltip 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -283,10 +289,12 @@ exports[`ChipGroup chip group with closable category 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -314,10 +322,12 @@ exports[`ChipGroup chip group with closable category 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" diff --git a/packages/react-core/src/components/ClipboardCopy/__tests__/Generated/__snapshots__/ClipboardCopy.test.tsx.snap b/packages/react-core/src/components/ClipboardCopy/__tests__/Generated/__snapshots__/ClipboardCopy.test.tsx.snap index 5d0a242cf89..e88c25bf8e6 100644 --- a/packages/react-core/src/components/ClipboardCopy/__tests__/Generated/__snapshots__/ClipboardCopy.test.tsx.snap +++ b/packages/react-core/src/components/ClipboardCopy/__tests__/Generated/__snapshots__/ClipboardCopy.test.tsx.snap @@ -34,10 +34,12 @@ exports[`ClipboardCopy should match snapshot (auto-generated) 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z" diff --git a/packages/react-core/src/components/ClipboardCopy/__tests__/__snapshots__/ClipboardCopyButton.test.tsx.snap b/packages/react-core/src/components/ClipboardCopy/__tests__/__snapshots__/ClipboardCopyButton.test.tsx.snap index 9379442cc6b..a736ec271d5 100644 --- a/packages/react-core/src/components/ClipboardCopy/__tests__/__snapshots__/ClipboardCopyButton.test.tsx.snap +++ b/packages/react-core/src/components/ClipboardCopy/__tests__/__snapshots__/ClipboardCopyButton.test.tsx.snap @@ -15,10 +15,12 @@ exports[`copy button render 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z" diff --git a/packages/react-core/src/components/ClipboardCopy/__tests__/__snapshots__/ClipboardCopyToggle.test.tsx.snap b/packages/react-core/src/components/ClipboardCopy/__tests__/__snapshots__/ClipboardCopyToggle.test.tsx.snap index 00bf022afd1..684954cb053 100644 --- a/packages/react-core/src/components/ClipboardCopy/__tests__/__snapshots__/ClipboardCopyToggle.test.tsx.snap +++ b/packages/react-core/src/components/ClipboardCopy/__tests__/__snapshots__/ClipboardCopyToggle.test.tsx.snap @@ -17,10 +17,12 @@ exports[`ClipboardCopyToggle toggle button render 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" diff --git a/packages/react-core/src/components/DataList/__tests__/Generated/__snapshots__/DataListToggle.test.tsx.snap b/packages/react-core/src/components/DataList/__tests__/Generated/__snapshots__/DataListToggle.test.tsx.snap index 802fa2940db..6641e1239d3 100644 --- a/packages/react-core/src/components/DataList/__tests__/Generated/__snapshots__/DataListToggle.test.tsx.snap +++ b/packages/react-core/src/components/DataList/__tests__/Generated/__snapshots__/DataListToggle.test.tsx.snap @@ -26,10 +26,12 @@ exports[`DataListToggle should match snapshot (auto-generated) 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" diff --git a/packages/react-core/src/components/DataList/__tests__/__snapshots__/DataList.test.tsx.snap b/packages/react-core/src/components/DataList/__tests__/__snapshots__/DataList.test.tsx.snap index 1ea08354438..2e93a2bbfdd 100644 --- a/packages/react-core/src/components/DataList/__tests__/__snapshots__/DataList.test.tsx.snap +++ b/packages/react-core/src/components/DataList/__tests__/__snapshots__/DataList.test.tsx.snap @@ -145,10 +145,12 @@ exports[`DataList DataListAction dropdown 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" diff --git a/packages/react-core/src/components/DatePicker/__tests__/__snapshots__/DatePicker.test.tsx.snap b/packages/react-core/src/components/DatePicker/__tests__/__snapshots__/DatePicker.test.tsx.snap index 0a190bf7690..ae783f510e7 100644 --- a/packages/react-core/src/components/DatePicker/__tests__/__snapshots__/DatePicker.test.tsx.snap +++ b/packages/react-core/src/components/DatePicker/__tests__/__snapshots__/DatePicker.test.tsx.snap @@ -30,10 +30,12 @@ exports[`With popover opened 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" @@ -80,10 +82,12 @@ exports[`With popover opened 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -133,10 +137,12 @@ exports[`With popover opened 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -175,10 +181,12 @@ exports[`With popover opened 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -784,10 +792,12 @@ exports[`disabled date picker 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z" diff --git a/packages/react-core/src/components/Drawer/__tests__/__snapshots__/Drawer.test.tsx.snap b/packages/react-core/src/components/Drawer/__tests__/__snapshots__/Drawer.test.tsx.snap index 9ad0eeae267..e9b80c1035f 100644 --- a/packages/react-core/src/components/Drawer/__tests__/__snapshots__/Drawer.test.tsx.snap +++ b/packages/react-core/src/components/Drawer/__tests__/__snapshots__/Drawer.test.tsx.snap @@ -47,10 +47,12 @@ exports[`Drawer expands from bottom 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -138,10 +140,12 @@ exports[`Drawer has resizable callback and id 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -231,10 +235,12 @@ exports[`Drawer has resizable css and color variants 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -358,10 +364,12 @@ exports[`Drawer isExpanded = true and isInline = false and isStatic = false 1`] > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -430,10 +438,12 @@ exports[`Drawer isExpanded = true and isInline = false and isStatic = true 1`] = > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -502,10 +512,12 @@ exports[`Drawer isExpanded = true and isInline = true and isStatic = false 1`] = > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" diff --git a/packages/react-core/src/components/DualListSelector/__tests__/__snapshots__/DualListSelector.test.tsx.snap b/packages/react-core/src/components/DualListSelector/__tests__/__snapshots__/DualListSelector.test.tsx.snap index 3e771937dbb..68f33aff432 100644 --- a/packages/react-core/src/components/DualListSelector/__tests__/__snapshots__/DualListSelector.test.tsx.snap +++ b/packages/react-core/src/components/DualListSelector/__tests__/__snapshots__/DualListSelector.test.tsx.snap @@ -118,10 +118,12 @@ exports[`DualListSelector basic 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -144,10 +146,12 @@ exports[`DualListSelector basic 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -171,10 +175,12 @@ exports[`DualListSelector basic 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -198,10 +204,12 @@ exports[`DualListSelector basic 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -368,10 +376,12 @@ exports[`DualListSelector basic with disabled controls 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -395,10 +405,12 @@ exports[`DualListSelector basic with disabled controls 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -422,10 +434,12 @@ exports[`DualListSelector basic with disabled controls 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -449,10 +463,12 @@ exports[`DualListSelector basic with disabled controls 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -630,10 +646,12 @@ exports[`DualListSelector with actions 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -656,10 +674,12 @@ exports[`DualListSelector with actions 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -682,10 +702,12 @@ exports[`DualListSelector with actions 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -709,10 +731,12 @@ exports[`DualListSelector with actions 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -944,10 +968,12 @@ exports[`DualListSelector with custom status 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -970,10 +996,12 @@ exports[`DualListSelector with custom status 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -997,10 +1025,12 @@ exports[`DualListSelector with custom status 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -1024,10 +1054,12 @@ exports[`DualListSelector with custom status 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -1117,10 +1149,12 @@ exports[`DualListSelector with search inputs 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" @@ -1234,10 +1268,12 @@ exports[`DualListSelector with search inputs 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1260,10 +1296,12 @@ exports[`DualListSelector with search inputs 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -1287,10 +1325,12 @@ exports[`DualListSelector with search inputs 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -1314,10 +1354,12 @@ exports[`DualListSelector with search inputs 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -1362,10 +1404,12 @@ exports[`DualListSelector with search inputs 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" @@ -1475,10 +1519,12 @@ exports[`DualListSelector with tree 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1599,10 +1645,12 @@ exports[`DualListSelector with tree 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1625,10 +1673,12 @@ exports[`DualListSelector with tree 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -1652,10 +1702,12 @@ exports[`DualListSelector with tree 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -1679,10 +1731,12 @@ exports[`DualListSelector with tree 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" diff --git a/packages/react-core/src/components/EmptyState/__tests__/Generated/__snapshots__/EmptyStateIcon.test.tsx.snap b/packages/react-core/src/components/EmptyState/__tests__/Generated/__snapshots__/EmptyStateIcon.test.tsx.snap index e908b8bad62..231c76c09c2 100644 --- a/packages/react-core/src/components/EmptyState/__tests__/Generated/__snapshots__/EmptyStateIcon.test.tsx.snap +++ b/packages/react-core/src/components/EmptyState/__tests__/Generated/__snapshots__/EmptyStateIcon.test.tsx.snap @@ -11,6 +11,7 @@ exports[`EmptyStateIcon should match snapshot (auto-generated) 1`] = ` aria-labelledby="icon-title-0" class="''" fill="currentColor" + height="1em" role="img" style="vertical-align: -0.125em;" viewBox="0 0 448 512" diff --git a/packages/react-core/src/components/EmptyState/__tests__/__snapshots__/EmptyState.test.tsx.snap b/packages/react-core/src/components/EmptyState/__tests__/__snapshots__/EmptyState.test.tsx.snap index 2ceaf91d5c3..83bda346077 100644 --- a/packages/react-core/src/components/EmptyState/__tests__/__snapshots__/EmptyState.test.tsx.snap +++ b/packages/react-core/src/components/EmptyState/__tests__/__snapshots__/EmptyState.test.tsx.snap @@ -37,8 +37,11 @@ exports[`EmptyState Header with icon 1`] = ` <svg aria-hidden="true" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z" diff --git a/packages/react-core/src/components/ExpandableSection/__tests__/__snapshots__/ExpandableSection.test.tsx.snap b/packages/react-core/src/components/ExpandableSection/__tests__/__snapshots__/ExpandableSection.test.tsx.snap index ff65197f210..3fe415121b2 100644 --- a/packages/react-core/src/components/ExpandableSection/__tests__/__snapshots__/ExpandableSection.test.tsx.snap +++ b/packages/react-core/src/components/ExpandableSection/__tests__/__snapshots__/ExpandableSection.test.tsx.snap @@ -26,10 +26,12 @@ exports[`Detached ExpandableSection renders successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -60,10 +62,12 @@ exports[`Disclosure ExpandableSection 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -99,10 +103,12 @@ exports[`ExpandableSection 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -139,10 +145,12 @@ exports[`Renders ExpandableSection expanded 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -178,10 +186,12 @@ exports[`Renders ExpandableSection indented 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -216,10 +226,12 @@ exports[`Renders Uncontrolled ExpandableSection 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" diff --git a/packages/react-core/src/components/Form/__tests__/__snapshots__/FormFieldGroup.test.tsx.snap b/packages/react-core/src/components/Form/__tests__/__snapshots__/FormFieldGroup.test.tsx.snap index 35faea00374..d33bf2a881c 100644 --- a/packages/react-core/src/components/Form/__tests__/__snapshots__/FormFieldGroup.test.tsx.snap +++ b/packages/react-core/src/components/Form/__tests__/__snapshots__/FormFieldGroup.test.tsx.snap @@ -30,10 +30,12 @@ exports[`Check expandable form field group example against snapshot 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" diff --git a/packages/react-core/src/components/HelperText/__tests__/__snapshots__/HelperText.test.tsx.snap b/packages/react-core/src/components/HelperText/__tests__/__snapshots__/HelperText.test.tsx.snap index 015f6d50aff..402d633cce5 100644 --- a/packages/react-core/src/components/HelperText/__tests__/__snapshots__/HelperText.test.tsx.snap +++ b/packages/react-core/src/components/HelperText/__tests__/__snapshots__/HelperText.test.tsx.snap @@ -28,10 +28,12 @@ exports[`HelperText dynamic helper text renders successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -103,10 +105,12 @@ exports[`HelperText icon helper text renders properly 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" diff --git a/packages/react-core/src/components/Icon/__tests__/__snapshots__/Icon.test.tsx.snap b/packages/react-core/src/components/Icon/__tests__/__snapshots__/Icon.test.tsx.snap index dca79d8f901..a2979a74b3c 100644 --- a/packages/react-core/src/components/Icon/__tests__/__snapshots__/Icon.test.tsx.snap +++ b/packages/react-core/src/components/Icon/__tests__/__snapshots__/Icon.test.tsx.snap @@ -10,10 +10,12 @@ exports[`renders basic icon successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" @@ -34,10 +36,12 @@ exports[`renders progress icon successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" @@ -49,10 +53,12 @@ exports[`renders progress icon successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" diff --git a/packages/react-core/src/components/JumpLinks/__tests__/__snapshots__/JumpLinks.test.tsx.snap b/packages/react-core/src/components/JumpLinks/__tests__/__snapshots__/JumpLinks.test.tsx.snap index 3a2d7140998..f7231bfb391 100644 --- a/packages/react-core/src/components/JumpLinks/__tests__/__snapshots__/JumpLinks.test.tsx.snap +++ b/packages/react-core/src/components/JumpLinks/__tests__/__snapshots__/JumpLinks.test.tsx.snap @@ -30,10 +30,12 @@ exports[`expandable vertical with subsection 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" diff --git a/packages/react-core/src/components/Label/__tests__/__snapshots__/Label.test.tsx.snap b/packages/react-core/src/components/Label/__tests__/__snapshots__/Label.test.tsx.snap index b3d95c4096e..8c03a617e8c 100644 --- a/packages/react-core/src/components/Label/__tests__/__snapshots__/Label.test.tsx.snap +++ b/packages/react-core/src/components/Label/__tests__/__snapshots__/Label.test.tsx.snap @@ -28,10 +28,12 @@ exports[`Label editable label 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -160,10 +162,12 @@ exports[`Label label with close button 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -203,10 +207,12 @@ exports[`Label label with close button and outline variant 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" diff --git a/packages/react-core/src/components/LabelGroup/__tests__/__snapshots__/LabelGroup.test.tsx.snap b/packages/react-core/src/components/LabelGroup/__tests__/__snapshots__/LabelGroup.test.tsx.snap index f376200980f..950b42cda0f 100644 --- a/packages/react-core/src/components/LabelGroup/__tests__/__snapshots__/LabelGroup.test.tsx.snap +++ b/packages/react-core/src/components/LabelGroup/__tests__/__snapshots__/LabelGroup.test.tsx.snap @@ -264,10 +264,12 @@ exports[`LabelGroup label group with closable category 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" diff --git a/packages/react-core/src/components/List/__tests__/__snapshots__/List.test.tsx.snap b/packages/react-core/src/components/List/__tests__/__snapshots__/List.test.tsx.snap index 4357b486b3d..07bdccb2b25 100644 --- a/packages/react-core/src/components/List/__tests__/__snapshots__/List.test.tsx.snap +++ b/packages/react-core/src/components/List/__tests__/__snapshots__/List.test.tsx.snap @@ -13,10 +13,12 @@ exports[`List icon large list 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z" @@ -33,10 +35,12 @@ exports[`List icon large list 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 1024 1024" + width="1em" > <path d="M802,320 C748.980664,320 706,277.019336 706,224 C706,170.980664 748.980664,128 802,128 C855.019336,128 898,170.980664 898,224 C898,277.019336 855.019336,320 802,320 M704,0 C527.3,0 384,143.3 384,320 C383.937788,357.490503 390.505571,394.696657 403.4,429.9 L0,824.1 L0,1024 L192,1024 L192,896 L320,896 L320,768 L448,768 L597,622 C596.906403,621.881923 596.838304,621.745723 596.8,621.6 C631.220126,633.811107 667.47802,640.034477 704,640 C880.7,640 1024,496.7 1024,320 C1024,143.3 880.7,0 704,0" @@ -53,10 +57,12 @@ exports[`List icon large list 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z" @@ -83,10 +89,12 @@ exports[`List icon list 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z" @@ -103,10 +111,12 @@ exports[`List icon list 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 1024 1024" + width="1em" > <path d="M802,320 C748.980664,320 706,277.019336 706,224 C706,170.980664 748.980664,128 802,128 C855.019336,128 898,170.980664 898,224 C898,277.019336 855.019336,320 802,320 M704,0 C527.3,0 384,143.3 384,320 C383.937788,357.490503 390.505571,394.696657 403.4,429.9 L0,824.1 L0,1024 L192,1024 L192,896 L320,896 L320,768 L448,768 L597,622 C596.906403,621.881923 596.838304,621.745723 596.8,621.6 C631.220126,633.811107 667.47802,640.034477 704,640 C880.7,640 1024,496.7 1024,320 C1024,143.3 880.7,0 704,0" @@ -123,10 +133,12 @@ exports[`List icon list 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z" diff --git a/packages/react-core/src/components/LoginPage/__tests__/__snapshots__/LoginForm.test.tsx.snap b/packages/react-core/src/components/LoginPage/__tests__/__snapshots__/LoginForm.test.tsx.snap index 7e2b08a39df..5bd163b094c 100644 --- a/packages/react-core/src/components/LoginPage/__tests__/__snapshots__/LoginForm.test.tsx.snap +++ b/packages/react-core/src/components/LoginPage/__tests__/__snapshots__/LoginForm.test.tsx.snap @@ -241,10 +241,12 @@ exports[`LoginForm LoginForm with show password 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M572.52 241.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400a144 144 0 1 1 144-144 143.93 143.93 0 0 1-144 144zm0-240a95.31 95.31 0 0 0-25.31 3.79 47.85 47.85 0 0 1-66.9 66.9A95.78 95.78 0 1 0 288 160z" diff --git a/packages/react-core/src/components/MenuToggle/__tests__/__snapshots__/MenuToggle.test.tsx.snap b/packages/react-core/src/components/MenuToggle/__tests__/__snapshots__/MenuToggle.test.tsx.snap index 82656933954..be6d356e4f7 100644 --- a/packages/react-core/src/components/MenuToggle/__tests__/__snapshots__/MenuToggle.test.tsx.snap +++ b/packages/react-core/src/components/MenuToggle/__tests__/__snapshots__/MenuToggle.test.tsx.snap @@ -20,10 +20,12 @@ exports[`menu toggle passes additional classes 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -55,10 +57,12 @@ exports[`menu toggle renders successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -99,10 +103,12 @@ exports[`menu toggle shows badge 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -126,10 +132,12 @@ exports[`menu toggle shows icon 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M487.4 315.7l-42.6-24.6c4.3-23.2 4.3-47 0-70.2l42.6-24.6c4.9-2.8 7.1-8.6 5.5-14-11.1-35.6-30-67.8-54.7-94.6-3.8-4.1-10-5.1-14.8-2.3L380.8 110c-17.9-15.4-38.5-27.3-60.8-35.1V25.8c0-5.6-3.9-10.5-9.4-11.7-36.7-8.2-74.3-7.8-109.2 0-5.5 1.2-9.4 6.1-9.4 11.7V75c-22.2 7.9-42.8 19.8-60.8 35.1L88.7 85.5c-4.9-2.8-11-1.9-14.8 2.3-24.7 26.7-43.6 58.9-54.7 94.6-1.7 5.4.6 11.2 5.5 14L67.3 221c-4.3 23.2-4.3 47 0 70.2l-42.6 24.6c-4.9 2.8-7.1 8.6-5.5 14 11.1 35.6 30 67.8 54.7 94.6 3.8 4.1 10 5.1 14.8 2.3l42.6-24.6c17.9 15.4 38.5 27.3 60.8 35.1v49.2c0 5.6 3.9 10.5 9.4 11.7 36.7 8.2 74.3 7.8 109.2 0 5.5-1.2 9.4-6.1 9.4-11.7v-49.2c22.2-7.9 42.8-19.8 60.8-35.1l42.6 24.6c4.9 2.8 11 1.9 14.8-2.3 24.7-26.7 43.6-58.9 54.7-94.6 1.5-5.5-.7-11.3-5.6-14.1zM256 336c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z" @@ -149,10 +157,12 @@ exports[`menu toggle shows icon 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -185,10 +195,12 @@ exports[`menu toggle shows isDisabled 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -220,10 +232,12 @@ exports[`menu toggle shows isExpanded 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -244,10 +258,12 @@ exports[`menu toggle shows isPlain 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -277,10 +293,12 @@ exports[`menu toggle shows isPrimary 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -312,10 +330,12 @@ exports[`menu toggle shows plain text 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" diff --git a/packages/react-core/src/components/Modal/__tests__/__snapshots__/ModalBoxTitle.test.tsx.snap b/packages/react-core/src/components/Modal/__tests__/__snapshots__/ModalBoxTitle.test.tsx.snap index 92928e90317..336f4a8e847 100644 --- a/packages/react-core/src/components/Modal/__tests__/__snapshots__/ModalBoxTitle.test.tsx.snap +++ b/packages/react-core/src/components/Modal/__tests__/__snapshots__/ModalBoxTitle.test.tsx.snap @@ -11,10 +11,12 @@ exports[`ModalBoxTitle alert variant 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" @@ -46,10 +48,12 @@ exports[`ModalBoxTitle custom icon variant 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M576 240c0-23.63-12.95-44.04-32-55.12V32.01C544 23.26 537.02 0 512 0c-7.12 0-14.19 2.38-19.98 7.02l-85.03 68.03C364.28 109.19 310.66 128 256 128H64c-35.35 0-64 28.65-64 64v96c0 35.35 28.65 64 64 64h33.7c-1.39 10.48-2.18 21.14-2.18 32 0 39.77 9.26 77.35 25.56 110.94 5.19 10.69 16.52 17.06 28.4 17.06h74.28c26.05 0 41.69-29.84 25.9-50.56-16.4-21.52-26.15-48.36-26.15-77.44 0-11.11 1.62-21.79 4.41-32H256c54.66 0 108.28 18.81 150.98 52.95l85.03 68.03a32.023 32.023 0 0 0 19.98 7.02c24.92 0 32-22.78 32-32V295.13C563.05 284.04 576 263.63 576 240zm-96 141.42l-33.05-26.44C392.95 311.78 325.12 288 256 288v-96c69.12 0 136.95-23.78 190.95-66.98L480 98.58v282.84z" @@ -76,10 +80,12 @@ exports[`ModalBoxTitle danger variant 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" @@ -111,10 +117,12 @@ exports[`ModalBoxTitle default variant 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 896 1024" + width="1em" > <path d="M448,0 C465.333333,0 480.333333,6.33333333 493,19 C505.666667,31.6666667 512,46.6666667 512,64 L512,106 L514.23,106.45 C587.89,121.39 648.48,157.24 696,214 C744,271.333333 768,338.666667 768,416 C768,500 780,568.666667 804,622 C818.666667,652.666667 841.333333,684 872,716 C873.773676,718.829136 875.780658,721.505113 878,724 C890,737.333333 896,752.333333 896,769 C896,785.666667 890,800.333333 878,813 C866,825.666667 850.666667,832 832,832 L63.3,832 C44.9533333,831.84 29.8533333,825.506667 18,813 C6,800.333333 0,785.666667 0,769 C0,752.333333 6,737.333333 18,724 L24,716 L25.06,714.9 C55.1933333,683.28 77.5066667,652.313333 92,622 C116,568.666667 128,500 128,416 C128,338.666667 152,271.333333 200,214 C248,156.666667 309.333333,120.666667 384,106 L384,63.31 C384.166667,46.27 390.5,31.5 403,19 C415.666667,6.33333333 430.666667,0 448,0 Z M576,896 L576,897.08 C575.74,932.6 563.073333,962.573333 538,987 C512.666667,1011.66667 482.666667,1024 448,1024 C413.333333,1024 383.333333,1011.66667 358,987 C332.666667,962.333333 320,932 320,896 L576,896 Z" @@ -146,10 +154,12 @@ exports[`ModalBoxTitle info variant 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z" @@ -181,10 +191,12 @@ exports[`ModalBoxTitle success variant 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z" diff --git a/packages/react-core/src/components/Modal/__tests__/__snapshots__/ModalContent.test.tsx.snap b/packages/react-core/src/components/Modal/__tests__/__snapshots__/ModalContent.test.tsx.snap index 0a0b2c66a32..7ce7886982a 100644 --- a/packages/react-core/src/components/Modal/__tests__/__snapshots__/ModalContent.test.tsx.snap +++ b/packages/react-core/src/components/Modal/__tests__/__snapshots__/ModalContent.test.tsx.snap @@ -32,10 +32,12 @@ exports[`Modal Content Test description 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -106,10 +108,12 @@ exports[`Modal Content Test isOpen 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -175,10 +179,12 @@ exports[`Modal Content Test only body 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -244,10 +250,12 @@ exports[`Modal Content Test with footer 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -318,10 +326,12 @@ exports[`Modal Content Test with onclose 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -392,10 +402,12 @@ exports[`Modal Content test without footer 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -461,10 +473,12 @@ exports[`Modal Test with custom footer 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -539,10 +553,12 @@ exports[`Modal Test with custom header 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" diff --git a/packages/react-core/src/components/MultipleFileUpload/__tests__/__snapshots__/MultipleFileUploadStatus.test.tsx.snap b/packages/react-core/src/components/MultipleFileUpload/__tests__/__snapshots__/MultipleFileUploadStatus.test.tsx.snap index 530c5485d1c..752fafb529c 100644 --- a/packages/react-core/src/components/MultipleFileUpload/__tests__/__snapshots__/MultipleFileUploadStatus.test.tsx.snap +++ b/packages/react-core/src/components/MultipleFileUpload/__tests__/__snapshots__/MultipleFileUploadStatus.test.tsx.snap @@ -18,10 +18,12 @@ exports[`MultipleFileUploadStatus renders custom class names 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -77,10 +79,12 @@ exports[`MultipleFileUploadStatus renders status toggle icon 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -98,10 +102,12 @@ exports[`MultipleFileUploadStatus renders status toggle icon 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 1024 1024" + width="1em" > <path d="M513.417211,16.013668 L513.417211,112.013668 C513.406007,120.539653 520.082422,127.576718 528.597211,128.013668 C732.697211,136.513668 896.147211,305.013668 896.147211,511.343668 C896.147211,723.013668 724.007211,895.163668 512.417211,895.163668 C437.186239,895.277345 363.602574,873.135095 300.927211,831.523668 C294.58293,827.2982 286.138663,828.135095 280.747211,833.523668 L211.807211,902.353668 C208.502935,905.676185 206.82123,910.280199 207.20607,914.950237 C207.590911,919.620275 210.00361,923.886884 213.807211,926.623668 C300.709573,989.398037 405.213535,1023.13146 512.417211,1023.01398 C794.537211,1023.01398 1023.91724,793.433668 1023.91724,511.413668 C1024.00721,235.103668 804.007211,9.22366802 529.897211,0.00645736761 C525.571205,-0.116171039 521.377128,1.51204372 518.271915,4.52681369 C515.166702,7.54158367 513.415263,11.6857144 513.417211,16.013668 M97.1272107,212.923668 C64.2190689,258.479443 39.0698895,309.162997 22.6972107,362.923668 C21.2705092,367.756559 22.2039184,372.979173 25.2163356,377.018685 C28.2287528,381.058197 32.9681443,383.442545 38.0072107,383.453683 L139.407211,383.453683 C145.970195,383.46249 151.873012,379.462528 154.297211,373.363668 C164.307669,347.593304 177.068112,322.977652 192.357211,299.943668 C196.579666,293.633658 195.741339,285.216847 190.357211,279.863668 L121.497211,211.013668 C118.186635,207.662531 113.567544,205.940538 108.871166,206.30669 C104.174788,206.672841 99.8783994,209.089927 97.1272107,212.913668 M112.907211,511.433663 L17.0072107,511.433663 C12.679257,511.433663 8.5351263,513.183159 5.52035633,516.288373 C2.50558635,519.393586 0.877371594,523.587662 1.00721065,527.913668 C4.13104542,629.408217 37.6085847,727.635936 97.1172107,809.913668 C99.8539943,813.717268 104.120603,816.129968 108.790642,816.514809 C113.46068,816.899649 118.064693,815.217944 121.387211,811.913668 L190.217211,743.073668 C195.605784,737.682216 196.442679,729.237949 192.217211,722.893668 C153.520825,664.580171 131.611534,596.745437 128.887211,526.813668 C128.553964,518.220138 121.487197,511.427209 112.887211,511.433663" @@ -148,10 +154,12 @@ exports[`MultipleFileUploadStatus renders status toggle text 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -209,10 +217,12 @@ exports[`MultipleFileUploadStatus renders with expected class names 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" diff --git a/packages/react-core/src/components/MultipleFileUpload/__tests__/__snapshots__/MultipleFileUploadStatusItem.test.tsx.snap b/packages/react-core/src/components/MultipleFileUpload/__tests__/__snapshots__/MultipleFileUploadStatusItem.test.tsx.snap index 4a2b47494d4..c1b1a3fce8c 100644 --- a/packages/react-core/src/components/MultipleFileUpload/__tests__/__snapshots__/MultipleFileUploadStatusItem.test.tsx.snap +++ b/packages/react-core/src/components/MultipleFileUpload/__tests__/__snapshots__/MultipleFileUploadStatusItem.test.tsx.snap @@ -10,10 +10,12 @@ exports[`MultipleFileUploadStatusItem renders custom aria labels 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 384 512" + width="1em" > <path d="M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" @@ -97,10 +99,12 @@ exports[`MultipleFileUploadStatusItem renders custom aria labels 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" @@ -122,10 +126,12 @@ exports[`MultipleFileUploadStatusItem renders custom class names 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 384 512" + width="1em" > <path d="M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" @@ -206,10 +212,12 @@ exports[`MultipleFileUploadStatusItem renders custom class names 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" @@ -231,10 +239,12 @@ exports[`MultipleFileUploadStatusItem renders custom file name/size/icon/progres > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 384 512" + width="1em" > <path d="M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z" @@ -317,10 +327,12 @@ exports[`MultipleFileUploadStatusItem renders custom file name/size/icon/progres > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" @@ -342,10 +354,12 @@ exports[`MultipleFileUploadStatusItem renders custom function progressAriaLiveMe > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 384 512" + width="1em" > <path d="M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z" @@ -428,10 +442,12 @@ exports[`MultipleFileUploadStatusItem renders custom function progressAriaLiveMe > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" @@ -453,10 +469,12 @@ exports[`MultipleFileUploadStatusItem renders custom progress value/variant when > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 384 512" + width="1em" > <path d="M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" @@ -510,10 +528,12 @@ exports[`MultipleFileUploadStatusItem renders custom progress value/variant when > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" @@ -554,10 +574,12 @@ exports[`MultipleFileUploadStatusItem renders custom progress value/variant when > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" @@ -579,10 +601,12 @@ exports[`MultipleFileUploadStatusItem renders expected values from a passed file > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 384 512" + width="1em" > <path d="M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" @@ -665,10 +689,12 @@ exports[`MultipleFileUploadStatusItem renders expected values from a passed file > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" @@ -690,10 +716,12 @@ exports[`MultipleFileUploadStatusItem renders with expected class names 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 384 512" + width="1em" > <path d="M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z" @@ -774,10 +802,12 @@ exports[`MultipleFileUploadStatusItem renders with expected class names 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" @@ -799,10 +829,12 @@ exports[`MultipleFileUploadStatusItem rendersdefault progressAriaLiveMessage whe > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 384 512" + width="1em" > <path d="M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z" @@ -885,10 +917,12 @@ exports[`MultipleFileUploadStatusItem rendersdefault progressAriaLiveMessage whe > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" diff --git a/packages/react-core/src/components/Nav/__tests__/Generated/__snapshots__/NavExpandable.test.tsx.snap b/packages/react-core/src/components/Nav/__tests__/Generated/__snapshots__/NavExpandable.test.tsx.snap index 20cf74f9712..15615f435e4 100644 --- a/packages/react-core/src/components/Nav/__tests__/Generated/__snapshots__/NavExpandable.test.tsx.snap +++ b/packages/react-core/src/components/Nav/__tests__/Generated/__snapshots__/NavExpandable.test.tsx.snap @@ -21,10 +21,12 @@ exports[`NavExpandable should match snapshot (auto-generated) 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" diff --git a/packages/react-core/src/components/Nav/__tests__/__snapshots__/Nav.test.tsx.snap b/packages/react-core/src/components/Nav/__tests__/__snapshots__/Nav.test.tsx.snap index 0e40254db83..ea860ce0f09 100644 --- a/packages/react-core/src/components/Nav/__tests__/__snapshots__/Nav.test.tsx.snap +++ b/packages/react-core/src/components/Nav/__tests__/__snapshots__/Nav.test.tsx.snap @@ -243,10 +243,12 @@ exports[`Nav Expandable Nav List - Trigger toggle 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -357,10 +359,12 @@ exports[`Nav Expandable Nav List 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -470,10 +474,12 @@ exports[`Nav Expandable Nav List with aria label 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -573,10 +579,12 @@ exports[`Nav Horizontal Nav List 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -647,10 +655,12 @@ exports[`Nav Horizontal Nav List 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -677,10 +687,12 @@ exports[`Nav Horizontal SubNav List 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -751,10 +763,12 @@ exports[`Nav Horizontal SubNav List 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -940,10 +954,12 @@ exports[`Nav Nav List with custom item nodes 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -974,10 +990,12 @@ exports[`Nav Nav List with custom item nodes 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1004,10 +1022,12 @@ exports[`Nav Nav List with flyout 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -1036,10 +1056,12 @@ exports[`Nav Nav List with flyout 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1057,10 +1079,12 @@ exports[`Nav Nav List with flyout 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1168,10 +1192,12 @@ exports[`Nav Tertiary Nav List 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -1242,10 +1268,12 @@ exports[`Nav Tertiary Nav List 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" diff --git a/packages/react-core/src/components/NotificationBadge/__tests__/__snapshots__/NotificationBadge.test.tsx.snap b/packages/react-core/src/components/NotificationBadge/__tests__/__snapshots__/NotificationBadge.test.tsx.snap index d7404b61934..29246d635dc 100644 --- a/packages/react-core/src/components/NotificationBadge/__tests__/__snapshots__/NotificationBadge.test.tsx.snap +++ b/packages/react-core/src/components/NotificationBadge/__tests__/__snapshots__/NotificationBadge.test.tsx.snap @@ -16,10 +16,12 @@ exports[`NotificationBadge count 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 896 1024" + width="1em" > <path d="M448,0 C465.333333,0 480.333333,6.33333333 493,19 C505.666667,31.6666667 512,46.6666667 512,64 L512,106 L514.23,106.45 C587.89,121.39 648.48,157.24 696,214 C744,271.333333 768,338.666667 768,416 C768,500 780,568.666667 804,622 C818.666667,652.666667 841.333333,684 872,716 C873.773676,718.829136 875.780658,721.505113 878,724 C890,737.333333 896,752.333333 896,769 C896,785.666667 890,800.333333 878,813 C866,825.666667 850.666667,832 832,832 L63.3,832 C44.9533333,831.84 29.8533333,825.506667 18,813 C6,800.333333 0,785.666667 0,769 C0,752.333333 6,737.333333 18,724 L24,716 L25.06,714.9 C55.1933333,683.28 77.5066667,652.313333 92,622 C116,568.666667 128,500 128,416 C128,338.666667 152,271.333333 200,214 C248,156.666667 309.333333,120.666667 384,106 L384,63.31 C384.166667,46.27 390.5,31.5 403,19 C415.666667,6.33333333 430.666667,0 448,0 Z M576,896 L576,897.08 C575.74,932.6 563.073333,962.573333 538,987 C512.666667,1011.66667 482.666667,1024 448,1024 C413.333333,1024 383.333333,1011.66667 358,987 C332.666667,962.333333 320,932 320,896 L576,896 Z" diff --git a/packages/react-core/src/components/NotificationDrawer/__tests__/__snapshots__/NotificationDrawerGroup.test.tsx.snap b/packages/react-core/src/components/NotificationDrawer/__tests__/__snapshots__/NotificationDrawerGroup.test.tsx.snap index 6804e15be58..c7bec6f6929 100644 --- a/packages/react-core/src/components/NotificationDrawer/__tests__/__snapshots__/NotificationDrawerGroup.test.tsx.snap +++ b/packages/react-core/src/components/NotificationDrawer/__tests__/__snapshots__/NotificationDrawerGroup.test.tsx.snap @@ -29,10 +29,12 @@ exports[`NotificationDrawerGroup drawer group with isExpanded applied 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -74,10 +76,12 @@ exports[`NotificationDrawerGroup drawer group with isRead applied 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -119,10 +123,12 @@ exports[`NotificationDrawerGroup renders correct heading level 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -164,10 +170,12 @@ exports[`NotificationDrawerGroup renders with PatternFly Core styles 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" diff --git a/packages/react-core/src/components/NotificationDrawer/__tests__/__snapshots__/NotificationDrawerListItemHeader.test.tsx.snap b/packages/react-core/src/components/NotificationDrawer/__tests__/__snapshots__/NotificationDrawerListItemHeader.test.tsx.snap index 2259f5dd91d..8f98970e1a0 100644 --- a/packages/react-core/src/components/NotificationDrawer/__tests__/__snapshots__/NotificationDrawerListItemHeader.test.tsx.snap +++ b/packages/react-core/src/components/NotificationDrawer/__tests__/__snapshots__/NotificationDrawerListItemHeader.test.tsx.snap @@ -10,10 +10,12 @@ exports[`NotificationDrawerListItemHeader list item header with custom icon appl > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 896 1024" + width="1em" > <path d="M448,0 C465.333333,0 480.333333,6.33333333 493,19 C505.666667,31.6666667 512,46.6666667 512,64 L512,106 L514.23,106.45 C587.89,121.39 648.48,157.24 696,214 C744,271.333333 768,338.666667 768,416 C768,500 780,568.666667 804,622 C818.666667,652.666667 841.333333,684 872,716 C873.773676,718.829136 875.780658,721.505113 878,724 C890,737.333333 896,752.333333 896,769 C896,785.666667 890,800.333333 878,813 C866,825.666667 850.666667,832 832,832 L63.3,832 C44.9533333,831.84 29.8533333,825.506667 18,813 C6,800.333333 0,785.666667 0,769 C0,752.333333 6,737.333333 18,724 L24,716 L25.06,714.9 C55.1933333,683.28 77.5066667,652.313333 92,622 C116,568.666667 128,500 128,416 C128,338.666667 152,271.333333 200,214 C248,156.666667 309.333333,120.666667 384,106 L384,63.31 C384.166667,46.27 390.5,31.5 403,19 C415.666667,6.33333333 430.666667,0 448,0 Z M576,896 L576,897.08 C575.74,932.6 563.073333,962.573333 538,987 C512.666667,1011.66667 482.666667,1024 448,1024 C413.333333,1024 383.333333,1011.66667 358,987 C332.666667,962.333333 320,932 320,896 L576,896 Z" @@ -39,10 +41,12 @@ exports[`NotificationDrawerListItemHeader list item header with srTitle applied > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 896 1024" + width="1em" > <path d="M448,0 C465.333333,0 480.333333,6.33333333 493,19 C505.666667,31.6666667 512,46.6666667 512,64 L512,106 L514.23,106.45 C587.89,121.39 648.48,157.24 696,214 C744,271.333333 768,338.666667 768,416 C768,500 780,568.666667 804,622 C818.666667,652.666667 841.333333,684 872,716 C873.773676,718.829136 875.780658,721.505113 878,724 C890,737.333333 896,752.333333 896,769 C896,785.666667 890,800.333333 878,813 C866,825.666667 850.666667,832 832,832 L63.3,832 C44.9533333,831.84 29.8533333,825.506667 18,813 C6,800.333333 0,785.666667 0,769 C0,752.333333 6,737.333333 18,724 L24,716 L25.06,714.9 C55.1933333,683.28 77.5066667,652.313333 92,622 C116,568.666667 128,500 128,416 C128,338.666667 152,271.333333 200,214 C248,156.666667 309.333333,120.666667 384,106 L384,63.31 C384.166667,46.27 390.5,31.5 403,19 C415.666667,6.33333333 430.666667,0 448,0 Z M576,896 L576,897.08 C575.74,932.6 563.073333,962.573333 538,987 C512.666667,1011.66667 482.666667,1024 448,1024 C413.333333,1024 383.333333,1011.66667 358,987 C332.666667,962.333333 320,932 320,896 L576,896 Z" @@ -73,10 +77,12 @@ exports[`NotificationDrawerListItemHeader list item header with variant applied > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z" @@ -102,10 +108,12 @@ exports[`NotificationDrawerListItemHeader renders with PatternFly Core styles 1` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 896 1024" + width="1em" > <path d="M448,0 C465.333333,0 480.333333,6.33333333 493,19 C505.666667,31.6666667 512,46.6666667 512,64 L512,106 L514.23,106.45 C587.89,121.39 648.48,157.24 696,214 C744,271.333333 768,338.666667 768,416 C768,500 780,568.666667 804,622 C818.666667,652.666667 841.333333,684 872,716 C873.773676,718.829136 875.780658,721.505113 878,724 C890,737.333333 896,752.333333 896,769 C896,785.666667 890,800.333333 878,813 C866,825.666667 850.666667,832 832,832 L63.3,832 C44.9533333,831.84 29.8533333,825.506667 18,813 C6,800.333333 0,785.666667 0,769 C0,752.333333 6,737.333333 18,724 L24,716 L25.06,714.9 C55.1933333,683.28 77.5066667,652.313333 92,622 C116,568.666667 128,500 128,416 C128,338.666667 152,271.333333 200,214 C248,156.666667 309.333333,120.666667 384,106 L384,63.31 C384.166667,46.27 390.5,31.5 403,19 C415.666667,6.33333333 430.666667,0 448,0 Z M576,896 L576,897.08 C575.74,932.6 563.073333,962.573333 538,987 C512.666667,1011.66667 482.666667,1024 448,1024 C413.333333,1024 383.333333,1011.66667 358,987 C332.666667,962.333333 320,932 320,896 L576,896 Z" @@ -131,10 +139,12 @@ exports[`NotificationDrawerListItemHeader renders with correct heading level 1`] > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 896 1024" + width="1em" > <path d="M448,0 C465.333333,0 480.333333,6.33333333 493,19 C505.666667,31.6666667 512,46.6666667 512,64 L512,106 L514.23,106.45 C587.89,121.39 648.48,157.24 696,214 C744,271.333333 768,338.666667 768,416 C768,500 780,568.666667 804,622 C818.666667,652.666667 841.333333,684 872,716 C873.773676,718.829136 875.780658,721.505113 878,724 C890,737.333333 896,752.333333 896,769 C896,785.666667 890,800.333333 878,813 C866,825.666667 850.666667,832 832,832 L63.3,832 C44.9533333,831.84 29.8533333,825.506667 18,813 C6,800.333333 0,785.666667 0,769 C0,752.333333 6,737.333333 18,724 L24,716 L25.06,714.9 C55.1933333,683.28 77.5066667,652.313333 92,622 C116,568.666667 128,500 128,416 C128,338.666667 152,271.333333 200,214 C248,156.666667 309.333333,120.666667 384,106 L384,63.31 C384.166667,46.27 390.5,31.5 403,19 C415.666667,6.33333333 430.666667,0 448,0 Z M576,896 L576,897.08 C575.74,932.6 563.073333,962.573333 538,987 C512.666667,1011.66667 482.666667,1024 448,1024 C413.333333,1024 383.333333,1011.66667 358,987 C332.666667,962.333333 320,932 320,896 L576,896 Z" diff --git a/packages/react-core/src/components/NumberInput/__tests__/__snapshots__/NumberInput.test.tsx.snap b/packages/react-core/src/components/NumberInput/__tests__/__snapshots__/NumberInput.test.tsx.snap index 79db347c8fb..4bfe2cc676b 100644 --- a/packages/react-core/src/components/NumberInput/__tests__/__snapshots__/NumberInput.test.tsx.snap +++ b/packages/react-core/src/components/NumberInput/__tests__/__snapshots__/NumberInput.test.tsx.snap @@ -23,10 +23,12 @@ exports[`numberInput disables lower threshold 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -59,10 +61,12 @@ exports[`numberInput disables lower threshold 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -97,10 +101,12 @@ exports[`numberInput disables upper threshold 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -134,10 +140,12 @@ exports[`numberInput disables upper threshold 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -173,10 +181,12 @@ exports[`numberInput passes button props successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -210,10 +220,12 @@ exports[`numberInput passes button props successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -248,10 +260,12 @@ exports[`numberInput passes input props successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -284,10 +298,12 @@ exports[`numberInput passes input props successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -323,10 +339,12 @@ exports[`numberInput renders custom width 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -359,10 +377,12 @@ exports[`numberInput renders custom width 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -398,10 +418,12 @@ exports[`numberInput renders defaults & extra props 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -434,10 +456,12 @@ exports[`numberInput renders defaults & extra props 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -473,10 +497,12 @@ exports[`numberInput renders disabled 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -511,10 +537,12 @@ exports[`numberInput renders disabled 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -549,10 +577,12 @@ exports[`numberInput renders error validated 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -585,10 +615,12 @@ exports[`numberInput renders error validated 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -623,10 +655,12 @@ exports[`numberInput renders success validated 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -659,10 +693,12 @@ exports[`numberInput renders success validated 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -702,10 +738,12 @@ exports[`numberInput renders unit & position 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -738,10 +776,12 @@ exports[`numberInput renders unit & position 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -776,10 +816,12 @@ exports[`numberInput renders unit 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -812,10 +854,12 @@ exports[`numberInput renders unit 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -855,10 +899,12 @@ exports[`numberInput renders value 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -891,10 +937,12 @@ exports[`numberInput renders value 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -929,10 +977,12 @@ exports[`numberInput renders warning validated 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -965,10 +1015,12 @@ exports[`numberInput renders warning validated 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" diff --git a/packages/react-core/src/components/Page/__tests__/__snapshots__/Page.test.tsx.snap b/packages/react-core/src/components/Page/__tests__/__snapshots__/Page.test.tsx.snap index b1d6ebb06d7..efb9a084b78 100644 --- a/packages/react-core/src/components/Page/__tests__/__snapshots__/Page.test.tsx.snap +++ b/packages/react-core/src/components/Page/__tests__/__snapshots__/Page.test.tsx.snap @@ -191,10 +191,12 @@ exports[`Page Check page to verify breadcrumb is created - PageBreadcrumb syntax > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -216,10 +218,12 @@ exports[`Page Check page to verify breadcrumb is created - PageBreadcrumb syntax > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -241,10 +245,12 @@ exports[`Page Check page to verify breadcrumb is created - PageBreadcrumb syntax > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -353,10 +359,12 @@ exports[`Page Check page to verify breadcrumb is created 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -378,10 +386,12 @@ exports[`Page Check page to verify breadcrumb is created 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -403,10 +413,12 @@ exports[`Page Check page to verify breadcrumb is created 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -518,10 +530,12 @@ exports[`Page Check page to verify grouped nav and breadcrumb - new components s > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -543,10 +557,12 @@ exports[`Page Check page to verify grouped nav and breadcrumb - new components s > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -568,10 +584,12 @@ exports[`Page Check page to verify grouped nav and breadcrumb - new components s > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -606,10 +624,12 @@ exports[`Page Check page to verify grouped nav and breadcrumb - new components s > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -689,10 +709,12 @@ exports[`Page Check page to verify grouped nav and breadcrumb - new components s > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -789,10 +811,12 @@ exports[`Page Check page to verify grouped nav and breadcrumb - old / props synt > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -872,10 +896,12 @@ exports[`Page Check page to verify grouped nav and breadcrumb - old / props synt > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -914,10 +940,12 @@ exports[`Page Check page to verify grouped nav and breadcrumb - old / props synt > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -939,10 +967,12 @@ exports[`Page Check page to verify grouped nav and breadcrumb - old / props synt > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -964,10 +994,12 @@ exports[`Page Check page to verify grouped nav and breadcrumb - old / props synt > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1068,10 +1100,12 @@ exports[`Page Check page to verify nav is created - PageNavigation syntax 1`] = > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -1151,10 +1185,12 @@ exports[`Page Check page to verify nav is created - PageNavigation syntax 1`] = > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1270,10 +1306,12 @@ exports[`Page Check page to verify skip to content points to main content region > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1295,10 +1333,12 @@ exports[`Page Check page to verify skip to content points to main content region > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1320,10 +1360,12 @@ exports[`Page Check page to verify skip to content points to main content region > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1493,10 +1535,12 @@ exports[`Page Sticky bottom breadcrumb on all height breakpoints - PageBreadcrum > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1518,10 +1562,12 @@ exports[`Page Sticky bottom breadcrumb on all height breakpoints - PageBreadcrum > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1543,10 +1589,12 @@ exports[`Page Sticky bottom breadcrumb on all height breakpoints - PageBreadcrum > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1655,10 +1703,12 @@ exports[`Page Verify sticky bottom breadcrumb on all height breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1680,10 +1730,12 @@ exports[`Page Verify sticky bottom breadcrumb on all height breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1705,10 +1757,12 @@ exports[`Page Verify sticky bottom breadcrumb on all height breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1817,10 +1871,12 @@ exports[`Page Verify sticky top breadcrumb on all height breakpoints - PageBread > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1842,10 +1898,12 @@ exports[`Page Verify sticky top breadcrumb on all height breakpoints - PageBread > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1867,10 +1925,12 @@ exports[`Page Verify sticky top breadcrumb on all height breakpoints - PageBread > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1979,10 +2039,12 @@ exports[`Page Verify sticky top breadcrumb on all height breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2004,10 +2066,12 @@ exports[`Page Verify sticky top breadcrumb on all height breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2029,10 +2093,12 @@ exports[`Page Verify sticky top breadcrumb on all height breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" diff --git a/packages/react-core/src/components/Pagination/__tests__/Generated/__snapshots__/Navigation.test.tsx.snap b/packages/react-core/src/components/Pagination/__tests__/Generated/__snapshots__/Navigation.test.tsx.snap index 6fdb605c4ca..29111da6fa6 100644 --- a/packages/react-core/src/components/Pagination/__tests__/Generated/__snapshots__/Navigation.test.tsx.snap +++ b/packages/react-core/src/components/Pagination/__tests__/Generated/__snapshots__/Navigation.test.tsx.snap @@ -27,10 +27,12 @@ exports[`Navigation should match snapshot (auto-generated) 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -53,10 +55,12 @@ exports[`Navigation should match snapshot (auto-generated) 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -91,10 +95,12 @@ exports[`Navigation should match snapshot (auto-generated) 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -117,10 +123,12 @@ exports[`Navigation should match snapshot (auto-generated) 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" diff --git a/packages/react-core/src/components/Pagination/__tests__/Generated/__snapshots__/PaginationOptionsMenu.test.tsx.snap b/packages/react-core/src/components/Pagination/__tests__/Generated/__snapshots__/PaginationOptionsMenu.test.tsx.snap index b9a766f7c9d..6dd3b56357b 100644 --- a/packages/react-core/src/components/Pagination/__tests__/Generated/__snapshots__/PaginationOptionsMenu.test.tsx.snap +++ b/packages/react-core/src/components/Pagination/__tests__/Generated/__snapshots__/PaginationOptionsMenu.test.tsx.snap @@ -30,10 +30,12 @@ exports[`PaginationOptionsMenu should match snapshot (auto-generated) 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" diff --git a/packages/react-core/src/components/Pagination/__tests__/__snapshots__/Pagination.test.tsx.snap b/packages/react-core/src/components/Pagination/__tests__/__snapshots__/Pagination.test.tsx.snap index 11e12aebcb4..2f5442ddda1 100644 --- a/packages/react-core/src/components/Pagination/__tests__/__snapshots__/Pagination.test.tsx.snap +++ b/packages/react-core/src/components/Pagination/__tests__/__snapshots__/Pagination.test.tsx.snap @@ -50,10 +50,12 @@ exports[`Pagination API verify inset2xl inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -83,10 +85,12 @@ exports[`Pagination API verify inset2xl inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -110,10 +114,12 @@ exports[`Pagination API verify inset2xl inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -148,10 +154,12 @@ exports[`Pagination API verify inset2xl inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -174,10 +182,12 @@ exports[`Pagination API verify inset2xl inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -241,10 +251,12 @@ exports[`Pagination API verify insetLg inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -274,10 +286,12 @@ exports[`Pagination API verify insetLg inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -301,10 +315,12 @@ exports[`Pagination API verify insetLg inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -339,10 +355,12 @@ exports[`Pagination API verify insetLg inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -365,10 +383,12 @@ exports[`Pagination API verify insetLg inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -432,10 +452,12 @@ exports[`Pagination API verify insetMd inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -465,10 +487,12 @@ exports[`Pagination API verify insetMd inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -492,10 +516,12 @@ exports[`Pagination API verify insetMd inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -530,10 +556,12 @@ exports[`Pagination API verify insetMd inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -556,10 +584,12 @@ exports[`Pagination API verify insetMd inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -623,10 +653,12 @@ exports[`Pagination API verify insetNone inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -656,10 +688,12 @@ exports[`Pagination API verify insetNone inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -683,10 +717,12 @@ exports[`Pagination API verify insetNone inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -721,10 +757,12 @@ exports[`Pagination API verify insetNone inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -747,10 +785,12 @@ exports[`Pagination API verify insetNone inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -814,10 +854,12 @@ exports[`Pagination API verify insetSm inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -847,10 +889,12 @@ exports[`Pagination API verify insetSm inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -874,10 +918,12 @@ exports[`Pagination API verify insetSm inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -912,10 +958,12 @@ exports[`Pagination API verify insetSm inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -938,10 +986,12 @@ exports[`Pagination API verify insetSm inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -1005,10 +1055,12 @@ exports[`Pagination API verify insetXl inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -1038,10 +1090,12 @@ exports[`Pagination API verify insetXl inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -1065,10 +1119,12 @@ exports[`Pagination API verify insetXl inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -1103,10 +1159,12 @@ exports[`Pagination API verify insetXl inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1129,10 +1187,12 @@ exports[`Pagination API verify insetXl inset breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -1182,10 +1242,12 @@ exports[`Pagination component render custom pagination toggle 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -1215,10 +1277,12 @@ exports[`Pagination component render custom pagination toggle 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -1242,10 +1306,12 @@ exports[`Pagination component render custom pagination toggle 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -1285,10 +1351,12 @@ exports[`Pagination component render custom pagination toggle 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1311,10 +1379,12 @@ exports[`Pagination component render custom pagination toggle 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -1377,10 +1447,12 @@ exports[`Pagination component render custom perPageOptions 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -1410,10 +1482,12 @@ exports[`Pagination component render custom perPageOptions 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -1437,10 +1511,12 @@ exports[`Pagination component render custom perPageOptions 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -1480,10 +1556,12 @@ exports[`Pagination component render custom perPageOptions 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1506,10 +1584,12 @@ exports[`Pagination component render custom perPageOptions 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -1572,10 +1652,12 @@ exports[`Pagination component render custom start end 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -1604,10 +1686,12 @@ exports[`Pagination component render custom start end 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -1630,10 +1714,12 @@ exports[`Pagination component render custom start end 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -1673,10 +1759,12 @@ exports[`Pagination component render custom start end 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1699,10 +1787,12 @@ exports[`Pagination component render custom start end 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -1757,10 +1847,12 @@ exports[`Pagination component render empty per page options 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -1784,10 +1876,12 @@ exports[`Pagination component render empty per page options 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -1827,10 +1921,12 @@ exports[`Pagination component render empty per page options 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1853,10 +1949,12 @@ exports[`Pagination component render empty per page options 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -1919,10 +2017,12 @@ exports[`Pagination component render last page 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -1951,10 +2051,12 @@ exports[`Pagination component render last page 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -1977,10 +2079,12 @@ exports[`Pagination component render last page 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -2021,10 +2125,12 @@ exports[`Pagination component render last page 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2048,10 +2154,12 @@ exports[`Pagination component render last page 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -2114,10 +2222,12 @@ exports[`Pagination component render limited number of pages 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -2147,10 +2257,12 @@ exports[`Pagination component render limited number of pages 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -2174,10 +2286,12 @@ exports[`Pagination component render limited number of pages 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -2219,10 +2333,12 @@ exports[`Pagination component render limited number of pages 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2246,10 +2362,12 @@ exports[`Pagination component render limited number of pages 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -2300,10 +2418,12 @@ exports[`Pagination component render should render correctly bottom 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -2333,10 +2453,12 @@ exports[`Pagination component render should render correctly bottom 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -2360,10 +2482,12 @@ exports[`Pagination component render should render correctly bottom 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -2403,10 +2527,12 @@ exports[`Pagination component render should render correctly bottom 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2429,10 +2555,12 @@ exports[`Pagination component render should render correctly bottom 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -2483,10 +2611,12 @@ exports[`Pagination component render should render correctly bottom sticky 1`] = > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -2516,10 +2646,12 @@ exports[`Pagination component render should render correctly bottom sticky 1`] = > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -2543,10 +2675,12 @@ exports[`Pagination component render should render correctly bottom sticky 1`] = > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -2586,10 +2720,12 @@ exports[`Pagination component render should render correctly bottom sticky 1`] = > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2612,10 +2748,12 @@ exports[`Pagination component render should render correctly bottom sticky 1`] = > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -2678,10 +2816,12 @@ exports[`Pagination component render should render correctly compact 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -2711,10 +2851,12 @@ exports[`Pagination component render should render correctly compact 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -2737,10 +2879,12 @@ exports[`Pagination component render should render correctly compact 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2804,10 +2948,12 @@ exports[`Pagination component render should render correctly disabled 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -2837,10 +2983,12 @@ exports[`Pagination component render should render correctly disabled 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -2864,10 +3012,12 @@ exports[`Pagination component render should render correctly disabled 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -2909,10 +3059,12 @@ exports[`Pagination component render should render correctly disabled 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2936,10 +3088,12 @@ exports[`Pagination component render should render correctly disabled 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -3002,10 +3156,12 @@ exports[`Pagination component render should render correctly sticky 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -3035,10 +3191,12 @@ exports[`Pagination component render should render correctly sticky 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -3062,10 +3220,12 @@ exports[`Pagination component render should render correctly sticky 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -3105,10 +3265,12 @@ exports[`Pagination component render should render correctly sticky 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -3131,10 +3293,12 @@ exports[`Pagination component render should render correctly sticky 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -3197,10 +3361,12 @@ exports[`Pagination component render should render correctly top 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -3230,10 +3396,12 @@ exports[`Pagination component render should render correctly top 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -3257,10 +3425,12 @@ exports[`Pagination component render should render correctly top 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -3300,10 +3470,12 @@ exports[`Pagination component render should render correctly top 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -3326,10 +3498,12 @@ exports[`Pagination component render should render correctly top 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -3392,10 +3566,12 @@ exports[`Pagination component render titles 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -3425,10 +3601,12 @@ exports[`Pagination component render titles 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -3452,10 +3630,12 @@ exports[`Pagination component render titles 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -3495,10 +3675,12 @@ exports[`Pagination component render titles 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -3521,10 +3703,12 @@ exports[`Pagination component render titles 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -3587,10 +3771,12 @@ exports[`Pagination component render up drop direction 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -3620,10 +3806,12 @@ exports[`Pagination component render up drop direction 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -3647,10 +3835,12 @@ exports[`Pagination component render up drop direction 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -3690,10 +3880,12 @@ exports[`Pagination component render up drop direction 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -3716,10 +3908,12 @@ exports[`Pagination component render up drop direction 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" @@ -3782,10 +3976,12 @@ exports[`Pagination component render zero results 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -3815,10 +4011,12 @@ exports[`Pagination component render zero results 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z" @@ -3842,10 +4040,12 @@ exports[`Pagination component render zero results 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z" @@ -3887,10 +4087,12 @@ exports[`Pagination component render zero results 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -3914,10 +4116,12 @@ exports[`Pagination component render zero results 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z" diff --git a/packages/react-core/src/components/Popover/__tests__/Generated/__snapshots__/PopoverCloseButton.test.tsx.snap b/packages/react-core/src/components/Popover/__tests__/Generated/__snapshots__/PopoverCloseButton.test.tsx.snap index 16175de527c..74aa91dfe32 100644 --- a/packages/react-core/src/components/Popover/__tests__/Generated/__snapshots__/PopoverCloseButton.test.tsx.snap +++ b/packages/react-core/src/components/Popover/__tests__/Generated/__snapshots__/PopoverCloseButton.test.tsx.snap @@ -17,10 +17,12 @@ exports[`PopoverCloseButton should match snapshot (auto-generated) 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" diff --git a/packages/react-core/src/components/Progress/__tests__/Generated/__snapshots__/ProgressContainer.test.tsx.snap b/packages/react-core/src/components/Progress/__tests__/Generated/__snapshots__/ProgressContainer.test.tsx.snap index ece49fcfedc..d0ac2d42bbe 100644 --- a/packages/react-core/src/components/Progress/__tests__/Generated/__snapshots__/ProgressContainer.test.tsx.snap +++ b/packages/react-core/src/components/Progress/__tests__/Generated/__snapshots__/ProgressContainer.test.tsx.snap @@ -23,10 +23,12 @@ exports[`ProgressContainer should match snapshot (auto-generated) 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" diff --git a/packages/react-core/src/components/Progress/__tests__/__snapshots__/Progress.test.tsx.snap b/packages/react-core/src/components/Progress/__tests__/__snapshots__/Progress.test.tsx.snap index f67c6c5a821..dd175635562 100644 --- a/packages/react-core/src/components/Progress/__tests__/__snapshots__/Progress.test.tsx.snap +++ b/packages/react-core/src/components/Progress/__tests__/__snapshots__/Progress.test.tsx.snap @@ -290,10 +290,12 @@ exports[`Progress variant danger 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" @@ -341,10 +343,12 @@ exports[`Progress variant success 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z" @@ -392,10 +396,12 @@ exports[`Progress variant warning 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z" diff --git a/packages/react-core/src/components/SearchInput/__tests__/__snapshots__/SearchInput.test.tsx.snap b/packages/react-core/src/components/SearchInput/__tests__/__snapshots__/SearchInput.test.tsx.snap index 560a3621fe9..f316079ce1b 100644 --- a/packages/react-core/src/components/SearchInput/__tests__/__snapshots__/SearchInput.test.tsx.snap +++ b/packages/react-core/src/components/SearchInput/__tests__/__snapshots__/SearchInput.test.tsx.snap @@ -22,10 +22,12 @@ exports[`SearchInput advanced search 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" @@ -54,10 +56,12 @@ exports[`SearchInput advanced search 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -78,10 +82,12 @@ exports[`SearchInput advanced search 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -99,10 +105,12 @@ exports[`SearchInput advanced search 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z" @@ -137,10 +145,12 @@ exports[`SearchInput advanced search with custom attributes 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" @@ -169,10 +179,12 @@ exports[`SearchInput advanced search with custom attributes 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -193,10 +205,12 @@ exports[`SearchInput advanced search with custom attributes 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -214,10 +228,12 @@ exports[`SearchInput advanced search with custom attributes 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z" @@ -364,10 +380,12 @@ exports[`SearchInput advanced search with custom attributes 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z" @@ -440,10 +458,12 @@ exports[`SearchInput renders search input in strict mode 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" @@ -472,10 +492,12 @@ exports[`SearchInput renders search input in strict mode 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -496,10 +518,12 @@ exports[`SearchInput renders search input in strict mode 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -517,10 +541,12 @@ exports[`SearchInput renders search input in strict mode 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z" @@ -558,10 +584,12 @@ exports[`SearchInput search input with hint 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" @@ -593,10 +621,12 @@ exports[`SearchInput search input with hint 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z" @@ -614,10 +644,12 @@ exports[`SearchInput search input with hint 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z" @@ -636,10 +668,12 @@ exports[`SearchInput search input with hint 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -659,10 +693,12 @@ exports[`SearchInput search input with hint 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z" @@ -692,10 +728,12 @@ exports[`SearchInput simple search input 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" @@ -727,10 +765,12 @@ exports[`SearchInput simple search input 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z" @@ -748,10 +788,12 @@ exports[`SearchInput simple search input 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z" @@ -770,10 +812,12 @@ exports[`SearchInput simple search input 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -793,10 +837,12 @@ exports[`SearchInput simple search input 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z" diff --git a/packages/react-core/src/components/Select/__tests__/__snapshots__/Select.test.tsx.snap b/packages/react-core/src/components/Select/__tests__/__snapshots__/Select.test.tsx.snap index 2133ed963b7..02ad77f5f28 100644 --- a/packages/react-core/src/components/Select/__tests__/__snapshots__/Select.test.tsx.snap +++ b/packages/react-core/src/components/Select/__tests__/__snapshots__/Select.test.tsx.snap @@ -29,10 +29,12 @@ exports[`Select renders select groups successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -213,10 +215,12 @@ exports[`Select renders up direction successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -259,10 +263,12 @@ exports[`Select single select renders closed successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -306,10 +312,12 @@ exports[`Select single select renders disabled successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -352,10 +360,12 @@ exports[`Select single select renders expanded in strict mode successfully 1`] = > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -456,10 +466,12 @@ exports[`Select single select renders expanded successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -560,10 +572,12 @@ exports[`Select single select renders expanded successfully with custom objects > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -648,10 +662,12 @@ exports[`checkbox select renders checkbox select groups successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -848,10 +864,12 @@ exports[`checkbox select renders checkbox select selections properly 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -891,10 +909,12 @@ exports[`checkbox select renders checkbox select selections properly when isChec > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -934,10 +954,12 @@ exports[`checkbox select renders closed successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -977,10 +999,12 @@ exports[`checkbox select renders expanded successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -1082,10 +1106,12 @@ exports[`checkbox select renders expanded successfully with custom objects 1`] = > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -1175,8 +1201,11 @@ exports[`checkbox select renders expanded with filtering successfully 1`] = ` aria-hidden="true" class="pf-c-select__toggle-arrow" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -1294,10 +1323,12 @@ exports[`renders select with favorites successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -1342,10 +1373,12 @@ exports[`renders select with favorites successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z" @@ -1375,10 +1408,12 @@ exports[`renders select with favorites successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z" @@ -1408,10 +1443,12 @@ exports[`renders select with favorites successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z" @@ -1441,10 +1478,12 @@ exports[`renders select with favorites successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z" @@ -1489,10 +1528,12 @@ exports[`renders select with favorites successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z" @@ -1522,10 +1563,12 @@ exports[`renders select with favorites successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z" @@ -1555,10 +1598,12 @@ exports[`renders select with favorites successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z" @@ -1588,10 +1633,12 @@ exports[`renders select with favorites successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 576 512" + width="1em" > <path d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z" @@ -1646,8 +1693,11 @@ exports[`typeahead multi select renders closed successfully 1`] = ` aria-hidden="true" class="pf-c-select__toggle-arrow" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -1698,8 +1748,11 @@ exports[`typeahead multi select renders expanded successfully 1`] = ` aria-hidden="true" class="pf-c-select__toggle-arrow" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -1833,10 +1886,12 @@ exports[`typeahead multi select renders selected successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -1881,10 +1936,12 @@ exports[`typeahead multi select renders selected successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -1922,8 +1979,11 @@ exports[`typeahead multi select renders selected successfully 1`] = ` aria-hidden="true" class="pf-c-select__toggle-arrow" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -1953,10 +2013,12 @@ exports[`typeahead multi select renders selected successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" @@ -1982,10 +2044,12 @@ exports[`typeahead multi select renders selected successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" @@ -2063,8 +2127,11 @@ exports[`typeahead select renders closed successfully 1`] = ` aria-hidden="true" class="pf-c-select__toggle-arrow" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -2114,8 +2181,11 @@ exports[`typeahead select renders expanded successfully 1`] = ` aria-hidden="true" class="pf-c-select__toggle-arrow" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -2223,8 +2293,11 @@ exports[`typeahead select renders selected successfully 1`] = ` aria-hidden="true" class="pf-c-select__toggle-arrow" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -2254,10 +2327,12 @@ exports[`typeahead select renders selected successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" diff --git a/packages/react-core/src/components/Select/__tests__/__snapshots__/SelectOption.test.tsx.snap b/packages/react-core/src/components/Select/__tests__/__snapshots__/SelectOption.test.tsx.snap index 4ad100a385c..82a685e8f15 100644 --- a/packages/react-core/src/components/Select/__tests__/__snapshots__/SelectOption.test.tsx.snap +++ b/packages/react-core/src/components/Select/__tests__/__snapshots__/SelectOption.test.tsx.snap @@ -58,10 +58,12 @@ exports[`SelectOption is selected renders selected successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" diff --git a/packages/react-core/src/components/Select/__tests__/__snapshots__/SelectToggle.test.tsx.snap b/packages/react-core/src/components/Select/__tests__/__snapshots__/SelectToggle.test.tsx.snap index 7c3dbab8a7e..d1194830d92 100644 --- a/packages/react-core/src/components/Select/__tests__/__snapshots__/SelectToggle.test.tsx.snap +++ b/packages/react-core/src/components/Select/__tests__/__snapshots__/SelectToggle.test.tsx.snap @@ -17,10 +17,12 @@ exports[`SelectToggle state active 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" diff --git a/packages/react-core/src/components/Switch/__tests__/__snapshots__/Switch.test.tsx.snap b/packages/react-core/src/components/Switch/__tests__/__snapshots__/Switch.test.tsx.snap index c7c5be1351f..68ecf130f67 100644 --- a/packages/react-core/src/components/Switch/__tests__/__snapshots__/Switch.test.tsx.snap +++ b/packages/react-core/src/components/Switch/__tests__/__snapshots__/Switch.test.tsx.snap @@ -25,10 +25,12 @@ exports[`Switch no label switch is checked 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" @@ -64,10 +66,12 @@ exports[`Switch no label switch is not checked 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" @@ -140,10 +144,12 @@ exports[`Switch switch is checked and disabled 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" @@ -214,10 +220,12 @@ exports[`Switch switch is not checked and disabled 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" diff --git a/packages/react-core/src/components/Tabs/__tests__/__snapshots__/OverflowTab.test.tsx.snap b/packages/react-core/src/components/Tabs/__tests__/__snapshots__/OverflowTab.test.tsx.snap index ed39cc1968b..33f4d7e26cb 100644 --- a/packages/react-core/src/components/Tabs/__tests__/__snapshots__/OverflowTab.test.tsx.snap +++ b/packages/react-core/src/components/Tabs/__tests__/__snapshots__/OverflowTab.test.tsx.snap @@ -23,10 +23,12 @@ exports[`Matches snapshot when expanded 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -106,10 +108,12 @@ exports[`Renders tabs passed via overflowingTabs when expanded in strict mode 1` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" diff --git a/packages/react-core/src/components/Tabs/__tests__/__snapshots__/Tabs.test.tsx.snap b/packages/react-core/src/components/Tabs/__tests__/__snapshots__/Tabs.test.tsx.snap index 696ff749b14..45857c1ba36 100644 --- a/packages/react-core/src/components/Tabs/__tests__/__snapshots__/Tabs.test.tsx.snap +++ b/packages/react-core/src/components/Tabs/__tests__/__snapshots__/Tabs.test.tsx.snap @@ -422,10 +422,12 @@ exports[`should render expandable vertical tabs 1`] = ` <svg aria-hidden="true" arian-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" diff --git a/packages/react-core/src/components/Tile/__tests__/__snapshots__/Tile.test.tsx.snap b/packages/react-core/src/components/Tile/__tests__/__snapshots__/Tile.test.tsx.snap index 9c921e2a2f4..f9a6baa5617 100644 --- a/packages/react-core/src/components/Tile/__tests__/__snapshots__/Tile.test.tsx.snap +++ b/packages/react-core/src/components/Tile/__tests__/__snapshots__/Tile.test.tsx.snap @@ -77,10 +77,12 @@ exports[`Tile renders with icon 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -112,10 +114,12 @@ exports[`Tile renders with stacked icon 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" @@ -147,10 +151,12 @@ exports[`Tile renders with stacked large icon 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" diff --git a/packages/react-core/src/components/Toolbar/__tests__/__snapshots__/Toolbar.test.tsx.snap b/packages/react-core/src/components/Toolbar/__tests__/__snapshots__/Toolbar.test.tsx.snap index bdfc3f8b52e..f873131eb6c 100644 --- a/packages/react-core/src/components/Toolbar/__tests__/__snapshots__/Toolbar.test.tsx.snap +++ b/packages/react-core/src/components/Toolbar/__tests__/__snapshots__/Toolbar.test.tsx.snap @@ -131,10 +131,12 @@ exports[`Toolbar should render with custom chip content 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -322,10 +324,12 @@ exports[`Toolbar should render with custom chip content 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -370,10 +374,12 @@ exports[`Toolbar should render with custom chip content 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -401,10 +407,12 @@ exports[`Toolbar should render with custom chip content 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z" diff --git a/packages/react-core/src/components/TreeView/__tests__/__snapshots__/TreeView.test.tsx.snap b/packages/react-core/src/components/TreeView/__tests__/__snapshots__/TreeView.test.tsx.snap index 7543b17aba8..4eaa9c96715 100644 --- a/packages/react-core/src/components/TreeView/__tests__/__snapshots__/TreeView.test.tsx.snap +++ b/packages/react-core/src/components/TreeView/__tests__/__snapshots__/TreeView.test.tsx.snap @@ -35,10 +35,12 @@ exports[`renders compact no background successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -86,10 +88,12 @@ exports[`renders compact no background successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -134,10 +138,12 @@ exports[`renders compact no background successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -184,10 +190,12 @@ exports[`renders compact no background successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -232,10 +240,12 @@ exports[`renders compact no background successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -280,10 +290,12 @@ exports[`renders compact no background successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -344,10 +356,12 @@ exports[`renders compact successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -395,10 +409,12 @@ exports[`renders compact successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -443,10 +459,12 @@ exports[`renders compact successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -493,10 +511,12 @@ exports[`renders compact successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -541,10 +561,12 @@ exports[`renders compact successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -589,10 +611,12 @@ exports[`renders compact successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -653,10 +677,12 @@ exports[`renders guides successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -700,10 +726,12 @@ exports[`renders guides successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -744,10 +772,12 @@ exports[`renders guides successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -790,10 +820,12 @@ exports[`renders guides successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -834,10 +866,12 @@ exports[`renders guides successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -878,10 +912,12 @@ exports[`renders guides successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -938,10 +974,12 @@ exports[`tree view renders active successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -985,10 +1023,12 @@ exports[`tree view renders active successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1029,10 +1069,12 @@ exports[`tree view renders active successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1075,10 +1117,12 @@ exports[`tree view renders active successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1119,10 +1163,12 @@ exports[`tree view renders active successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1163,10 +1209,12 @@ exports[`tree view renders active successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1223,10 +1271,12 @@ exports[`tree view renders badges successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1279,10 +1329,12 @@ exports[`tree view renders badges successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1332,10 +1384,12 @@ exports[`tree view renders badges successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1387,10 +1441,12 @@ exports[`tree view renders badges successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1440,10 +1496,12 @@ exports[`tree view renders badges successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1493,10 +1551,12 @@ exports[`tree view renders badges successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1562,10 +1622,12 @@ exports[`tree view renders basic successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1609,10 +1671,12 @@ exports[`tree view renders basic successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1653,10 +1717,12 @@ exports[`tree view renders basic successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1699,10 +1765,12 @@ exports[`tree view renders basic successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1743,10 +1811,12 @@ exports[`tree view renders basic successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1787,10 +1857,12 @@ exports[`tree view renders basic successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1849,10 +1921,12 @@ exports[`tree view renders checkboxes successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1908,10 +1982,12 @@ exports[`tree view renders checkboxes successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -1964,10 +2040,12 @@ exports[`tree view renders checkboxes successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2022,10 +2100,12 @@ exports[`tree view renders checkboxes successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2078,10 +2158,12 @@ exports[`tree view renders checkboxes successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2134,10 +2216,12 @@ exports[`tree view renders checkboxes successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2203,10 +2287,12 @@ exports[`tree view renders icons successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2219,8 +2305,8 @@ exports[`tree view renders icons successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" style="vertical-align: -0.125em;" viewBox="0 0 576 512" @@ -2267,10 +2353,12 @@ exports[`tree view renders icons successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2283,10 +2371,12 @@ exports[`tree view renders icons successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z" @@ -2326,10 +2416,12 @@ exports[`tree view renders icons successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2342,10 +2434,12 @@ exports[`tree view renders icons successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z" @@ -2387,10 +2481,12 @@ exports[`tree view renders icons successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2403,10 +2499,12 @@ exports[`tree view renders icons successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z" @@ -2446,10 +2544,12 @@ exports[`tree view renders icons successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2462,10 +2562,12 @@ exports[`tree view renders icons successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z" @@ -2505,10 +2607,12 @@ exports[`tree view renders icons successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2521,10 +2625,12 @@ exports[`tree view renders icons successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z" @@ -2583,10 +2689,12 @@ exports[`tree view renders individual flag options successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2608,8 +2716,8 @@ exports[`tree view renders individual flag options successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" style="vertical-align: -0.125em;" viewBox="0 0 576 512" @@ -2656,10 +2764,12 @@ exports[`tree view renders individual flag options successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2700,10 +2810,12 @@ exports[`tree view renders individual flag options successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2755,10 +2867,12 @@ exports[`tree view renders individual flag options successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2796,10 +2910,12 @@ exports[`tree view renders individual flag options successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z" @@ -2833,10 +2949,12 @@ exports[`tree view renders individual flag options successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2877,10 +2995,12 @@ exports[`tree view renders individual flag options successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -2959,10 +3079,12 @@ exports[`tree view renders toolbar successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -3006,10 +3128,12 @@ exports[`tree view renders toolbar successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -3050,10 +3174,12 @@ exports[`tree view renders toolbar successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -3096,10 +3222,12 @@ exports[`tree view renders toolbar successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -3140,10 +3268,12 @@ exports[`tree view renders toolbar successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -3184,10 +3314,12 @@ exports[`tree view renders toolbar successfully 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" diff --git a/packages/react-core/src/components/Wizard/__tests__/Generated/__snapshots__/WizardToggle.test.tsx.snap b/packages/react-core/src/components/Wizard/__tests__/Generated/__snapshots__/WizardToggle.test.tsx.snap index 029509fe32f..212ba26bffd 100644 --- a/packages/react-core/src/components/Wizard/__tests__/Generated/__snapshots__/WizardToggle.test.tsx.snap +++ b/packages/react-core/src/components/Wizard/__tests__/Generated/__snapshots__/WizardToggle.test.tsx.snap @@ -24,10 +24,12 @@ exports[`WizardToggle should match snapshot (auto-generated) 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" diff --git a/packages/react-core/src/components/Wizard/__tests__/__snapshots__/Wizard.test.tsx.snap b/packages/react-core/src/components/Wizard/__tests__/__snapshots__/Wizard.test.tsx.snap index da9b4df8adb..35c7fd7db70 100644 --- a/packages/react-core/src/components/Wizard/__tests__/__snapshots__/Wizard.test.tsx.snap +++ b/packages/react-core/src/components/Wizard/__tests__/__snapshots__/Wizard.test.tsx.snap @@ -19,10 +19,12 @@ exports[`Wizard Expandable Nav Wizard should match snapshot 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -70,10 +72,12 @@ exports[`Wizard Expandable Nav Wizard should match snapshot 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -137,10 +141,12 @@ exports[`Wizard Expandable Nav Wizard should match snapshot 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z" @@ -288,10 +294,12 @@ exports[`Wizard Wizard should match snapshot 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -339,10 +347,12 @@ exports[`Wizard Wizard should match snapshot 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -550,10 +560,12 @@ exports[`Wizard bare wiz 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" diff --git a/packages/react-core/src/deprecated/components/ApplicationLauncher/__tests__/__snapshots__/ApplicationLauncher.test.tsx.snap b/packages/react-core/src/deprecated/components/ApplicationLauncher/__tests__/__snapshots__/ApplicationLauncher.test.tsx.snap index 61457f39a9d..76aba94ee2f 100644 --- a/packages/react-core/src/deprecated/components/ApplicationLauncher/__tests__/__snapshots__/ApplicationLauncher.test.tsx.snap +++ b/packages/react-core/src/deprecated/components/ApplicationLauncher/__tests__/__snapshots__/ApplicationLauncher.test.tsx.snap @@ -22,10 +22,12 @@ exports[`ApplicationLauncher Renders in strict mode 1`] = ` <span> <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z" @@ -167,11 +169,13 @@ exports[`ApplicationLauncher custom icon 1`] = ` <span> <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" id="test-icon" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 1024 1024" + width="1em" > <path d="M521.3,576 C627.5,576 713.7,502 713.7,413.7 C713.7,325.4 627.6,253.6 521.3,253.6 C366,253.6 334.5,337.7 329.2,407.2 C329.2,414.3 335.2,416 343.5,416 L445,416 C450.5,416 458,415.5 460.8,406.5 C460.8,362.6 582.9,357.1 582.9,413.6 C582.9,441.9 556.2,470.9 521.3,473 C486.4,475.1 447.3,479.8 447.3,521.7 L447.3,553.8 C447.3,570.8 456.1,576 472,576 C487.9,576 521.3,576 521.3,576 M575.3,751.3 L575.3,655.3 C575.313862,651.055109 573.620137,646.982962 570.6,644 C567.638831,640.947672 563.552355,639.247987 559.3,639.29884 L463.3,639.29884 C459.055109,639.286138 454.982962,640.979863 452,644 C448.947672,646.961169 447.247987,651.047645 447.29884,655.3 L447.29884,751.3 C447.286138,755.544891 448.979863,759.617038 452,762.6 C454.961169,765.652328 459.047645,767.352013 463.3,767.30116 L559.3,767.30116 C563.544891,767.313862 567.617038,765.620137 570.6,762.6 C573.659349,759.643612 575.360354,755.553963 575.3,751.3 M512,896 C300.2,896 128,723.9 128,512 C128,300.3 300.2,128 512,128 C723.8,128 896,300.2 896,512 C896,723.8 723.7,896 512,896 M512.1,0 C229.7,0 0,229.8 0,512 C0,794.2 229.8,1024 512.1,1024 C794.4,1024 1024,794.3 1024,512 C1024,229.7 794.4,0 512.1,0" @@ -312,10 +316,12 @@ exports[`ApplicationLauncher dropup + right aligned 1`] = ` <span> <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z" @@ -349,10 +355,12 @@ exports[`ApplicationLauncher dropup 1`] = ` <span> <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z" @@ -386,10 +394,12 @@ exports[`ApplicationLauncher expanded 1`] = ` <span> <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z" @@ -530,10 +540,12 @@ exports[`ApplicationLauncher regular 1`] = ` <span> <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z" @@ -567,10 +579,12 @@ exports[`ApplicationLauncher right aligned 1`] = ` <span> <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z" diff --git a/packages/react-core/src/deprecated/components/ContextSelector/__tests__/__snapshots__/ContextSelector.test.tsx.snap b/packages/react-core/src/deprecated/components/ContextSelector/__tests__/__snapshots__/ContextSelector.test.tsx.snap index 9c9ea4f8078..d45c8360fd8 100644 --- a/packages/react-core/src/deprecated/components/ContextSelector/__tests__/__snapshots__/ContextSelector.test.tsx.snap +++ b/packages/react-core/src/deprecated/components/ContextSelector/__tests__/__snapshots__/ContextSelector.test.tsx.snap @@ -23,10 +23,12 @@ exports[`ContextSelector Renders ContextSelector 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -61,10 +63,12 @@ exports[`ContextSelector Renders ContextSelector open 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -97,10 +101,12 @@ exports[`ContextSelector Renders ContextSelector open 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" @@ -128,10 +134,12 @@ exports[`ContextSelector Renders ContextSelector open 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z" @@ -224,10 +232,12 @@ exports[`ContextSelector Renders in strict mode 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -260,10 +270,12 @@ exports[`ContextSelector Renders in strict mode 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z" @@ -291,10 +303,12 @@ exports[`ContextSelector Renders in strict mode 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 448 512" + width="1em" > <path d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z" diff --git a/packages/react-core/src/deprecated/components/ContextSelector/__tests__/__snapshots__/ContextSelectorToggle.test.tsx.snap b/packages/react-core/src/deprecated/components/ContextSelector/__tests__/__snapshots__/ContextSelectorToggle.test.tsx.snap index d17542594f1..8cc18b2cdf2 100644 --- a/packages/react-core/src/deprecated/components/ContextSelector/__tests__/__snapshots__/ContextSelectorToggle.test.tsx.snap +++ b/packages/react-core/src/deprecated/components/ContextSelector/__tests__/__snapshots__/ContextSelectorToggle.test.tsx.snap @@ -16,10 +16,12 @@ exports[`ContextSelectorToggle Renders ContextSelectorToggle 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -46,10 +48,12 @@ exports[`ContextSelectorToggle Verify ESC press 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -76,10 +80,12 @@ exports[`ContextSelectorToggle Verify ESC press with not isOpen 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -106,10 +112,12 @@ exports[`ContextSelectorToggle Verify keydown enter 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -136,10 +144,12 @@ exports[`ContextSelectorToggle Verify keydown tab 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" diff --git a/packages/react-core/src/deprecated/components/Dropdown/__tests__/Generated/__snapshots__/KebabToggle.test.tsx.snap b/packages/react-core/src/deprecated/components/Dropdown/__tests__/Generated/__snapshots__/KebabToggle.test.tsx.snap index d9af10e68a8..71b58ffb536 100644 --- a/packages/react-core/src/deprecated/components/Dropdown/__tests__/Generated/__snapshots__/KebabToggle.test.tsx.snap +++ b/packages/react-core/src/deprecated/components/Dropdown/__tests__/Generated/__snapshots__/KebabToggle.test.tsx.snap @@ -11,10 +11,12 @@ exports[`KebabToggle should match snapshot (auto-generated) 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" diff --git a/packages/react-core/src/deprecated/components/Dropdown/__tests__/__snapshots__/Dropdown.test.tsx.snap b/packages/react-core/src/deprecated/components/Dropdown/__tests__/__snapshots__/Dropdown.test.tsx.snap index 7fcced658a9..ba14c21f220 100644 --- a/packages/react-core/src/deprecated/components/Dropdown/__tests__/__snapshots__/Dropdown.test.tsx.snap +++ b/packages/react-core/src/deprecated/components/Dropdown/__tests__/__snapshots__/Dropdown.test.tsx.snap @@ -28,10 +28,12 @@ exports[`Dropdown Renders in strict mode 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -151,10 +153,12 @@ exports[`Dropdown alignment breakpoints 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -273,10 +277,12 @@ exports[`Dropdown basic 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -323,10 +329,12 @@ exports[`Dropdown dropup + right aligned 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -366,10 +374,12 @@ exports[`Dropdown dropup 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -410,10 +420,12 @@ exports[`Dropdown expanded 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -532,10 +544,12 @@ exports[`Dropdown primary 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -575,10 +589,12 @@ exports[`Dropdown regular 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -618,10 +634,12 @@ exports[`Dropdown right aligned 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -651,10 +669,12 @@ exports[`KebabToggle basic 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -690,10 +710,12 @@ exports[`KebabToggle dropup + right aligned 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -722,10 +744,12 @@ exports[`KebabToggle dropup 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -755,10 +779,12 @@ exports[`KebabToggle expanded 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -866,10 +892,12 @@ exports[`KebabToggle plain 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -899,10 +927,12 @@ exports[`KebabToggle regular 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -931,10 +961,12 @@ exports[`KebabToggle right aligned 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" diff --git a/packages/react-core/src/deprecated/components/Dropdown/__tests__/__snapshots__/DropdownToggle.test.tsx.snap b/packages/react-core/src/deprecated/components/Dropdown/__tests__/__snapshots__/DropdownToggle.test.tsx.snap index 4dd2b9903d5..fbd737ceb9d 100644 --- a/packages/react-core/src/deprecated/components/Dropdown/__tests__/__snapshots__/DropdownToggle.test.tsx.snap +++ b/packages/react-core/src/deprecated/components/Dropdown/__tests__/__snapshots__/DropdownToggle.test.tsx.snap @@ -28,10 +28,12 @@ exports[`DropdownToggle state action split button - renders primary variant 1`] > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -64,10 +66,12 @@ exports[`DropdownToggle state active 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -99,10 +103,12 @@ exports[`DropdownToggle state button variant - plain with text 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -134,10 +140,12 @@ exports[`DropdownToggle state button variant - primary 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -169,10 +177,12 @@ exports[`DropdownToggle state button variant - secondary 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -204,10 +214,12 @@ exports[`DropdownToggle state class changes 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -239,10 +251,12 @@ exports[`DropdownToggle state focus 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -274,10 +288,12 @@ exports[`DropdownToggle state hover 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -316,10 +332,12 @@ exports[`DropdownToggle state split button - does not render primary variant 1`] > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" diff --git a/packages/react-core/src/deprecated/components/Dropdown/__tests__/__snapshots__/Toggle.test.tsx.snap b/packages/react-core/src/deprecated/components/Dropdown/__tests__/__snapshots__/Toggle.test.tsx.snap index e97e91bb224..6485202e397 100644 --- a/packages/react-core/src/deprecated/components/Dropdown/__tests__/__snapshots__/Toggle.test.tsx.snap +++ b/packages/react-core/src/deprecated/components/Dropdown/__tests__/__snapshots__/Toggle.test.tsx.snap @@ -21,10 +21,12 @@ exports[`Dropdown toggle 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -46,10 +48,12 @@ exports[`Kebab toggle 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" diff --git a/packages/react-core/src/deprecated/components/OptionsMenu/__tests__/Generated/__snapshots__/OptionsMenuToggle.test.tsx.snap b/packages/react-core/src/deprecated/components/OptionsMenu/__tests__/Generated/__snapshots__/OptionsMenuToggle.test.tsx.snap index 47d35f2661f..4430eed7188 100644 --- a/packages/react-core/src/deprecated/components/OptionsMenu/__tests__/Generated/__snapshots__/OptionsMenuToggle.test.tsx.snap +++ b/packages/react-core/src/deprecated/components/OptionsMenu/__tests__/Generated/__snapshots__/OptionsMenuToggle.test.tsx.snap @@ -25,10 +25,12 @@ exports[`OptionsMenuToggle should match snapshot (auto-generated) 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" diff --git a/packages/react-core/src/deprecated/components/OptionsMenu/__tests__/__snapshots__/OptionsMenu.test.tsx.snap b/packages/react-core/src/deprecated/components/OptionsMenu/__tests__/__snapshots__/OptionsMenu.test.tsx.snap index 381bf2c843e..e84588eda57 100644 --- a/packages/react-core/src/deprecated/components/OptionsMenu/__tests__/__snapshots__/OptionsMenu.test.tsx.snap +++ b/packages/react-core/src/deprecated/components/OptionsMenu/__tests__/__snapshots__/OptionsMenu.test.tsx.snap @@ -28,10 +28,12 @@ exports[`optionsMenu expanded 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -223,10 +225,12 @@ exports[`optionsMenu isDisabled 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -266,10 +270,12 @@ exports[`optionsMenu open up 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -335,10 +341,12 @@ exports[`optionsMenu regular 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -378,10 +386,12 @@ exports[`optionsMenu renders in strict mode 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -572,10 +582,12 @@ exports[`optionsMenu right aligned + open up 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" @@ -615,10 +627,12 @@ exports[`optionsMenu right aligned 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" diff --git a/packages/react-table/src/deprecated/components/Table/__tests__/__snapshots__/Table.test.tsx.snap b/packages/react-table/src/deprecated/components/Table/__tests__/__snapshots__/Table.test.tsx.snap index 99f9caafd8c..58a601578f9 100644 --- a/packages/react-table/src/deprecated/components/Table/__tests__/__snapshots__/Table.test.tsx.snap +++ b/packages/react-table/src/deprecated/components/Table/__tests__/__snapshots__/Table.test.tsx.snap @@ -43,10 +43,12 @@ exports[`Table Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" @@ -158,10 +160,12 @@ exports[`Table Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -230,10 +234,12 @@ exports[`Table Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -302,10 +308,12 @@ exports[`Table Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -374,10 +382,12 @@ exports[`Table Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -446,10 +456,12 @@ exports[`Table Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -518,10 +530,12 @@ exports[`Table Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -590,10 +604,12 @@ exports[`Table Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -662,10 +678,12 @@ exports[`Table Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -734,10 +752,12 @@ exports[`Table Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -795,10 +815,12 @@ exports[`Table Cell header table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" @@ -1313,10 +1335,12 @@ exports[`Table Collapsible nested table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" @@ -1391,10 +1415,12 @@ exports[`Table Collapsible nested table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z" @@ -1471,10 +1497,12 @@ exports[`Table Collapsible nested table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z" @@ -1616,10 +1644,12 @@ exports[`Table Collapsible nested table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z" @@ -1997,10 +2027,12 @@ exports[`Table Collapsible table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" @@ -2075,10 +2107,12 @@ exports[`Table Collapsible table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z" @@ -2269,10 +2303,12 @@ exports[`Table Collapsible table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 320 512" + width="1em" > <path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z" @@ -3850,10 +3886,12 @@ exports[`Table Selectable table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" @@ -4480,10 +4518,12 @@ exports[`Table Selectable table with Radio 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" @@ -5202,10 +5242,12 @@ exports[`Table Simple Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" @@ -5317,10 +5359,12 @@ exports[`Table Simple Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -5389,10 +5433,12 @@ exports[`Table Simple Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -5461,10 +5507,12 @@ exports[`Table Simple Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -5533,10 +5581,12 @@ exports[`Table Simple Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -5605,10 +5655,12 @@ exports[`Table Simple Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -5677,10 +5729,12 @@ exports[`Table Simple Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -5749,10 +5803,12 @@ exports[`Table Simple Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -5821,10 +5877,12 @@ exports[`Table Simple Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -5893,10 +5951,12 @@ exports[`Table Simple Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -5966,10 +6026,12 @@ exports[`Table Simple Actions table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 192 512" + width="1em" > <path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z" @@ -6027,10 +6089,12 @@ exports[`Table Table variants Breakpoint - 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" @@ -6504,10 +6568,12 @@ exports[`Table Table variants Breakpoint - grid 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" @@ -6981,10 +7047,12 @@ exports[`Table Table variants Breakpoint - grid-2xl 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" @@ -7458,10 +7526,12 @@ exports[`Table Table variants Breakpoint - grid-lg 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" @@ -7935,10 +8005,12 @@ exports[`Table Table variants Breakpoint - grid-md 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" @@ -8412,10 +8484,12 @@ exports[`Table Table variants Breakpoint - grid-xl 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" @@ -8889,10 +8963,12 @@ exports[`Table Table variants Size - compact 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" @@ -9534,10 +9610,12 @@ exports[`Table simple Editable table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" @@ -9559,10 +9637,12 @@ exports[`Table simple Editable table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -9585,10 +9665,12 @@ exports[`Table simple Editable table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z" @@ -9742,10 +9824,12 @@ exports[`Table simple Editable table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" @@ -9767,10 +9851,12 @@ exports[`Table simple Editable table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 352 512" + width="1em" > <path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z" @@ -9793,10 +9879,12 @@ exports[`Table simple Editable table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 512 512" + width="1em" > <path d="M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z" @@ -9855,10 +9943,12 @@ exports[`Table simple Row click table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z" @@ -10332,10 +10422,12 @@ exports[`Table simple Sortable table 1`] = ` > <svg aria-hidden="true" - class="pf-svg" fill="currentColor" + height="1em" role="img" + style="vertical-align: -0.125em;" viewBox="0 0 256 512" + width="1em" > <path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z"