diff --git a/.stylelintrc.json b/.stylelintrc.json index 844fe42799..29e19b2e92 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -9,7 +9,8 @@ { "ignoreProperties": [ "vertical-anchor", - "animation-timeline" + "animation-timeline", + "field-sizing" ] } ], diff --git a/crowdin.yml b/crowdin.yml index 24ada86e4d..745d164197 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -120,15 +120,7 @@ "translation": "/%original_path%/%two_letters_code%.json", }, { - "source": "/semcore/notice/src/translations/en.json", - "translation": "/%original_path%/%two_letters_code%.json", - }, - { - "source": "/semcore/notice-bubble/src/translations/en.json", - "translation": "/%original_path%/%two_letters_code%.json", - }, - { - "source": "/semcore/notice-global/src/translations/en.json", + "source": "/semcore/link/src/translations/en.json", "translation": "/%original_path%/%two_letters_code%.json", }, { diff --git a/playground/entries/Badge.tsx b/playground/entries/Badge.tsx index 11360ea203..5031506e48 100644 --- a/playground/entries/Badge.tsx +++ b/playground/entries/Badge.tsx @@ -21,10 +21,11 @@ const entry: PlaygroundEntry = { displayName: 'Type', value: 'new', }, - inverted: { - type: 'boolean', - displayName: 'Inverted', - value: false, + theme: { + type: 'select', + options: ['default', 'light', 'invert'], + displayName: 'Theme', + value: 'default', }, }, link: createGithubLink('badge'), diff --git a/playground/entries/Link.tsx b/playground/entries/Link.tsx index e1e575239e..eb04d75f4f 100644 --- a/playground/entries/Link.tsx +++ b/playground/entries/Link.tsx @@ -15,7 +15,7 @@ export type LinkJSXProps = JSXProps & AdditionalJSXProps; function getJSX(props: LinkJSXProps) { return ( - + {props.beforeIcon && {renderIcon('before', props.size)}} {props.beforeIcon || props.afterIcon ? {props.children} : props.children} {props.afterIcon && {renderIcon('after', props.size)}} @@ -32,6 +32,12 @@ const entry: PlaygroundEntry = { options: ['100', '200', '300', '400', '500', '600', '700', '800'], displayName: 'Size', }, + theme: { + type: 'select', + value: 'primary', + options: ['default', 'light', 'accent', 'invert'], + displayName: 'Use', + }, color: { type: 'text', value: '', diff --git a/playground/entries/Spin.tsx b/playground/entries/Spin.tsx index 36710998d6..d6b483b6ec 100644 --- a/playground/entries/Spin.tsx +++ b/playground/entries/Spin.tsx @@ -20,9 +20,9 @@ type AdditionalJSXProps = { }; export type SpinJSXProps = JSXProps & AdditionalJSXProps; -const margins = { - xs: 1, - s: 1, +const gaps = { + xs: 1.5, + s: 1.5, m: 2, l: 2, xl: 4, @@ -32,10 +32,10 @@ const margins = { const textSize: { [key in SpinJSXProps['size']]: NSText.Props['size'] } = { xs: 200, s: 200, - m: 300, + m: 200, l: 300, - xl: 200, - xxl: 200, + xl: 300, + xxl: 300, }; const textPlacement: { [key in SpinJSXProps['textPlacement']]: NSFlex.Props['direction'] } = { @@ -46,7 +46,7 @@ const textPlacement: { [key in SpinJSXProps['textPlacement']]: NSFlex.Props['dir function getJSX(props: SpinJSXProps) { return props.text.length ? ( - + {props.text} @@ -69,8 +69,8 @@ const entry: PlaygroundEntry = { }, theme: { type: 'inline-radio', - value: 'dark', - options: ['dark', 'invert'], + value: 'default', + options: ['default', 'invert'], displayName: 'Theme', }, text: { diff --git a/playground/entries/SpinContainer.tsx b/playground/entries/SpinContainer.tsx index 7e8e8d572e..a72aad023c 100644 --- a/playground/entries/SpinContainer.tsx +++ b/playground/entries/SpinContainer.tsx @@ -48,8 +48,8 @@ const entry: PlaygroundEntry = { }, theme: { type: 'inline-radio', - value: 'dark', - options: ['dark', 'invert'], + value: 'default', + options: ['default', 'invert'], displayName: 'Theme', }, size: { diff --git a/playground/entries/TabLine.tsx b/playground/entries/TabLine.tsx index 5b1e936369..81f6219c4c 100644 --- a/playground/entries/TabLine.tsx +++ b/playground/entries/TabLine.tsx @@ -26,7 +26,7 @@ function getJSX(props: TabLineJSXProps) { ? [ Analytics, - new + , ] : 'Analytics'} diff --git a/playground/entries/TabPanel.tsx b/playground/entries/TabPanel.tsx index 64233180e9..71c4ec82a9 100644 --- a/playground/entries/TabPanel.tsx +++ b/playground/entries/TabPanel.tsx @@ -26,7 +26,7 @@ function getJSX(props: TabPanelJSXProps) { ? [ Analytics, - new + , ] : 'Analytics'} diff --git a/playground/entries/Tag.tsx b/playground/entries/Tag.tsx index c7adba5abc..ae6ce9a81f 100644 --- a/playground/entries/Tag.tsx +++ b/playground/entries/Tag.tsx @@ -1,4 +1,5 @@ import EditM from '@semcore/icon/Edit/m'; +import { Flex } from '@semcore/ui/base-components'; import type { NSTag } from '@semcore/ui/tag'; import { TagContainer } from '@semcore/ui/tag'; import React from 'react'; @@ -16,29 +17,35 @@ type AdditionalJSXProps = { export type TagJSXProps = JSXProps & AdditionalJSXProps; function getJSX(props: TagJSXProps) { + const tagProps = props.color + ? { theme: props.theme, color: props.color } + : { theme: 'primary' } as const; + return ( - - - {props.addon === 'Circle' && ( - - - - )} - {props.addon === 'Icon' && ( - - - - )} - Tag text - - {props.closeIcon && } - + + + + {props.addon === 'Circle' && ( + + + + )} + {props.addon === 'Icon' && ( + + + + )} + Tag text + + {props.closeIcon && } + + ); } @@ -87,6 +94,11 @@ const entry: PlaygroundEntry = { value: false, displayName: 'Active', }, + invert: { + type: 'boolean', + value: false, + displayName: 'Invert', + }, disabled: { type: 'boolean', value: false, diff --git a/playground/utils/renderIcon.tsx b/playground/utils/renderIcon.tsx index 1ec9e0d4b4..5aaf2f66d4 100644 --- a/playground/utils/renderIcon.tsx +++ b/playground/utils/renderIcon.tsx @@ -19,6 +19,10 @@ const SizeToIconMap = { before: , after: , }, + 350: { + before: , + after: , + }, 400: { before: , after: , diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 68a0dad48d..199793a312 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -764,6 +764,12 @@ importers: '@semcore/checkbox': specifier: ^17.2.1 version: link:../checkbox + '@semcore/divider': + specifier: ^17.2.1 + version: link:../divider + '@semcore/link': + specifier: ^17.2.1 + version: link:../link '@semcore/spin': specifier: ^17.2.1 version: link:../spin @@ -783,9 +789,6 @@ importers: '@semcore/base-trigger': specifier: workspace:* version: link:../base-trigger - '@semcore/divider': - specifier: workspace:* - version: link:../divider '@semcore/dropdown-menu': specifier: workspace:* version: link:../dropdown-menu @@ -914,6 +917,9 @@ importers: semcore/dropdown: dependencies: + '@semcore/notice': + specifier: ^17.2.2 + version: link:../notice '@semcore/typography': specifier: ^17.2.1 version: link:../typography @@ -1511,6 +1517,10 @@ importers: version: link:../../tools/testing-utils semcore/pills: + dependencies: + '@semcore/typography': + specifier: ^17.2.1 + version: link:../typography devDependencies: '@semcore/badge': specifier: workspace:* diff --git a/semcore/accordion/src/style/accordion.shadow.css b/semcore/accordion/src/style/accordion.shadow.css index b393df2d8b..15576cca46 100644 --- a/semcore/accordion/src/style/accordion.shadow.css +++ b/semcore/accordion/src/style/accordion.shadow.css @@ -15,7 +15,7 @@ SItemToggle[use][use='primary'] { margin-bottom: var(--intergalactic-spacing-05x, 2px); } SItemToggle[use][use='primary']:hover { - background-color: var(--intergalactic-bg-secondary-neutral-hover, oklch(0.96 0.001 180)); + background-color: var(--intergalactic-bg-secondary-neutral-hover, oklch(0.97 0.001 180)); } SItemToggle[disabled] { diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx b/semcore/add-filter/__tests__/add-filter.browser-test.tsx index fa3975423d..29f8c8252d 100644 --- a/semcore/add-filter/__tests__/add-filter.browser-test.tsx +++ b/semcore/add-filter/__tests__/add-filter.browser-test.tsx @@ -75,7 +75,8 @@ test.describe(`${TAG.VISUAL}`, () => { '@base-trigger', '@button', '@input', - '@select'], + '@select', + '@button-link'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/docs/examples/add-filter-basic.tsx', 'en'); @@ -102,7 +103,8 @@ test.describe(`${TAG.VISUAL}`, () => { '@base-trigger', '@button', '@input', - '@select'], + '@select', + '@button-link'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/docs/examples/add-filter-basic.tsx', 'en'); @@ -130,7 +132,11 @@ test.describe(`${TAG.VISUAL}`, () => { '@input', '@radio', '@textarea', - '@select'], + '@select', + '@base-components', + '@flex-box', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter.tsx', 'en'); @@ -167,7 +173,11 @@ test.describe(`${TAG.VISUAL}`, () => { '@input', '@radio', '@textarea', - '@select'], + '@select', + '@base-components', + '@flex-box', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter.tsx', 'en'); @@ -187,7 +197,12 @@ test.describe(`${TAG.VISUAL}`, () => { '@button', '@input', '@input-number', - '@divider'], + '@divider', + '@base-components', + '@flex-box', + '@neighbor-location', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter-complex-selects.tsx', 'en'); @@ -205,7 +220,12 @@ test.describe(`${TAG.VISUAL}`, () => { '@button', '@input', '@input-number', - '@divider'], + '@divider', + '@base-components', + '@flex-box', + '@neighbor-location', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter-complex-selects.tsx', 'en'); @@ -238,7 +258,11 @@ test.describe(`${TAG.VISUAL}`, () => { '@input', '@radio', '@textarea', - '@select'], + '@select', + '@base-components', + '@flex-box', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter.tsx', 'en'); @@ -260,7 +284,12 @@ test.describe(`${TAG.VISUAL}`, () => { '@button', '@input', '@input-number', - '@divider'], + '@divider', + '@base-components', + '@flex-box', + '@neighbor-location', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter-complex-selects.tsx', 'en'); @@ -297,7 +326,8 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@base-trigger', '@button', '@input', - '@select'], + '@select', + '@button-link'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/docs/examples/add-filter-basic.tsx', 'en'); @@ -340,7 +370,8 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@base-trigger', '@button', '@input', - '@select'], + '@select', + '@button-link'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/docs/examples/add-filter-basic.tsx', 'en'); @@ -373,7 +404,11 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@input', '@radio', '@textarea', - '@select'], + '@select', + '@base-components', + '@flex-box', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter.tsx', 'en'); @@ -446,7 +481,11 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@input', '@radio', '@textarea', - '@select'], + '@select', + '@base-components', + '@flex-box', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter.tsx', 'en'); @@ -569,7 +608,11 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@input', '@radio', '@textarea', - '@select'], + '@select', + '@base-components', + '@flex-box', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter.tsx', 'en'); @@ -613,7 +656,11 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@input', '@radio', '@textarea', - '@select'], + '@select', + '@base-components', + '@flex-box', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter.tsx', 'en'); @@ -696,7 +743,11 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@input', '@radio', '@textarea', - '@select'], + '@select', + '@base-components', + '@flex-box', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter.tsx', 'en'); @@ -741,7 +792,11 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@input', '@radio', '@textarea', - '@select'], + '@select', + '@base-components', + '@flex-box', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter.tsx', 'en'); @@ -773,7 +828,12 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@button', '@input', '@input-number', - '@divider'], + '@divider', + '@base-components', + '@flex-box', + '@neighbor-location', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter-complex-selects.tsx', 'en'); @@ -822,7 +882,12 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@button', '@input', '@input-number', - '@divider'], + '@divider', + '@base-components', + '@flex-box', + '@neighbor-location', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter-complex-selects.tsx', 'en'); @@ -859,7 +924,12 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@button', '@input', '@input-number', - '@divider'], + '@divider', + '@base-components', + '@flex-box', + '@neighbor-location', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter-complex-selects.tsx', 'en'); @@ -901,7 +971,12 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@button', '@input', '@input-number', - '@divider'], + '@divider', + '@base-components', + '@flex-box', + '@neighbor-location', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter-complex-selects.tsx', 'en'); @@ -930,7 +1005,12 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@button', '@input', '@input-number', - '@divider'], + '@divider', + '@base-components', + '@flex-box', + '@neighbor-location', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter-complex-selects.tsx', 'en'); @@ -961,7 +1041,12 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@button', '@input', '@input-number', - '@divider'], + '@divider', + '@base-components', + '@flex-box', + '@neighbor-location', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter-complex-selects.tsx', 'en'); @@ -985,7 +1070,11 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@input', '@radio', '@textarea', - '@select'], + '@select', + '@base-components', + '@flex-box', + '@button-link', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/add-filter.tsx', 'en'); @@ -1020,7 +1109,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@add-filter', '@base-trigger', '@d3-chart', - '@select'], + '@select', + '@base-components', + '@flex-box', + '@cigarette-chart'], }, async ({ page }) => { await loadPage(page, 'stories/components/add-filter/advanced/examples/controlled_add_filter.tsx', 'en'); diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-after-activating-Clear-all-by-keyboard-1-chromium-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-after-activating-Clear-all-by-keyboard-1-chromium-linux.png index 75a423dc9e..d941623474 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-after-activating-Clear-all-by-keyboard-1-chromium-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-after-activating-Clear-all-by-keyboard-1-chromium-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-after-activating-Clear-all-by-keyboard-1-firefox-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-after-activating-Clear-all-by-keyboard-1-firefox-linux.png index 0ba5732c86..0b7d93aa0e 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-after-activating-Clear-all-by-keyboard-1-firefox-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-after-activating-Clear-all-by-keyboard-1-firefox-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-after-activating-Clear-all-by-keyboard-1-webkit-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-after-activating-Clear-all-by-keyboard-1-webkit-linux.png index 611e4a80a8..527b3118f9 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-after-activating-Clear-all-by-keyboard-1-webkit-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-after-activating-Clear-all-by-keyboard-1-webkit-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-without-Add-filter-button-1-chromium-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-without-Add-filter-button-1-chromium-linux.png index fdadf877a7..8f47c37f5c 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-without-Add-filter-button-1-chromium-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-without-Add-filter-button-1-chromium-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-without-Add-filter-button-1-firefox-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-without-Add-filter-button-1-firefox-linux.png index efcdb11526..5604bd4ad1 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-without-Add-filter-button-1-firefox-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-without-Add-filter-button-1-firefox-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-without-Add-filter-button-1-webkit-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-without-Add-filter-button-1-webkit-linux.png index 8f988344d4..c6a3f188a5 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-without-Add-filter-button-1-webkit-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Add-filter-without-Add-filter-button-1-webkit-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Input-as-filter-after-mouse-interactions-1-chromium-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Input-as-filter-after-mouse-interactions-1-chromium-linux.png index be9fdfce92..347e7a7f6c 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Input-as-filter-after-mouse-interactions-1-chromium-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Input-as-filter-after-mouse-interactions-1-chromium-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Input-as-filter-after-mouse-interactions-1-firefox-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Input-as-filter-after-mouse-interactions-1-firefox-linux.png index bc4c11a3f8..6209e48b93 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Input-as-filter-after-mouse-interactions-1-firefox-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Input-as-filter-after-mouse-interactions-1-firefox-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Input-as-filter-after-mouse-interactions-1-webkit-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Input-as-filter-after-mouse-interactions-1-webkit-linux.png index ba177db536..b361830e51 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Input-as-filter-after-mouse-interactions-1-webkit-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Input-as-filter-after-mouse-interactions-1-webkit-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Multiselect-as-filter-after-keyboard-interactions-1-chromium-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Multiselect-as-filter-after-keyboard-interactions-1-chromium-linux.png index 5d5e0465f7..5f983e5de4 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Multiselect-as-filter-after-keyboard-interactions-1-chromium-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Multiselect-as-filter-after-keyboard-interactions-1-chromium-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Multiselect-as-filter-after-keyboard-interactions-1-firefox-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Multiselect-as-filter-after-keyboard-interactions-1-firefox-linux.png index db75dcb8b5..bc20308d53 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Multiselect-as-filter-after-keyboard-interactions-1-firefox-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Multiselect-as-filter-after-keyboard-interactions-1-firefox-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Multiselect-as-filter-after-keyboard-interactions-1-webkit-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Multiselect-as-filter-after-keyboard-interactions-1-webkit-linux.png index 52ad965346..5732bf7ef2 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Multiselect-as-filter-after-keyboard-interactions-1-webkit-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Multiselect-as-filter-after-keyboard-interactions-1-webkit-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-range-as-filter-after-mouse-interactions-1-chromium-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-range-as-filter-after-mouse-interactions-1-chromium-linux.png index f6c4822e73..3a6806f021 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-range-as-filter-after-mouse-interactions-1-chromium-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-range-as-filter-after-mouse-interactions-1-chromium-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-range-as-filter-after-mouse-interactions-1-firefox-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-range-as-filter-after-mouse-interactions-1-firefox-linux.png index 321e5a30aa..02b592534d 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-range-as-filter-after-mouse-interactions-1-firefox-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-range-as-filter-after-mouse-interactions-1-firefox-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-range-as-filter-after-mouse-interactions-1-webkit-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-range-as-filter-after-mouse-interactions-1-webkit-linux.png index ff3af8c766..8271db36e4 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-range-as-filter-after-mouse-interactions-1-webkit-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-range-as-filter-after-mouse-interactions-1-webkit-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-1-chromium-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-1-chromium-linux.png index bc570278f8..2e401b22e2 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-1-chromium-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-1-chromium-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-1-firefox-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-1-firefox-linux.png index b6ef9741e4..bcd58a4ef2 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-1-firefox-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-1-firefox-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-1-webkit-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-1-webkit-linux.png index 7300b7e776..0c24a673a7 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-1-webkit-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-1-webkit-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-2-chromium-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-2-chromium-linux.png index 846f7db7bd..6a3e97b3bc 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-2-chromium-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-2-chromium-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-2-firefox-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-2-firefox-linux.png index 93fd967cf7..b4ea971228 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-2-firefox-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-2-firefox-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-2-webkit-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-2-webkit-linux.png index e6dffea93d..901fa52c22 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-2-webkit-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-Select-with-search-as-filter-after-keyboard-interactions-2-webkit-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-1-chromium-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-1-chromium-linux.png index fe8d7a8fac..310fc1745b 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-1-chromium-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-1-chromium-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-1-firefox-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-1-firefox-linux.png index dc5ac39436..30456c376d 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-1-firefox-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-1-firefox-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-1-webkit-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-1-webkit-linux.png index 2d55cd93e5..11e694e242 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-1-webkit-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-1-webkit-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-2-chromium-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-2-chromium-linux.png index 660644e8c8..0663e589eb 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-2-chromium-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-2-chromium-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-2-firefox-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-2-firefox-linux.png index 937721d2c0..a5efa20049 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-2-firefox-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-2-firefox-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-2-webkit-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-2-webkit-linux.png index d1671ef2ca..773c46302f 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-2-webkit-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-keyboard-interactions-2-webkit-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-1-chromium-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-1-chromium-linux.png index 9523375781..58a71946ab 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-1-chromium-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-1-chromium-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-1-firefox-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-1-firefox-linux.png index 2fbc8d63d6..f91574d5e7 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-1-firefox-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-1-firefox-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-1-webkit-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-1-webkit-linux.png index 034ca64af4..3d56021071 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-1-webkit-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-1-webkit-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-2-chromium-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-2-chromium-linux.png index 953caf1aa8..d33569218e 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-2-chromium-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-2-chromium-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-2-firefox-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-2-firefox-linux.png index a94e0bd710..ffccd45068 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-2-firefox-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-2-firefox-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-2-webkit-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-2-webkit-linux.png index f849c2ea4b..441922ea86 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-2-webkit-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-2-webkit-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-3-chromium-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-3-chromium-linux.png index 44170dd59b..9276844c8a 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-3-chromium-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-3-chromium-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-3-firefox-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-3-firefox-linux.png index 764d1b57cb..5f8a36a4c6 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-3-firefox-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-3-firefox-linux.png differ diff --git a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-3-webkit-linux.png b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-3-webkit-linux.png index c605cdc2dd..5b65464007 100644 Binary files a/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-3-webkit-linux.png and b/semcore/add-filter/__tests__/add-filter.browser-test.tsx-snapshots/-visual-Verify-base-example-with-selects-after-mouse-interactions-3-webkit-linux.png differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx b/semcore/badge/__tests__/badge.browser-test.tsx index 172489dae0..397a2935c3 100644 --- a/semcore/badge/__tests__/badge.browser-test.tsx +++ b/semcore/badge/__tests__/badge.browser-test.tsx @@ -7,44 +7,7 @@ import { TAG } from '@semcore/testing-utils/shared/tags'; Visual states, hover and focus styles, paddings, margins, and snapshots. ===================================================== */ test.describe(`${TAG.VISUAL}`, () => { - const variables = [ - { bg: undefined, color: undefined }, - { bg: 'cyan', color: undefined }, - { bg: undefined, color: 'text-primary' }, - { bg: 'mist', color: 'gray20' }, - { bg: 'red', color: 'text-primary-invert' }, - { bg: 'orange', color: 'green' }, - { bg: 'green', color: 'white' }, - { bg: 'white', color: 'text-primary' }, - ]; - - variables.forEach((item) => { - test(`Verify bg=${item.bg} and color=${item.color}`, { - tag: [TAG.PRIORITY_HIGH, - '@badge'], - }, async ({ page }) => { - await loadPage(page, 'stories/components/badge/tests/examples/badge-bg-colors.tsx', 'en', item); - await expect(page.locator('[data-ui-name="Badge"]')).toHaveScreenshot(); - }); - }); - - const variableswithBox = [ - { bg: undefined, color: undefined, w: 100, h: 20 }, - { bg: undefined, color: 'text-primary', h: 30 }, - { bg: 'green', color: 'white', w: 200 }, - ]; - - variableswithBox.forEach((item) => { - test(`Verify bg=${item.bg} and color=${item.color} with w=${item.w} h=${item.h}`, { - tag: [TAG.PRIORITY_MEDIUM, - '@badge'], - }, async ({ page }) => { - await loadPage(page, 'stories/components/badge/tests/examples/badge-bg-colors.tsx', 'en', item); - await expect(page.locator('[data-ui-name="Badge"]')).toHaveScreenshot(); - }); - }); - - test(`Verify all main types and inverted styles`, { + test(`Verify all main types, invert and light styles`, { tag: [TAG.PRIORITY_HIGH, '@badge'], }, async ({ page }) => { diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-and-inverted-styles-1-chromium-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-and-inverted-styles-1-chromium-linux.png deleted file mode 100644 index 7dfbd5ff3a..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-and-inverted-styles-1-chromium-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-and-inverted-styles-1-firefox-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-and-inverted-styles-1-firefox-linux.png deleted file mode 100644 index 633b8631d4..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-and-inverted-styles-1-firefox-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-and-inverted-styles-1-webkit-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-and-inverted-styles-1-webkit-linux.png deleted file mode 100644 index 500230a73f..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-and-inverted-styles-1-webkit-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-invert-and-light-styles-1-chromium-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-invert-and-light-styles-1-chromium-linux.png new file mode 100644 index 0000000000..cad3a77ac0 Binary files /dev/null and b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-invert-and-light-styles-1-chromium-linux.png differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-invert-and-light-styles-1-firefox-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-invert-and-light-styles-1-firefox-linux.png new file mode 100644 index 0000000000..7df1ad75ef Binary files /dev/null and b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-invert-and-light-styles-1-firefox-linux.png differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-invert-and-light-styles-1-webkit-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-invert-and-light-styles-1-webkit-linux.png new file mode 100644 index 0000000000..fff4c7c820 Binary files /dev/null and b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-all-main-types-invert-and-light-styles-1-webkit-linux.png differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-cyan-and-color-undefined-1-chromium-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-cyan-and-color-undefined-1-chromium-linux.png deleted file mode 100644 index cc06dc1fc6..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-cyan-and-color-undefined-1-chromium-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-cyan-and-color-undefined-1-firefox-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-cyan-and-color-undefined-1-firefox-linux.png deleted file mode 100644 index ba2a95a24b..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-cyan-and-color-undefined-1-firefox-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-cyan-and-color-undefined-1-webkit-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-cyan-and-color-undefined-1-webkit-linux.png deleted file mode 100644 index 3454d52c82..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-cyan-and-color-undefined-1-webkit-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-1-chromium-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-1-chromium-linux.png deleted file mode 100644 index b6e55cd39d..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-1-chromium-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-1-firefox-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-1-firefox-linux.png deleted file mode 100644 index e072cc27e5..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-1-firefox-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-1-webkit-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-1-webkit-linux.png deleted file mode 100644 index 08f7d42665..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-1-webkit-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-with-w-200-h-undefined-1-chromium-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-with-w-200-h-undefined-1-chromium-linux.png deleted file mode 100644 index 5e1371eeab..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-with-w-200-h-undefined-1-chromium-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-with-w-200-h-undefined-1-firefox-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-with-w-200-h-undefined-1-firefox-linux.png deleted file mode 100644 index c715922c57..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-with-w-200-h-undefined-1-firefox-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-with-w-200-h-undefined-1-webkit-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-with-w-200-h-undefined-1-webkit-linux.png deleted file mode 100644 index 97531f80d3..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-green-and-color-white-with-w-200-h-undefined-1-webkit-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-mist-and-color-gray20-1-chromium-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-mist-and-color-gray20-1-chromium-linux.png deleted file mode 100644 index f8ed127813..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-mist-and-color-gray20-1-chromium-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-mist-and-color-gray20-1-firefox-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-mist-and-color-gray20-1-firefox-linux.png deleted file mode 100644 index d0b5a77fa8..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-mist-and-color-gray20-1-firefox-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-mist-and-color-gray20-1-webkit-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-mist-and-color-gray20-1-webkit-linux.png deleted file mode 100644 index 6e4a7a9b60..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-mist-and-color-gray20-1-webkit-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-orange-and-color-green-1-chromium-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-orange-and-color-green-1-chromium-linux.png deleted file mode 100644 index d215ed299e..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-orange-and-color-green-1-chromium-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-orange-and-color-green-1-firefox-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-orange-and-color-green-1-firefox-linux.png deleted file mode 100644 index 680258fd89..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-orange-and-color-green-1-firefox-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-orange-and-color-green-1-webkit-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-orange-and-color-green-1-webkit-linux.png deleted file mode 100644 index 5d38996b12..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-orange-and-color-green-1-webkit-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-red-and-color-text-primary-invert-1-chromium-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-red-and-color-text-primary-invert-1-chromium-linux.png deleted file mode 100644 index e6256ad213..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-red-and-color-text-primary-invert-1-chromium-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-red-and-color-text-primary-invert-1-firefox-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-red-and-color-text-primary-invert-1-firefox-linux.png deleted file mode 100644 index 3f01312f92..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-red-and-color-text-primary-invert-1-firefox-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-red-and-color-text-primary-invert-1-webkit-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-red-and-color-text-primary-invert-1-webkit-linux.png deleted file mode 100644 index f417a5d656..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-red-and-color-text-primary-invert-1-webkit-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-1-chromium-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-1-chromium-linux.png deleted file mode 100644 index 4f0e731cfb..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-1-chromium-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-1-firefox-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-1-firefox-linux.png deleted file mode 100644 index ae2631374c..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-1-firefox-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-1-webkit-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-1-webkit-linux.png deleted file mode 100644 index 9a0aabd45d..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-1-webkit-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-with-w-undefined-h-30-1-chromium-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-with-w-undefined-h-30-1-chromium-linux.png deleted file mode 100644 index 355b9b8061..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-with-w-undefined-h-30-1-chromium-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-with-w-undefined-h-30-1-firefox-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-with-w-undefined-h-30-1-firefox-linux.png deleted file mode 100644 index b5fc1854f5..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-with-w-undefined-h-30-1-firefox-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-with-w-undefined-h-30-1-webkit-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-with-w-undefined-h-30-1-webkit-linux.png deleted file mode 100644 index b9831fd70e..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-text-primary-with-w-undefined-h-30-1-webkit-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-1-chromium-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-1-chromium-linux.png deleted file mode 100644 index ab78c9eeaa..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-1-chromium-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-1-firefox-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-1-firefox-linux.png deleted file mode 100644 index 5ec49b789d..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-1-firefox-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-1-webkit-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-1-webkit-linux.png deleted file mode 100644 index 679a58b2b7..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-1-webkit-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-with-w-100-h-20-1-chromium-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-with-w-100-h-20-1-chromium-linux.png deleted file mode 100644 index 5d82494bb5..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-with-w-100-h-20-1-chromium-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-with-w-100-h-20-1-firefox-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-with-w-100-h-20-1-firefox-linux.png deleted file mode 100644 index 389935a0ab..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-with-w-100-h-20-1-firefox-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-with-w-100-h-20-1-webkit-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-with-w-100-h-20-1-webkit-linux.png deleted file mode 100644 index cd395b4c60..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-undefined-and-color-undefined-with-w-100-h-20-1-webkit-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-white-and-color-text-primary-1-chromium-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-white-and-color-text-primary-1-chromium-linux.png deleted file mode 100644 index fd81d20feb..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-white-and-color-text-primary-1-chromium-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-white-and-color-text-primary-1-firefox-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-white-and-color-text-primary-1-firefox-linux.png deleted file mode 100644 index 80ead3ef18..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-white-and-color-text-primary-1-firefox-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-white-and-color-text-primary-1-webkit-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-white-and-color-text-primary-1-webkit-linux.png deleted file mode 100644 index 7b1b31e44b..0000000000 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-bg-white-and-color-text-primary-1-webkit-linux.png and /dev/null differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-localizations-1-chromium-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-localizations-1-chromium-linux.png index 3288a1852f..f1778fe0c9 100644 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-localizations-1-chromium-linux.png and b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-localizations-1-chromium-linux.png differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-localizations-1-firefox-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-localizations-1-firefox-linux.png index 0da538329e..9c1f6e4f75 100644 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-localizations-1-firefox-linux.png and b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-localizations-1-firefox-linux.png differ diff --git a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-localizations-1-webkit-linux.png b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-localizations-1-webkit-linux.png index 14118b9c63..3b0bfd783f 100644 Binary files a/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-localizations-1-webkit-linux.png and b/semcore/badge/__tests__/badge.browser-test.tsx-snapshots/-visual-Verify-localizations-1-webkit-linux.png differ diff --git a/semcore/badge/__tests__/index.test.tsx b/semcore/badge/__tests__/index.test.tsx index 591fe08a93..524197af75 100644 --- a/semcore/badge/__tests__/index.test.tsx +++ b/semcore/badge/__tests__/index.test.tsx @@ -1,7 +1,7 @@ import { extractUIName } from '@semcore/testing-utils/shared/extractUINameTree.ts'; import { runDependencyCheckTests } from '@semcore/testing-utils/shared-tests'; import { render, cleanup } from '@semcore/testing-utils/testing-library'; -import { describe, test, expect, beforeEach, vi, afterEach } from '@semcore/testing-utils/vitest'; +import { describe, test, expect, beforeEach } from '@semcore/testing-utils/vitest'; import React from 'react'; import Badge from '../src'; @@ -22,18 +22,3 @@ describe('Badge', () => { expect(result).toMatchSnapshot(); }); }); - -describe('Badge backward compatibility (deprecated props)', () => { - beforeEach(cleanup); - - test('Should support deprecated children prop', () => { - const { getByText } = render(Custom Text); - expect(getByText('Custom Text')).toBeInTheDocument(); - }); - - test('Should prioritize type prop over children', () => { - const { getByText, queryByText } = render(Custom Text); - expect(getByText('admin')).toBeInTheDocument(); - expect(queryByText('Custom Text')).not.toBeInTheDocument(); - }); -}); diff --git a/semcore/badge/src/Badge.tsx b/semcore/badge/src/Badge.tsx index e97c496e35..5e7badb77e 100644 --- a/semcore/badge/src/Badge.tsx +++ b/semcore/badge/src/Badge.tsx @@ -3,7 +3,6 @@ import type { Intergalactic } from '@semcore/core'; import { createComponent, Component, Root, sstyled } from '@semcore/core'; import i18nEnhance from '@semcore/core/lib/utils/enhances/i18nEnhance'; import resolveColorEnhance from '@semcore/core/lib/utils/enhances/resolveColorEnhance'; -import logger from '@semcore/core/lib/utils/logger'; import React from 'react'; import type { NSBadge } from './Badge.type'; @@ -12,29 +11,26 @@ import { localizedMessages } from './translations/__intergalactic-dynamic-locale class RootBadge extends Component< Intergalactic.InternalTypings.InferComponentProps, - typeof RootBadge.enhance + typeof RootBadge.enhance, + never, + {}, + {}, + NSBadge.DefaultProps > { static displayName = 'Badge'; static style = style; static enhance = [resolveColorEnhance(), i18nEnhance(localizedMessages)] as const; - - componentDidMount() { - logger.warn( - !this.asProps.type, - `'type' will be required property in the next major release. Set it please.`, - this.asProps['data-ui-name'] || RootBadge.displayName, - ); - } + static defaultProps: NSBadge.DefaultProps = { + theme: 'default', + }; render() { const SBadge = Root; - const { styles, color, bg, resolveColor, type, children } = this.asProps; - const resolvedBg = bg ? resolveColor(bg) : this.resolveBg(); - const resolvedColor = color ? resolveColor(color) : this.resolveTextColor(); + const { styles, type } = this.asProps; return sstyled(styles)( - - {type !== undefined ? this.typedChildren(type) : children} + + {this.typedChildren(type)} , ); } @@ -46,50 +42,6 @@ class RootBadge extends Component< return getI18nText(`Badge.${badgeName}`); } - - private resolveTextColor(): string | undefined { - const { type, inverted, resolveColor } = this.asProps; - - if (type === 'unavailable' && !inverted) { - return resolveColor('--intergalactic-text-secondary'); - } - - return undefined; - } - - private resolveBg(): string { - // todo Brauer Ilia - removed default 'soon' type in 18th major - const { type = 'soon', inverted, resolveColor } = this.asProps; - - if (inverted) { - return resolveColor('--gray-white'); - } - - switch (type) { - case 'admin': { - return resolveColor('--blue-400'); - } - case 'alpha': { - return resolveColor('--red-400'); - } - case 'beta': { - return resolveColor('--orange-400'); - } - case 'new': { - return resolveColor('--green-400'); - } - case 'soon': { - return resolveColor('--gray-400'); - } - case 'unavailable': { - return resolveColor('--gray-100'); - } - default: { - const t: never = type; - throw new Error(`Type can't be "${t}"`); - } - } - } } /** diff --git a/semcore/badge/src/Badge.type.ts b/semcore/badge/src/Badge.type.ts index d327ba5e0c..56a1a73fdd 100644 --- a/semcore/badge/src/Badge.type.ts +++ b/semcore/badge/src/Badge.type.ts @@ -12,32 +12,20 @@ declare namespace NSBadge { mx?: BoxProps['mx']; my?: BoxProps['my']; }; + type Theme = 'default' | 'light' | 'invert'; type Props = NSBadge.Margins & { /** * Type of badge. */ - type?: NSBadge.Type; + type: NSBadge.Type; /** - * Flag to render inverted badge. + * Theme of badge. */ - inverted?: boolean; - - /** - * @deprecated. Use just type with predefined texts. You should not use badge with custom text inside. - */ - children?: any; - - /** Fill color - * @deprecated. Use just type property. - * @default gray-400 - * */ - bg?: 'mist' | 'cyan' | 'red' | 'orange' | 'green' | 'white' | string; + theme?: NSBadge.Theme; + }; - /** Text color - * @deprecated. Use just type property. - * @default white - * */ - color?: 'white' | 'gray20' | string; + type DefaultProps = { + theme: 'default'; }; type Component = Intergalactic.Component<'span', Props>; diff --git a/semcore/badge/src/style/badge.shadow.css b/semcore/badge/src/style/badge.shadow.css index 1bb5f69c18..4490e33e73 100644 --- a/semcore/badge/src/style/badge.shadow.css +++ b/semcore/badge/src/style/badge.shadow.css @@ -1,27 +1,75 @@ SBadge { display: inline-block; box-sizing: border-box; - height: var(--intergalactic-fs-200, 14px); - line-height: var(--intergalactic-fs-200, 14px); + height: 16px; + align-content: center; padding: 0 var(--intergalactic-spacing-1x, 4px); - border-radius: var(--intergalactic-badge-rounded, 6px); + border-radius: var(--intergalactic-badge-rounded, 4px); white-space: nowrap; - font-size: var(--intergalactic-fs-50, 10px); + font-size: var(--intergalactic-fs-100, 12px); + line-height: 8px; font-weight: var(--intergalactic-medium, 500); letter-spacing: 0.3px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + color: var(--intergalactic-badge-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); } -SBadge[bg] { - background-color: var(--bg); +SBadge[theme='default'] { + &[type='admin'] { + background-color: var(--intergalactic-badge-accent-admin, oklch(0.58 0.168 278.2)); + } + + &[type='alpha'] { + background-color: var(--intergalactic-badge-accent-alpha, oklch(0.64 0.226 24.5)); + } + + &[type='beta'] { + background-color: var(--intergalactic-badge-accent-beta, oklch(0.74 0.17 72)); + } + + &[type='new'] { + background-color: var(--intergalactic-badge-accent-new, oklch(0.74 0.17 170)); + } + + &[type='soon'] { + background-color: var(--intergalactic-badge-accent-soon, oklch(0.64 0.003 157.8)); + } + + &[type='unavailable'] { + color: var(--intergalactic-badge-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); + background-color: var(--intergalactic-badge-bg-unavailable, oklch(0.97 0.001 180)); + } } -SBadge[inverted] { - color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); +SBadge[theme='invert'] { + color: var(--intergalactic-badge-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + background-color: var(--intergalactic-badge-bg-invert, oklch(0.969 0.057 140 / 0.118)); } -SBadge[color] { - color: var(--color); +SBadge[theme='light'] { + &[type='admin'] { + color: var(--intergalactic-badge-light-admin-text, oklch(0.58 0.168 278.2)); + background-color: var(--intergalactic-badge-light-admin, oklch(0.898 0.054 268.3)); + } + &[type='alpha'] { + color: var(--intergalactic-badge-light-alpha-text, oklch(0.64 0.226 24.5)); + background-color: var(--intergalactic-badge-light-alpha, oklch(0.899 0.069 12.9)); + } + &[type='beta'] { + color: var(--intergalactic-badge-light-beta-text, oklch(0.64 0.16 64)); + background-color: var(--intergalactic-badge-light-beta, oklch(0.9 0.13 92)); + } + &[type='new'] { + color: var(--intergalactic-badge-light-new-text, oklch(0.64 0.161 170)); + background-color: var(--intergalactic-badge-light-new, oklch(0.9 0.11 175)); + } + &[type='soon'] { + color: var(--intergalactic-badge-light-soon-text, oklch(0.46 0.004 144.4)); + background-color: var(--intergalactic-badge-light-soon, oklch(0.9 0.002 177)); + } + &[type='unavailable'] { + color: var(--intergalactic-badge-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); + background-color: var(--intergalactic-badge-bg-unavailable, oklch(0.97 0.001 180)); + } } diff --git a/semcore/base-components/__tests__/breakpoints.browser-test.tsx b/semcore/base-components/__tests__/breakpoints.browser-test.tsx index acd20877b5..c1aab4983c 100644 --- a/semcore/base-components/__tests__/breakpoints.browser-test.tsx +++ b/semcore/base-components/__tests__/breakpoints.browser-test.tsx @@ -10,10 +10,10 @@ We verify states, visibility, and attributes. test.describe(`${TAG.FUNCTIONAL}`, () => { test.describe('Simple use', () => { const breakpoints = [ - { width: 320, expectedSize: 'L', expectedHeight: '40px' }, - { width: 768, expectedSize: 'M', expectedHeight: '28px' }, - { width: 1200, expectedSize: 'M', expectedHeight: '28px' }, - { width: 1920, expectedSize: 'M', expectedHeight: '28px' }, + { width: 320, expectedSize: 'L', expectedHeight: '44px' }, + { width: 768, expectedSize: 'M', expectedHeight: '32px' }, + { width: 1200, expectedSize: 'M', expectedHeight: '32px' }, + { width: 1920, expectedSize: 'M', expectedHeight: '32px' }, ]; breakpoints.forEach(({ width, expectedSize, expectedHeight }) => { @@ -40,10 +40,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test.describe('Manual control', () => { const breakpoints = [ - { width: 320, expectedSize: 'L', expectedHeight: '40px' }, - { width: 768, expectedSize: 'M', expectedHeight: '28px' }, - { width: 1200, expectedSize: 'M', expectedHeight: '28px' }, - { width: 1920, expectedSize: 'M', expectedHeight: '28px' }, + { width: 320, expectedSize: 'L', expectedHeight: '44px' }, + { width: 768, expectedSize: 'M', expectedHeight: '32px' }, + { width: 1200, expectedSize: 'M', expectedHeight: '32px' }, + { width: 1920, expectedSize: 'M', expectedHeight: '32px' }, ]; breakpoints.forEach(({ width, expectedSize, expectedHeight }) => { diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx b/semcore/base-components/__tests__/ellipsis.browser-test.tsx index 892f4acc02..896848dbac 100644 --- a/semcore/base-components/__tests__/ellipsis.browser-test.tsx +++ b/semcore/base-components/__tests__/ellipsis.browser-test.tsx @@ -5,6 +5,11 @@ import { TAG } from '@semcore/testing-utils/shared/tags'; export const locators = { link: (page: Page) => page.getByRole('link'), + linkText: (page: Page) => { + const link = locators.link(page); + + return link.locator('[data-ui-name="Link.Text"]'); + }, text: (page: Page) => page.locator('[data-ui-name="Text"]'), hint: (page: Page) => page.locator('[data-ui-name="Hint"]'), }; @@ -27,6 +32,7 @@ test.describe(`${TAG.VISUAL}`, () => { { ellipsis: { 'ellipsis:cropPosition': 'middle', 'ellipsis:lastRequiredSymbols': 2 }, size: 100 }, { ellipsis: { 'ellipsis:cropPosition': 'middle', 'ellipsis:lastRequiredSymbols': 7 }, size: 200 }, { ellipsis: { 'ellipsis:cropPosition': 'middle' }, size: 300 }, + { ellipsis: { 'ellipsis:cropPosition': 'middle' }, size: 350 }, { ellipsis: { 'ellipsis:cropPosition': 'middle' }, size: 400 }, { ellipsis: { 'ellipsis:cropPosition': 'middle' }, size: 500 }, { ellipsis: { 'ellipsis:cropPosition': 'middle' }, size: 600 }, @@ -237,7 +243,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { await loadPage(page, 'stories/components/base-components/ellipsis/tests/examples/async_init.tsx', 'en'); - const textElement = locators.link(page); + const textElement = locators.linkText(page); await expect(textElement).toHaveText(''); await expect(textElement).toHaveText(link, { timeout: 1000 }); diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--0f158--ellipsis-cropPosition-middle-size-700-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--0f158--ellipsis-cropPosition-middle-size-700-1-chromium-linux.png index 66a119ae30..6f8701275a 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--0f158--ellipsis-cropPosition-middle-size-700-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--0f158--ellipsis-cropPosition-middle-size-700-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--0f158--ellipsis-cropPosition-middle-size-700-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--0f158--ellipsis-cropPosition-middle-size-700-1-firefox-linux.png index a4e7d62207..94d4913795 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--0f158--ellipsis-cropPosition-middle-size-700-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--0f158--ellipsis-cropPosition-middle-size-700-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--0f158--ellipsis-cropPosition-middle-size-700-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--0f158--ellipsis-cropPosition-middle-size-700-1-webkit-linux.png index efd348b369..2765771de1 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--0f158--ellipsis-cropPosition-middle-size-700-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--0f158--ellipsis-cropPosition-middle-size-700-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1af0b--ellipsis-cropPosition-middle-size-800-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1af0b--ellipsis-cropPosition-middle-size-800-1-chromium-linux.png index dccb515818..cc8b469ef5 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1af0b--ellipsis-cropPosition-middle-size-800-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1af0b--ellipsis-cropPosition-middle-size-800-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1af0b--ellipsis-cropPosition-middle-size-800-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1af0b--ellipsis-cropPosition-middle-size-800-1-firefox-linux.png index 37b6f9f536..a3d7c10db8 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1af0b--ellipsis-cropPosition-middle-size-800-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1af0b--ellipsis-cropPosition-middle-size-800-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1af0b--ellipsis-cropPosition-middle-size-800-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1af0b--ellipsis-cropPosition-middle-size-800-1-webkit-linux.png index 8d0ce1ba0c..8f2ce45748 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1af0b--ellipsis-cropPosition-middle-size-800-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1af0b--ellipsis-cropPosition-middle-size-800-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1f7e5--ellipsis-cropPosition-middle-size-350-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1f7e5--ellipsis-cropPosition-middle-size-350-1-chromium-linux.png new file mode 100644 index 0000000000..13552bea04 Binary files /dev/null and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1f7e5--ellipsis-cropPosition-middle-size-350-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1f7e5--ellipsis-cropPosition-middle-size-350-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1f7e5--ellipsis-cropPosition-middle-size-350-1-firefox-linux.png new file mode 100644 index 0000000000..2459bd44ac Binary files /dev/null and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1f7e5--ellipsis-cropPosition-middle-size-350-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1f7e5--ellipsis-cropPosition-middle-size-350-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1f7e5--ellipsis-cropPosition-middle-size-350-1-webkit-linux.png new file mode 100644 index 0000000000..3f50916728 Binary files /dev/null and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--1f7e5--ellipsis-cropPosition-middle-size-350-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--22bda-s-ellipsis-cropPosition-end-size-400-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--22bda-s-ellipsis-cropPosition-end-size-400-1-chromium-linux.png index 3e3d8291c4..e172285f3e 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--22bda-s-ellipsis-cropPosition-end-size-400-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--22bda-s-ellipsis-cropPosition-end-size-400-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--22bda-s-ellipsis-cropPosition-end-size-400-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--22bda-s-ellipsis-cropPosition-end-size-400-1-firefox-linux.png index e2b9777b19..e60250f3b8 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--22bda-s-ellipsis-cropPosition-end-size-400-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--22bda-s-ellipsis-cropPosition-end-size-400-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--22bda-s-ellipsis-cropPosition-end-size-400-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--22bda-s-ellipsis-cropPosition-end-size-400-1-webkit-linux.png index 3f01e84b64..a1b00d7ce3 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--22bda-s-ellipsis-cropPosition-end-size-400-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--22bda-s-ellipsis-cropPosition-end-size-400-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--3224c-s-ellipsis-cropPosition-end-size-200-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--3224c-s-ellipsis-cropPosition-end-size-200-1-chromium-linux.png index 585f02cb6f..f396293eac 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--3224c-s-ellipsis-cropPosition-end-size-200-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--3224c-s-ellipsis-cropPosition-end-size-200-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--3224c-s-ellipsis-cropPosition-end-size-200-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--3224c-s-ellipsis-cropPosition-end-size-200-1-firefox-linux.png index 14affe88b8..52257de38e 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--3224c-s-ellipsis-cropPosition-end-size-200-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--3224c-s-ellipsis-cropPosition-end-size-200-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--3224c-s-ellipsis-cropPosition-end-size-200-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--3224c-s-ellipsis-cropPosition-end-size-200-1-webkit-linux.png index aa519d26a3..89dc38c774 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--3224c-s-ellipsis-cropPosition-end-size-200-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--3224c-s-ellipsis-cropPosition-end-size-200-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--74ca6--ellipsis-lastRequiredSymbols-2-size-100-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--74ca6--ellipsis-lastRequiredSymbols-2-size-100-1-chromium-linux.png index 7f883e8325..8eeaf96f5b 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--74ca6--ellipsis-lastRequiredSymbols-2-size-100-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--74ca6--ellipsis-lastRequiredSymbols-2-size-100-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--74ca6--ellipsis-lastRequiredSymbols-2-size-100-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--74ca6--ellipsis-lastRequiredSymbols-2-size-100-1-firefox-linux.png index f39e6e1806..523856accd 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--74ca6--ellipsis-lastRequiredSymbols-2-size-100-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--74ca6--ellipsis-lastRequiredSymbols-2-size-100-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--74ca6--ellipsis-lastRequiredSymbols-2-size-100-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--74ca6--ellipsis-lastRequiredSymbols-2-size-100-1-webkit-linux.png index 3b3c951097..1f1702bf55 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--74ca6--ellipsis-lastRequiredSymbols-2-size-100-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--74ca6--ellipsis-lastRequiredSymbols-2-size-100-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--bde02--ellipsis-cropPosition-middle-size-500-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--bde02--ellipsis-cropPosition-middle-size-500-1-chromium-linux.png index 9c2c9d0f6a..400be8cdd5 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--bde02--ellipsis-cropPosition-middle-size-500-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--bde02--ellipsis-cropPosition-middle-size-500-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--bde02--ellipsis-cropPosition-middle-size-500-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--bde02--ellipsis-cropPosition-middle-size-500-1-firefox-linux.png index 2b88aa1346..c9e390b35a 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--bde02--ellipsis-cropPosition-middle-size-500-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--bde02--ellipsis-cropPosition-middle-size-500-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--bde02--ellipsis-cropPosition-middle-size-500-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--bde02--ellipsis-cropPosition-middle-size-500-1-webkit-linux.png index fe1eb88026..32bbfbf978 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--bde02--ellipsis-cropPosition-middle-size-500-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--bde02--ellipsis-cropPosition-middle-size-500-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--be564--ellipsis-cropPosition-middle-size-600-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--be564--ellipsis-cropPosition-middle-size-600-1-chromium-linux.png index 52091dda38..cde3a32be6 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--be564--ellipsis-cropPosition-middle-size-600-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--be564--ellipsis-cropPosition-middle-size-600-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--be564--ellipsis-cropPosition-middle-size-600-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--be564--ellipsis-cropPosition-middle-size-600-1-firefox-linux.png index 68777869ec..831970e23b 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--be564--ellipsis-cropPosition-middle-size-600-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--be564--ellipsis-cropPosition-middle-size-600-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--be564--ellipsis-cropPosition-middle-size-600-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--be564--ellipsis-cropPosition-middle-size-600-1-webkit-linux.png index acff4a9f51..40f108a819 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--be564--ellipsis-cropPosition-middle-size-600-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--be564--ellipsis-cropPosition-middle-size-600-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--c7bd0--ellipsis-cropPosition-middle-size-300-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--c7bd0--ellipsis-cropPosition-middle-size-300-1-chromium-linux.png index 4fceaf65d3..33460b8da9 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--c7bd0--ellipsis-cropPosition-middle-size-300-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--c7bd0--ellipsis-cropPosition-middle-size-300-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--c7bd0--ellipsis-cropPosition-middle-size-300-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--c7bd0--ellipsis-cropPosition-middle-size-300-1-firefox-linux.png index b3be6a5067..beca2c9e50 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--c7bd0--ellipsis-cropPosition-middle-size-300-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--c7bd0--ellipsis-cropPosition-middle-size-300-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--c7bd0--ellipsis-cropPosition-middle-size-300-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--c7bd0--ellipsis-cropPosition-middle-size-300-1-webkit-linux.png index c1ddc1e343..4b73cf2e34 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--c7bd0--ellipsis-cropPosition-middle-size-300-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--c7bd0--ellipsis-cropPosition-middle-size-300-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--cc2c5-s-ellipsis-cropPosition-end-size-600-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--cc2c5-s-ellipsis-cropPosition-end-size-600-1-chromium-linux.png index b58b7b47ea..a5b1e12e88 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--cc2c5-s-ellipsis-cropPosition-end-size-600-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--cc2c5-s-ellipsis-cropPosition-end-size-600-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--cc2c5-s-ellipsis-cropPosition-end-size-600-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--cc2c5-s-ellipsis-cropPosition-end-size-600-1-firefox-linux.png index 1d1e86d7bf..ea5064c2cc 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--cc2c5-s-ellipsis-cropPosition-end-size-600-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--cc2c5-s-ellipsis-cropPosition-end-size-600-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--cc2c5-s-ellipsis-cropPosition-end-size-600-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--cc2c5-s-ellipsis-cropPosition-end-size-600-1-webkit-linux.png index 8e51394bbc..08d727a943 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--cc2c5-s-ellipsis-cropPosition-end-size-600-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--cc2c5-s-ellipsis-cropPosition-end-size-600-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--d8346--ellipsis-cropPosition-middle-size-400-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--d8346--ellipsis-cropPosition-middle-size-400-1-chromium-linux.png index 4f84fc69a4..023a273cd1 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--d8346--ellipsis-cropPosition-middle-size-400-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--d8346--ellipsis-cropPosition-middle-size-400-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--d8346--ellipsis-cropPosition-middle-size-400-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--d8346--ellipsis-cropPosition-middle-size-400-1-firefox-linux.png index fc7ca9841c..4c156d77c5 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--d8346--ellipsis-cropPosition-middle-size-400-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--d8346--ellipsis-cropPosition-middle-size-400-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--d8346--ellipsis-cropPosition-middle-size-400-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--d8346--ellipsis-cropPosition-middle-size-400-1-webkit-linux.png index 1045a950da..fb25f7b680 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--d8346--ellipsis-cropPosition-middle-size-400-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--d8346--ellipsis-cropPosition-middle-size-400-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fd3c0--ellipsis-lastRequiredSymbols-7-size-200-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fd3c0--ellipsis-lastRequiredSymbols-7-size-200-1-chromium-linux.png index bae9d2012f..04c546ed0b 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fd3c0--ellipsis-lastRequiredSymbols-7-size-200-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fd3c0--ellipsis-lastRequiredSymbols-7-size-200-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fd3c0--ellipsis-lastRequiredSymbols-7-size-200-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fd3c0--ellipsis-lastRequiredSymbols-7-size-200-1-firefox-linux.png index c8a91d2fea..8ed503200d 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fd3c0--ellipsis-lastRequiredSymbols-7-size-200-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fd3c0--ellipsis-lastRequiredSymbols-7-size-200-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fd3c0--ellipsis-lastRequiredSymbols-7-size-200-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fd3c0--ellipsis-lastRequiredSymbols-7-size-200-1-webkit-linux.png index af48e1e0c6..7ba613bfec 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fd3c0--ellipsis-lastRequiredSymbols-7-size-200-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fd3c0--ellipsis-lastRequiredSymbols-7-size-200-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fee6b-s-ellipsis-cropPosition-end-size-800-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fee6b-s-ellipsis-cropPosition-end-size-800-1-chromium-linux.png index 1976018f33..6bf44be569 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fee6b-s-ellipsis-cropPosition-end-size-800-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fee6b-s-ellipsis-cropPosition-end-size-800-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fee6b-s-ellipsis-cropPosition-end-size-800-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fee6b-s-ellipsis-cropPosition-end-size-800-1-firefox-linux.png index 2e455ed648..4117a77f27 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fee6b-s-ellipsis-cropPosition-end-size-800-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fee6b-s-ellipsis-cropPosition-end-size-800-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fee6b-s-ellipsis-cropPosition-end-size-800-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fee6b-s-ellipsis-cropPosition-end-size-800-1-webkit-linux.png index b9b58c558a..2fa3ba0be4 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fee6b-s-ellipsis-cropPosition-end-size-800-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on--fee6b-s-ellipsis-cropPosition-end-size-800-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-100-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-100-1-chromium-linux.png index 890d4a0218..d940a244f4 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-100-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-100-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-100-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-100-1-firefox-linux.png index 17cc6799e9..79d9908fbd 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-100-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-100-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-100-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-100-1-webkit-linux.png index 3a29c39852..13e1ca5848 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-100-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-100-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-200-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-200-1-chromium-linux.png index 585f02cb6f..f396293eac 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-200-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-200-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-200-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-200-1-firefox-linux.png index 14affe88b8..52257de38e 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-200-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-200-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-200-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-200-1-webkit-linux.png index aa519d26a3..89dc38c774 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-200-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-200-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-500-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-500-1-chromium-linux.png index 9ed99f64e7..8d7c1127e9 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-500-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-500-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-500-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-500-1-firefox-linux.png index 9e169d0b91..08ea69d5b9 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-500-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-500-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-500-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-500-1-webkit-linux.png index 525c3c78d5..dd71c2d8f3 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-500-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-500-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-700-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-700-1-chromium-linux.png index c701998e61..3eacd76a68 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-700-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-700-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-700-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-700-1-firefox-linux.png index 0b649fa018..a51cc09529 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-700-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-700-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-700-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-700-1-webkit-linux.png index 7b7dce6860..d7ddcaa77a 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-700-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Text-with-ellipsis-Verify-ellipsis-on-text-with-ellipsis-true-size-700-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-basic-ellipsis-usage-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-basic-ellipsis-usage-1-chromium-linux.png index 40a5eb6de8..1d6d8b1a6c 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-basic-ellipsis-usage-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-basic-ellipsis-usage-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-basic-ellipsis-usage-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-basic-ellipsis-usage-1-firefox-linux.png index 519f0e4bab..1ce70932cc 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-basic-ellipsis-usage-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-basic-ellipsis-usage-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-basic-ellipsis-usage-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-basic-ellipsis-usage-1-webkit-linux.png index 0ed6069e9f..d03215f1c8 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-basic-ellipsis-usage-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-basic-ellipsis-usage-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-search-highlight-works-well-1-chromium-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-search-highlight-works-well-1-chromium-linux.png index 144c597357..7b9f1bf101 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-search-highlight-works-well-1-chromium-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-search-highlight-works-well-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-search-highlight-works-well-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-search-highlight-works-well-1-firefox-linux.png index ed0a561adc..97da4875bc 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-search-highlight-works-well-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-search-highlight-works-well-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-search-highlight-works-well-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-search-highlight-works-well-1-webkit-linux.png index fc7becffb8..5a41f89952 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-search-highlight-works-well-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-search-highlight-works-well-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx b/semcore/base-components/__tests__/hint.browser-test.tsx index 00786efd7c..c0d36ca53c 100644 --- a/semcore/base-components/__tests__/hint.browser-test.tsx +++ b/semcore/base-components/__tests__/hint.browser-test.tsx @@ -41,7 +41,7 @@ test.describe(`${TAG.VISUAL}`, () => { ]; placementVariants.forEach((variant) => { test(`Verify hint with placement= ${variant.placement}`, { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@hint'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@hint', '@base-components'], }, async ({ page }) => { await loadPage(page, 'stories/components/base-components/hint/tests/examples/base-example-props.tsx', 'en', variant); @@ -60,7 +60,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify hint focus state', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@hint'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@hint', '@base-components'], }, async ({ page }) => { await loadPage(page, 'stories/components/base-components/hint/docs/examples/basic-usage.tsx', 'en'); await page.waitForTimeout(100); @@ -96,7 +96,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify cursor anchoring', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@hint'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@hint', '@base-components'], }, async ({ page }) => { await loadPage(page, 'stories/components/base-components/hint/tests/examples/cursor_anchoring.tsx', 'en'); @@ -116,7 +116,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify word wrapping', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@hint'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@hint', '@base-components'], }, async ({ page }) => { await loadPage(page, 'stories/components/base-components/hint/tests/examples/word-wrap.tsx', 'en'); @@ -143,7 +143,7 @@ We verify states, visibility, and attributes. ===================================================== */ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify hint shows on hover and hides on mouse leave', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@hint'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@hint', '@base-components'], }, async ({ page }) => { await loadPage(page, 'stories/components/base-components/hint/docs/examples/basic-usage.tsx', 'en'); @@ -163,7 +163,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify hint shows on focus and hides on esc', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@hint'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@hint', '@base-components'], }, async ({ page }) => { await loadPage(page, 'stories/components/base-components/hint/docs/examples/basic-usage.tsx', 'en'); @@ -194,7 +194,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify hint hides on blur', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@hint'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@hint', '@base-components'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/base-components/hint/docs/examples/basic-usage.tsx', 'en'); if (browserName == 'firefox') test.skip(); @@ -213,7 +213,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify custom timeout delays', { - tag: [TAG.PRIORITY_MEDIUM, '@hint'], + tag: [TAG.PRIORITY_MEDIUM, '@hint', '@base-components'], }, async ({ page }) => { await loadPage(page, 'stories/components/base-components/hint/tests/examples/base-example-props.tsx', 'en', { timeout: 1000 }); @@ -229,7 +229,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify hint z-index stacking', { - tag: [TAG.PRIORITY_MEDIUM, '@hint'], + tag: [TAG.PRIORITY_MEDIUM, '@hint', '@base-components'], }, async ({ page }) => { await loadPage(page, 'stories/components/base-components/hint/docs/examples/basic-usage.tsx', 'en'); diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-cursor-anchoring-1-chromium-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-cursor-anchoring-1-chromium-linux.png index e6f8625c86..e92b7dde5f 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-cursor-anchoring-1-chromium-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-cursor-anchoring-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-cursor-anchoring-1-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-cursor-anchoring-1-firefox-linux.png index e1944e7c8b..0de34c098a 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-cursor-anchoring-1-firefox-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-cursor-anchoring-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-cursor-anchoring-1-webkit-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-cursor-anchoring-1-webkit-linux.png index 2593d95a16..3001201c2c 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-cursor-anchoring-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-cursor-anchoring-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-1-chromium-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-1-chromium-linux.png index a7d2e002eb..63790e5d37 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-1-chromium-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-1-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-1-firefox-linux.png index 7ef197a7a2..19ae41c5ab 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-1-firefox-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-1-webkit-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-1-webkit-linux.png index 4a80412944..5532d2214f 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-2-chromium-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-2-chromium-linux.png index 7f365ebfba..ddb23445c7 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-2-chromium-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-2-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-2-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-2-firefox-linux.png index 3f5a62031b..95888cc68f 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-2-firefox-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-2-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-2-webkit-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-2-webkit-linux.png index 50ff257f9b..8be8115945 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-2-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-2-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-1-chromium-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-1-chromium-linux.png index e3c83db9f9..caabc471fc 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-1-chromium-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-1-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-1-firefox-linux.png index 61293df5fa..3c05846310 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-1-firefox-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-1-webkit-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-1-webkit-linux.png index 9735e8bc87..09216ca0e4 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-end-1-chromium-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-end-1-chromium-linux.png index 08169a8a5d..541ac4c038 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-end-1-chromium-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-end-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-end-1-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-end-1-firefox-linux.png index 6c18d2bdcd..0a6c69c679 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-end-1-firefox-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-end-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-end-1-webkit-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-end-1-webkit-linux.png index 84375c1a24..91cde92284 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-end-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-end-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-start-1-chromium-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-start-1-chromium-linux.png index 9b87b44f8f..55b6955af9 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-start-1-chromium-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-start-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-start-1-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-start-1-firefox-linux.png index 1a0da20ea6..f4eddafcc0 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-start-1-firefox-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-start-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-start-1-webkit-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-start-1-webkit-linux.png index f91943ed69..403c55fd5f 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-start-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-start-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-1-chromium-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-1-chromium-linux.png index a73c219922..dd7863305e 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-1-chromium-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-1-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-1-firefox-linux.png index c6da87b947..213708fb1f 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-1-firefox-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-1-webkit-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-1-webkit-linux.png index 5e70fc3c6e..598276bc69 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-end-1-chromium-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-end-1-chromium-linux.png index f9baa7e400..e4237b8300 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-end-1-chromium-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-end-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-end-1-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-end-1-firefox-linux.png index 7b7b40dab4..b47952ccfd 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-end-1-firefox-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-end-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-end-1-webkit-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-end-1-webkit-linux.png index 8f643a9ba2..a8636e4e55 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-end-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-end-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-start-1-chromium-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-start-1-chromium-linux.png index 0deb2e2ecb..3f07e1a1e8 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-start-1-chromium-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-start-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-start-1-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-start-1-firefox-linux.png index 97a86b9a63..3cb6a9ef20 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-start-1-firefox-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-start-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-start-1-webkit-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-start-1-webkit-linux.png index 532858763c..26628d92e7 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-start-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-start-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-1-chromium-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-1-chromium-linux.png index c7f8f736e5..52dd273db6 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-1-chromium-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-1-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-1-firefox-linux.png index 9bb1a8b8f8..c7a1a91455 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-1-firefox-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-1-webkit-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-1-webkit-linux.png index 63f0456069..36c1f84276 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-end-1-chromium-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-end-1-chromium-linux.png index 9c0b042bb3..8d5e08650c 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-end-1-chromium-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-end-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-end-1-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-end-1-firefox-linux.png index 3148ef3d67..40e893806b 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-end-1-firefox-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-end-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-end-1-webkit-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-end-1-webkit-linux.png index 7d66748550..99f9d88b9d 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-end-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-end-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-start-1-chromium-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-start-1-chromium-linux.png index 7636012cf5..58effa4fde 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-start-1-chromium-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-start-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-start-1-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-start-1-firefox-linux.png index e8c2538598..e26fb5b62d 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-start-1-firefox-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-start-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-start-1-webkit-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-start-1-webkit-linux.png index e1486fc6b8..504389a817 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-start-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-start-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-1-chromium-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-1-chromium-linux.png index f8efe54c5c..d5a8b40e65 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-1-chromium-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-1-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-1-firefox-linux.png index 434297ac5d..a97cfa4a33 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-1-firefox-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-1-webkit-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-1-webkit-linux.png index 645e166d3a..e0b36b7c89 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-end-1-chromium-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-end-1-chromium-linux.png index a2995df0c7..7d7158f762 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-end-1-chromium-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-end-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-end-1-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-end-1-firefox-linux.png index 8a21ba5922..480206ebd6 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-end-1-firefox-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-end-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-end-1-webkit-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-end-1-webkit-linux.png index 515bd1a4de..e7372fbdac 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-end-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-end-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-start-1-chromium-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-start-1-chromium-linux.png index cca5e49684..2fee36f613 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-start-1-chromium-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-start-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-start-1-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-start-1-firefox-linux.png index 5e8011ab94..6d014edfb2 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-start-1-firefox-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-start-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-start-1-webkit-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-start-1-webkit-linux.png index 30cbf8d80a..71c28035b6 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-start-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-top-start-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-word-wrapping-1-chromium-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-word-wrapping-1-chromium-linux.png index ba88700ef0..74bb175c17 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-word-wrapping-1-chromium-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-word-wrapping-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-word-wrapping-1-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-word-wrapping-1-firefox-linux.png index 32d270fec1..7408042086 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-word-wrapping-1-firefox-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-word-wrapping-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-word-wrapping-1-webkit-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-word-wrapping-1-webkit-linux.png index 2a0266bf64..cf69169fe6 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-word-wrapping-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-word-wrapping-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/-visual-Verify-popper-position-with-OffSet-prop-1-chromium-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/-visual-Verify-popper-position-with-OffSet-prop-1-chromium-linux.png index 67291a6989..0d0331f215 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/-visual-Verify-popper-position-with-OffSet-prop-1-chromium-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/-visual-Verify-popper-position-with-OffSet-prop-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/-visual-Verify-popper-position-with-OffSet-prop-1-firefox-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/-visual-Verify-popper-position-with-OffSet-prop-1-firefox-linux.png index 047de09047..928adf7261 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/-visual-Verify-popper-position-with-OffSet-prop-1-firefox-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/-visual-Verify-popper-position-with-OffSet-prop-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/-visual-Verify-popper-position-with-OffSet-prop-1-webkit-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/-visual-Verify-popper-position-with-OffSet-prop-1-webkit-linux.png index 51b92d1851..de09edf3d2 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/-visual-Verify-popper-position-with-OffSet-prop-1-webkit-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/-visual-Verify-popper-position-with-OffSet-prop-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-chromium-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-chromium-linux.png index 14d94719a9..3841673db1 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-chromium-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-end-chromium-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-end-chromium-linux.png index fbb733239f..1dc82a32f0 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-end-chromium-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-end-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-end-firefox-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-end-firefox-linux.png index 76781292f4..1aad0a4a19 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-end-firefox-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-end-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-end-webkit-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-end-webkit-linux.png index 2b66fb5995..13f03adc25 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-end-webkit-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-end-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-firefox-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-firefox-linux.png index db6a2002f9..e8463e18c0 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-firefox-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-start-chromium-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-start-chromium-linux.png index 260e142d0c..af83520482 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-start-chromium-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-start-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-start-firefox-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-start-firefox-linux.png index 592aa1a036..ad49aec7be 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-start-firefox-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-start-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-start-webkit-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-start-webkit-linux.png index b3f945fdd0..582e666994 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-start-webkit-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-start-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-webkit-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-webkit-linux.png index b7b8b0fc7f..0c5d910c19 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-webkit-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-bottom-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-chromium-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-chromium-linux.png index 2d84ae74ea..1757aa4634 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-chromium-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-end-chromium-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-end-chromium-linux.png index 71829a41fa..c919e6637f 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-end-chromium-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-end-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-end-firefox-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-end-firefox-linux.png index 874030fa90..8d16023aff 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-end-firefox-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-end-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-end-webkit-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-end-webkit-linux.png index 37761dfa09..61ce8e2795 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-end-webkit-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-end-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-firefox-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-firefox-linux.png index bc20dea90a..9a1a52bbbe 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-firefox-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-start-chromium-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-start-chromium-linux.png index 71f2cf6a1c..f6dea576f0 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-start-chromium-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-start-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-start-firefox-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-start-firefox-linux.png index 59640b6bd2..73d5d990a8 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-start-firefox-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-start-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-start-webkit-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-start-webkit-linux.png index 2294d22033..bf352b5f02 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-start-webkit-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-start-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-webkit-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-webkit-linux.png index d9ae4b2e99..e19443b77b 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-webkit-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-left-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-chromium-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-chromium-linux.png index 9909e46041..f34b611b44 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-chromium-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-end-chromium-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-end-chromium-linux.png index 5add0576ad..c1bf432372 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-end-chromium-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-end-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-end-firefox-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-end-firefox-linux.png index 653719feef..505f0a96a9 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-end-firefox-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-end-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-end-webkit-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-end-webkit-linux.png index e2a685d57f..707838ecba 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-end-webkit-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-end-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-firefox-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-firefox-linux.png index 3630fce149..439bbcf070 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-firefox-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-start-chromium-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-start-chromium-linux.png index 795c22dda5..ed62f41ce7 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-start-chromium-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-start-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-start-firefox-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-start-firefox-linux.png index 25a55ece12..562d9d0b01 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-start-firefox-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-start-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-start-webkit-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-start-webkit-linux.png index 4f10106aed..43c5e49c8d 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-start-webkit-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-start-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-webkit-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-webkit-linux.png index ca02a95643..b22401bd69 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-webkit-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-right-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-chromium-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-chromium-linux.png index 7febdc7f12..b447c6840f 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-chromium-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-end-chromium-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-end-chromium-linux.png index ca93183485..cc1e89947a 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-end-chromium-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-end-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-end-firefox-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-end-firefox-linux.png index 38c66e8695..22a169b4a0 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-end-firefox-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-end-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-end-webkit-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-end-webkit-linux.png index bc6b1ebe59..7fbc8eb687 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-end-webkit-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-end-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-firefox-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-firefox-linux.png index 094036587a..1724076764 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-firefox-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-start-chromium-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-start-chromium-linux.png index 2d8053f2fd..51cf404a52 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-start-chromium-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-start-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-start-firefox-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-start-firefox-linux.png index cd07ede9cd..a5b64fc55c 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-start-firefox-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-start-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-start-webkit-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-start-webkit-linux.png index f603227ac7..27b76ec6ac 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-start-webkit-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-start-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-webkit-linux.png b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-webkit-linux.png index ef2c5b9a32..8ab82b7883 100644 Binary files a/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-webkit-linux.png and b/semcore/base-components/__tests__/popper.browser-test.tsx-snapshots/popper-top-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-mouse-scroll-1-firefox-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-mouse-scroll-1-firefox-linux.png index 9a80cf9523..9c7bc39677 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-mouse-scroll-1-firefox-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-mouse-scroll-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-713a6--shadowSize-15-focusRingOffset-0px-Offset-100-1-chromium-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-713a6--shadowSize-15-focusRingOffset-0px-Offset-100-1-chromium-linux.png index 34203bc134..e118ea2c08 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-713a6--shadowSize-15-focusRingOffset-0px-Offset-100-1-chromium-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-713a6--shadowSize-15-focusRingOffset-0px-Offset-100-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-713a6--shadowSize-15-focusRingOffset-0px-Offset-100-1-firefox-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-713a6--shadowSize-15-focusRingOffset-0px-Offset-100-1-firefox-linux.png index ab23603745..5bc36a9a86 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-713a6--shadowSize-15-focusRingOffset-0px-Offset-100-1-firefox-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-713a6--shadowSize-15-focusRingOffset-0px-Offset-100-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-713a6--shadowSize-15-focusRingOffset-0px-Offset-100-1-webkit-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-713a6--shadowSize-15-focusRingOffset-0px-Offset-100-1-webkit-linux.png index 9776fed42b..944bbb2b3f 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-713a6--shadowSize-15-focusRingOffset-0px-Offset-100-1-webkit-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-713a6--shadowSize-15-focusRingOffset-0px-Offset-100-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-adf5b-shadowSize-30-focusRingOffset-40px-Offset-100-1-chromium-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-adf5b-shadowSize-30-focusRingOffset-40px-Offset-100-1-chromium-linux.png index b3977a8454..488912a25a 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-adf5b-shadowSize-30-focusRingOffset-40px-Offset-100-1-chromium-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-adf5b-shadowSize-30-focusRingOffset-40px-Offset-100-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-adf5b-shadowSize-30-focusRingOffset-40px-Offset-100-1-firefox-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-adf5b-shadowSize-30-focusRingOffset-40px-Offset-100-1-firefox-linux.png index 07f6123735..8973e23375 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-adf5b-shadowSize-30-focusRingOffset-40px-Offset-100-1-firefox-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-adf5b-shadowSize-30-focusRingOffset-40px-Offset-100-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-adf5b-shadowSize-30-focusRingOffset-40px-Offset-100-1-webkit-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-adf5b-shadowSize-30-focusRingOffset-40px-Offset-100-1-webkit-linux.png index 7cc959f867..e8fc82844b 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-adf5b-shadowSize-30-focusRingOffset-40px-Offset-100-1-webkit-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-adf5b-shadowSize-30-focusRingOffset-40px-Offset-100-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-ba3f3-ht-shadowSize-25-focusRingOffset-0px-Offset-0-1-chromium-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-ba3f3-ht-shadowSize-25-focusRingOffset-0px-Offset-0-1-chromium-linux.png index edc695ed30..078ff09013 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-ba3f3-ht-shadowSize-25-focusRingOffset-0px-Offset-0-1-chromium-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-ba3f3-ht-shadowSize-25-focusRingOffset-0px-Offset-0-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-ba3f3-ht-shadowSize-25-focusRingOffset-0px-Offset-0-1-firefox-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-ba3f3-ht-shadowSize-25-focusRingOffset-0px-Offset-0-1-firefox-linux.png index faab4ce535..22545ac0a9 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-ba3f3-ht-shadowSize-25-focusRingOffset-0px-Offset-0-1-firefox-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-ba3f3-ht-shadowSize-25-focusRingOffset-0px-Offset-0-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-ba3f3-ht-shadowSize-25-focusRingOffset-0px-Offset-0-1-webkit-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-ba3f3-ht-shadowSize-25-focusRingOffset-0px-Offset-0-1-webkit-linux.png index 0f2b6ce98c..2a6372f29c 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-ba3f3-ht-shadowSize-25-focusRingOffset-0px-Offset-0-1-webkit-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-ba3f3-ht-shadowSize-25-focusRingOffset-0px-Offset-0-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-f930d--shadowSize-20-focusRingOffset-0px-Offset-100-1-chromium-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-f930d--shadowSize-20-focusRingOffset-0px-Offset-100-1-chromium-linux.png index bdb57b79b6..b26c9ce233 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-f930d--shadowSize-20-focusRingOffset-0px-Offset-100-1-chromium-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-f930d--shadowSize-20-focusRingOffset-0px-Offset-100-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-f930d--shadowSize-20-focusRingOffset-0px-Offset-100-1-firefox-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-f930d--shadowSize-20-focusRingOffset-0px-Offset-100-1-firefox-linux.png index 28cd44454e..5110288a83 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-f930d--shadowSize-20-focusRingOffset-0px-Offset-100-1-firefox-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-f930d--shadowSize-20-focusRingOffset-0px-Offset-100-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-f930d--shadowSize-20-focusRingOffset-0px-Offset-100-1-webkit-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-f930d--shadowSize-20-focusRingOffset-0px-Offset-100-1-webkit-linux.png index f8f8097efd..bad9937816 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-f930d--shadowSize-20-focusRingOffset-0px-Offset-100-1-webkit-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-keyboard-Scroll-Area-with-shado-f930d--shadowSize-20-focusRingOffset-0px-Offset-100-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-5592a-hadowSize-15-focusRingOffset-0px-Offset-100-1-chromium-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-5592a-hadowSize-15-focusRingOffset-0px-Offset-100-1-chromium-linux.png index c1fca743f0..a0a0af25b2 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-5592a-hadowSize-15-focusRingOffset-0px-Offset-100-1-chromium-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-5592a-hadowSize-15-focusRingOffset-0px-Offset-100-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-5592a-hadowSize-15-focusRingOffset-0px-Offset-100-1-firefox-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-5592a-hadowSize-15-focusRingOffset-0px-Offset-100-1-firefox-linux.png index eb64c72758..3fd9639780 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-5592a-hadowSize-15-focusRingOffset-0px-Offset-100-1-firefox-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-5592a-hadowSize-15-focusRingOffset-0px-Offset-100-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-5592a-hadowSize-15-focusRingOffset-0px-Offset-100-1-webkit-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-5592a-hadowSize-15-focusRingOffset-0px-Offset-100-1-webkit-linux.png index daa9c2b9ce..7154c76d4a 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-5592a-hadowSize-15-focusRingOffset-0px-Offset-100-1-webkit-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-5592a-hadowSize-15-focusRingOffset-0px-Offset-100-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-bd721--shadowSize-25-focusRingOffset-0px-Offset-0-1-chromium-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-bd721--shadowSize-25-focusRingOffset-0px-Offset-0-1-chromium-linux.png index 9395eaab95..e89b3be4a8 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-bd721--shadowSize-25-focusRingOffset-0px-Offset-0-1-chromium-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-bd721--shadowSize-25-focusRingOffset-0px-Offset-0-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-bd721--shadowSize-25-focusRingOffset-0px-Offset-0-1-firefox-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-bd721--shadowSize-25-focusRingOffset-0px-Offset-0-1-firefox-linux.png index 0dddeca587..f81fcf189d 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-bd721--shadowSize-25-focusRingOffset-0px-Offset-0-1-firefox-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-bd721--shadowSize-25-focusRingOffset-0px-Offset-0-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-bd721--shadowSize-25-focusRingOffset-0px-Offset-0-1-webkit-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-bd721--shadowSize-25-focusRingOffset-0px-Offset-0-1-webkit-linux.png index 1fd2291e2b..354161ab02 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-bd721--shadowSize-25-focusRingOffset-0px-Offset-0-1-webkit-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-f-bd721--shadowSize-25-focusRingOffset-0px-Offset-0-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-2125a-hadowSize-20-focusRingOffset-0px-Offset-100-1-chromium-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-2125a-hadowSize-20-focusRingOffset-0px-Offset-100-1-chromium-linux.png index 75091c0e73..574f23bce5 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-2125a-hadowSize-20-focusRingOffset-0px-Offset-100-1-chromium-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-2125a-hadowSize-20-focusRingOffset-0px-Offset-100-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-2125a-hadowSize-20-focusRingOffset-0px-Offset-100-1-firefox-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-2125a-hadowSize-20-focusRingOffset-0px-Offset-100-1-firefox-linux.png index 03549daec7..46bcc85e22 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-2125a-hadowSize-20-focusRingOffset-0px-Offset-100-1-firefox-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-2125a-hadowSize-20-focusRingOffset-0px-Offset-100-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-2125a-hadowSize-20-focusRingOffset-0px-Offset-100-1-webkit-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-2125a-hadowSize-20-focusRingOffset-0px-Offset-100-1-webkit-linux.png index 1424d8e2eb..4ff5210434 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-2125a-hadowSize-20-focusRingOffset-0px-Offset-100-1-webkit-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-2125a-hadowSize-20-focusRingOffset-0px-Offset-100-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-bfc15-adowSize-30-focusRingOffset-40px-Offset-100-1-chromium-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-bfc15-adowSize-30-focusRingOffset-40px-Offset-100-1-chromium-linux.png index 942b25da23..6f7272d9ff 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-bfc15-adowSize-30-focusRingOffset-40px-Offset-100-1-chromium-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-bfc15-adowSize-30-focusRingOffset-40px-Offset-100-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-bfc15-adowSize-30-focusRingOffset-40px-Offset-100-1-firefox-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-bfc15-adowSize-30-focusRingOffset-40px-Offset-100-1-firefox-linux.png index 7155979be4..9e402ecb3d 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-bfc15-adowSize-30-focusRingOffset-40px-Offset-100-1-firefox-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-bfc15-adowSize-30-focusRingOffset-40px-Offset-100-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-bfc15-adowSize-30-focusRingOffset-40px-Offset-100-1-webkit-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-bfc15-adowSize-30-focusRingOffset-40px-Offset-100-1-webkit-linux.png index 7fc730b6e2..5a27539088 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-bfc15-adowSize-30-focusRingOffset-40px-Offset-100-1-webkit-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-mouse-Scroll-Area-with-shadow-t-bfc15-adowSize-30-focusRingOffset-40px-Offset-100-1-webkit-linux.png differ diff --git a/semcore/base-components/src/components/flex-box/invalid-state-box/invalidStateBox.shadow.css b/semcore/base-components/src/components/flex-box/invalid-state-box/invalidStateBox.shadow.css index 97fcbe500f..5462e0c8b6 100644 --- a/semcore/base-components/src/components/flex-box/invalid-state-box/invalidStateBox.shadow.css +++ b/semcore/base-components/src/components/flex-box/invalid-state-box/invalidStateBox.shadow.css @@ -4,7 +4,6 @@ SPattern { position: absolute; background-image: var(--intergalactic-border-critical-pattern, repeating-linear-gradient(315deg, oklch(0.7 0.21 23) 0, oklch(0.7 0.21 23) 1px, transparent 0, transparent 50%)); background-size: 6px 6px; - background-color: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); border-bottom-left-radius: calc(var(--intergalactic-control-rounded, 6px) - 2px); border-top-left-radius: calc(var(--intergalactic-control-rounded, 6px) - 2px); } diff --git a/semcore/base-components/src/components/hint/style/hint.shadow.css b/semcore/base-components/src/components/hint/style/hint.shadow.css index 3e66b92d97..63c65c796f 100644 --- a/semcore/base-components/src/components/hint/style/hint.shadow.css +++ b/semcore/base-components/src/components/hint/style/hint.shadow.css @@ -8,10 +8,10 @@ SHintPopper { opacity: 0; pointer-events: none; - background: var(--intergalactic-tooltip-invert, oklch(0.23 0.01 140)); - border: 1px solid var(--intergalactic-border-tooltip-invert, oklch(0.995 0.008 145.9 / 0.369)); - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - padding: var(--intergalactic-spacing-1x, 4px) var(--intergalactic-spacing-2x, 8px); + background: var(--intergalactic-tooltip-bg-invert, oklch(0.23 0.01 140)); + border: 1px solid var(--intergalactic-tooltip-border-invert, oklch(0.35 0.006 140)); + color: var(--intergalactic-tooltip-text-invert, oklch(0.999 0.001 180 / 0.949)); + padding: var(--intergalactic-spacing-content-padding-xsmall, 4px) var(--intergalactic-spacing-content-padding-small, 8px); border-radius: var(--intergalactic-rounded-small, 4px); font-size: var(--intergalactic-fs-100, 12px); line-height: var(--intergalactic-lh-100, 133%); diff --git a/semcore/base-components/src/components/scroll-area/style/scroll-bar.shadow.css b/semcore/base-components/src/components/scroll-area/style/scroll-bar.shadow.css index e1977c775d..910fb777b5 100644 --- a/semcore/base-components/src/components/scroll-area/style/scroll-bar.shadow.css +++ b/semcore/base-components/src/components/scroll-area/style/scroll-bar.shadow.css @@ -4,18 +4,21 @@ SScrollBar { } SScrollBar[orientation='vertical'] { - top: var(--intergalactic-spacing-1x, 4px); + margin-top: var(--intergalactic-spacing-content-padding-xsmall, 4px); + top: 0; right: 0; width: 8px; - height: calc(100% - var(--offsetSum) - var(--intergalactic-spacing-2x, 8px)); + height: calc(100% - var(--offsetSum) - var(--intergalactic-spacing-content-padding-small, 8px)); justify-content: center; } SScrollBar[orientation='horizontal'] { + margin-left: var(--intergalactic-spacing-content-padding-xsmall, 4px); + left: 0; bottom: 0; height: 12px; align-items: center; - width: calc(100% - var(--offsetSum) - var(--intergalactic-spacing-2x, 8px)); + width: calc(100% - var(--offsetSum) - var(--intergalactic-spacing-content-padding-medium, 12px)); } SSlider { @@ -23,6 +26,6 @@ SSlider { width: 6px; height: 6px; /* disable-tokens-validator */ - border-radius: 4px; + border-radius: var(--intergalactic-rounded-small, 6px); background-color: var(--intergalactic-scroll-bar-background, oklch(0.137 0.026 175.7 / 0.161)); } diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx index 4636971480..0e1842b638 100644 --- a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx +++ b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx @@ -32,7 +32,9 @@ test.describe(`${TAG.VISUAL}`, () => { variables.forEach((item) => { test(`Verify Base case size=${item.size} disabled=${item.disabled} state=${item.state} active=${item.active} empty=${item.empty} placeholder=${item.placeholder}`, { tag: [TAG.PRIORITY_HIGH, - '@base-trigger'], + '@base-trigger', + '@base-components', + '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/base-trigger/tests/examples/base-trigger/base.tsx', 'en', item); @@ -92,7 +94,9 @@ test.describe(`${TAG.VISUAL}`, () => { test(`Verify With addons case size=${item.size} disabled=${item.disabled} state=${item.state} active=${item.active} empty=${item.empty} placeholder=${item.placeholder}`, { tag: [TAG.PRIORITY_HIGH, - '@base-trigger'], + '@base-trigger', + '@base-components', + '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/base-trigger/tests/examples/base-trigger/with-addons.tsx', 'en', item); @@ -166,7 +170,8 @@ test.describe(`${TAG.VISUAL}`, () => { tag: [TAG.PRIORITY_HIGH, '@base-trigger', '@base-components', - '@neighbor-location'], + '@neighbor-location', + '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/base-trigger/tests/examples/base-trigger/neighbor-location.tsx', 'en', item); @@ -239,7 +244,9 @@ test.describe(`${TAG.VISUAL}`, () => { tag: [TAG.PRIORITY_HIGH, '@base-trigger', '@dropdown', - '@select'], + '@select', + '@base-components', + '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/base-trigger/tests/examples/base-trigger/with-select-and-dd-menu.tsx', 'en', item); @@ -337,7 +344,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@dropdown', '@select', '@divider', - '@button'], + '@button', + '@base-components', + '@flex-box', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/base-trigger/tests/examples/base-trigger/base-trigger.tsx', 'en'); @@ -368,7 +378,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@dropdown', '@select', '@divider', - '@button'], + '@button', + '@base-components', + '@flex-box', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/base-trigger/tests/examples/base-trigger/base-trigger.tsx', 'en'); @@ -396,7 +409,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@dropdown', '@select', '@divider', - '@button'], + '@button', + '@base-components', + '@flex-box', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/base-trigger/tests/examples/base-trigger/base-trigger.tsx', 'en'); diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Base-trigger-and-few-tags-1-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Base-trigger-and-few-tags-1-chromium-linux.png index fc45fcecc5..026d9756b3 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Base-trigger-and-few-tags-1-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Base-trigger-and-few-tags-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Base-trigger-and-few-tags-1-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Base-trigger-and-few-tags-1-firefox-linux.png index 2bd47af3a1..788f59c9dc 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Base-trigger-and-few-tags-1-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Base-trigger-and-few-tags-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Base-trigger-and-few-tags-1-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Base-trigger-and-few-tags-1-webkit-linux.png index 765b0d2280..8a337b14a3 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Base-trigger-and-few-tags-1-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Base-trigger-and-few-tags-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-lstate-invalid-active-true-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-lstate-invalid-active-true-placeholder-Placeholder-chromium-linux.png index 6a0534be59..68a6c615a8 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-lstate-invalid-active-true-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-lstate-invalid-active-true-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-lstate-invalid-active-true-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-lstate-invalid-active-true-placeholder-Placeholder-firefox-linux.png index 984bb01c3d..7e982862bb 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-lstate-invalid-active-true-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-lstate-invalid-active-true-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-lstate-invalid-active-true-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-lstate-invalid-active-true-placeholder-Placeholder-webkit-linux.png index acb2e47fc3..fd7fd72d42 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-lstate-invalid-active-true-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-lstate-invalid-active-true-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png index 553cac0efb..0e6e157594 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png index f2014daa8c..9fd2fece0e 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png index 5ae13c9f22..d10f5e0e47 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-chromium-linux.png index b7bfb7530b..16962b7466 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-firefox-linux.png index 2e37693b79..ff89644e71 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-webkit-linux.png index 18aef46427..963d295afa 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-lstate-invalid-active-false-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-lstate-invalid-active-false-placeholder-undefined-chromium-linux.png index c8794b49be..5965839566 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-lstate-invalid-active-false-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-lstate-invalid-active-false-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-lstate-invalid-active-false-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-lstate-invalid-active-false-placeholder-undefined-firefox-linux.png index d97ffee2a7..c5bb527712 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-lstate-invalid-active-false-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-lstate-invalid-active-false-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-lstate-invalid-active-false-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-lstate-invalid-active-false-placeholder-undefined-webkit-linux.png index 4ee2df1088..1171af06ff 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-lstate-invalid-active-false-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-lstate-invalid-active-false-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-chromium-linux.png index fc26ee2fc8..ff1a9059e1 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-firefox-linux.png index 8696aefb05..6c0d531bd3 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-webkit-linux.png index f7eed474c6..c12540ece9 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-chromium-linux.png index 38eb4cbef6..b90330cd49 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-firefox-linux.png index 645dd25997..166df375dc 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-webkit-linux.png index cc4b75f3ab..41f1558c88 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png index ecff4e2b8e..31e805c1af 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png index ed683ccb57..300ef57864 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png index 2f7740433c..b2c3dbf12c 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-chromium-linux.png index 642b4da739..d33cc189d7 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-firefox-linux.png index 8200387cb3..747fb0cee9 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-webkit-linux.png index a87d23d606..939e2cfc45 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-normal-active-false-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-normal-active-false-placeholder-undefined-chromium-linux.png index 581a163c56..88400a97ad 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-normal-active-false-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-normal-active-false-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-normal-active-false-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-normal-active-false-placeholder-undefined-firefox-linux.png index 58c5a53ef5..7cc33121b1 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-normal-active-false-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-normal-active-false-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-normal-active-false-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-normal-active-false-placeholder-undefined-webkit-linux.png index b8f2758f7a..26d2611748 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-normal-active-false-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-state-normal-active-false-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-chromium-linux.png index 989fe8f05a..1e54065a73 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-firefox-linux.png index e6bece7ab2..8cb88892d6 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-webkit-linux.png index 3f75628444..4e10c74b51 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png index dc05d9e581..3b61fac9a4 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png index 033f336d94..78858e6ba2 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png index d7e224e482..32b9e6da34 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-chromium-linux.png index c6154ae14a..66fdf3c01c 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-firefox-linux.png index 2cfc9e8fbf..00905c352a 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-webkit-linux.png index 84e2640f5d..4756b25331 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-chromium-linux.png index 4dd530a610..89bf72306a 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-firefox-linux.png index 6a298dbe57..461a21536d 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-webkit-linux.png index a95b06159a..35c52e8098 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-chromium-linux.png index a4c5406e39..e33e320cfb 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-firefox-linux.png index 2e150a69b1..858d473530 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-webkit-linux.png index 10ec2349c3..2d2d7d32ab 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png index dc3ff4c6b5..d0cd1c9070 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png index 58618542ec..58b7eaa028 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png index 835099b382..aafaf0731c 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-chromium-linux.png index b6193e1dc6..42ed4575b8 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-firefox-linux.png index 08f3b479d4..0c5b525f48 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-webkit-linux.png index 407f591484..f3b39076b4 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png index 9f875d6149..c8397a48a4 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png index 5a84b0ce32..d306086f8c 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png index 385a719894..7cdd3841a1 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-chromium-linux.png index a5fe342f79..c29d11f303 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-firefox-linux.png index 8965f00d90..e5abdbf5df 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-webkit-linux.png index 626e58bc3f..d3f4109817 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-state-valid-active-true-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-chromium-linux.png index eca69e51f2..b0e112bab0 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-firefox-linux.png index 11feff91d2..b537fa3d6c 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-webkit-linux.png index 731e88e48f..4e997a6988 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-chromium-linux.png index 0d5a52614d..1bd6ceefd9 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-firefox-linux.png index 56b1eab509..12942be85e 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-webkit-linux.png index dc91b2e134..3e67e86942 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-chromium-linux.png index 34b287d89f..9e9b6c72b4 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-firefox-linux.png index 8a24e68cb1..b9ea8464b7 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-webkit-linux.png index cf742c0b1b..0c0b3cdd52 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png index e72f7b5680..44069a8a86 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png index 0ddb93a1a1..4af61128ac 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png index 80d57ba49a..865d7140ee 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-chromium-linux.png index e0379c998d..5c32eb68f4 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-firefox-linux.png index ed5df3b5c6..a668b23942 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-webkit-linux.png index 5df21039e4..7b3a61091a 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-invalid-active-true-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-normal-active-false-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-normal-active-false-placeholder-undefined-chromium-linux.png index 1cb3de9c8a..e67ba0192c 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-normal-active-false-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-normal-active-false-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-normal-active-false-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-normal-active-false-placeholder-undefined-firefox-linux.png index 668156d162..1fbafa88df 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-normal-active-false-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-normal-active-false-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-normal-active-false-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-normal-active-false-placeholder-undefined-webkit-linux.png index 69c9d3e902..bb93c6e3a5 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-normal-active-false-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-state-normal-active-false-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder--chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder--chromium-linux.png index dbf914ee8b..60c046403f 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder--chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder--chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder--firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder--firefox-linux.png index 2ef591ae0f..068709873c 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder--firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder--firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder--webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder--webkit-linux.png index 068d5aee67..8455f24edb 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder--webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder--webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder--chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder--chromium-linux.png index 66058d6f16..3962db260a 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder--chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder--chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder--firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder--firefox-linux.png index 47e9479b68..fdef5b596d 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder--firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder--firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder--webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder--webkit-linux.png index 614040e122..38cca4c210 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder--webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder--webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-invalid-active-false-placeholder-undefined--chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-invalid-active-false-placeholder-undefined--chromium-linux.png index 6426330e23..78cb6c88ea 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-invalid-active-false-placeholder-undefined--chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-invalid-active-false-placeholder-undefined--chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-invalid-active-false-placeholder-undefined--firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-invalid-active-false-placeholder-undefined--firefox-linux.png index a053862662..9ed1b0de2f 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-invalid-active-false-placeholder-undefined--firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-invalid-active-false-placeholder-undefined--firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-invalid-active-false-placeholder-undefined--webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-invalid-active-false-placeholder-undefined--webkit-linux.png index 51df0bb543..ac1862ff7c 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-invalid-active-false-placeholder-undefined--webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-invalid-active-false-placeholder-undefined--webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder--chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder--chromium-linux.png index 898984a78e..1c97aa5cde 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder--chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder--chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder--firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder--firefox-linux.png index 45069bae5b..283b59f3b0 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder--firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder--firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder--webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder--webkit-linux.png index bbfd3e5a61..03098a6a0f 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder--webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-false-placeholder-Placeholder--webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder--chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder--chromium-linux.png index 1c2f5367af..6ac4bc76d0 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder--chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder--chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder--firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder--firefox-linux.png index 1e164aadcf..3171ca0538 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder--firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder--firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder--webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder--webkit-linux.png index 45116f350e..a0ac33a574 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder--webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-normal-active-true-placeholder-Placeholder--webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-valid-active-true-placeholder-undefined--chromium-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-valid-active-true-placeholder-undefined--chromium-linux.png index 1bb23e12a2..6fa0191549 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-valid-active-true-placeholder-undefined--chromium-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-valid-active-true-placeholder-undefined--chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-valid-active-true-placeholder-undefined--firefox-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-valid-active-true-placeholder-undefined--firefox-linux.png index 27e215e0e4..9ee367b830 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-valid-active-true-placeholder-undefined--firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-valid-active-true-placeholder-undefined--firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-valid-active-true-placeholder-undefined--webkit-linux.png b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-valid-active-true-placeholder-undefined--webkit-linux.png index 9139eface3..6a3ca0b1ba 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-valid-active-true-placeholder-undefined--webkit-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-state-valid-active-true-placeholder-undefined--webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-1-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-1-chromium-linux.png index 73c4c70eaf..1d7d206806 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-1-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-1-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-1-firefox-linux.png index 3aa2e58375..e8c7045bb8 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-1-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-1-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-1-webkit-linux.png index 8c51c04d1d..35cf6cdc4d 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-1-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-2-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-2-chromium-linux.png index 047e8ace26..31a8309b22 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-2-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-2-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-2-firefox-linux.png index a64c42150c..92b8a97e01 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-2-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-2-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-2-webkit-linux.png index b095a80ead..3db8015156 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-2-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-chromium-linux.png index f3afb2605b..2d5625871b 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-firefox-linux.png index 8b87b54688..1415037259 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-webkit-linux.png index abb4b8ca46..4e0943fd4d 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png index 4baf042cb2..4012bbe5a6 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png index 7e059e0fe8..e0ac8a5c80 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png index 4a9ecb4c6c..7bf8e018f8 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png index 438a42a8cf..417ee4379e 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png index 9f19c40f52..0aad346856 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png index a3d30c6a7a..6dba54376b 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png index 329c3b40e4..e269258714 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png index fc5b2c097d..8974e1861a 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png index b56f900fbc..1496fd74f3 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-chromium-linux.png index a36a14b3dc..c144e0bbe6 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-firefox-linux.png index 476a376fea..695b6d2477 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-webkit-linux.png index af19483675..1c5bd8a34a 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-chromium-linux.png index 5ed56aa4f3..4c172c798e 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-firefox-linux.png index 606a1701f0..cc854fcb52 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-webkit-linux.png index 46173d8c9b..1dd58e911b 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png index 07ddf1ad48..a7296b0f42 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png index 6988faae75..3162233a22 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png index 48e9a039e1..db4c07323a 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png index 3015a340a9..b90330cd49 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png index 645dd25997..166df375dc 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png index cc4b75f3ab..41f1558c88 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-chromium-linux.png index 3e06fc2849..06566815c9 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-firefox-linux.png index d504bbcd98..69a15bfaa8 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-webkit-linux.png index 254adf8ac7..2bb20e49a7 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-chromium-linux.png index 3f98d6239a..f621306961 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-firefox-linux.png index ffd049a34f..b03d28e817 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-webkit-linux.png index b527f1cc74..f4caff1e28 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-chromium-linux.png index 642b4da739..6f056373c5 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-firefox-linux.png index 8200387cb3..3f9b9f2121 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-webkit-linux.png index a87d23d606..d7d7209c8c 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png index 2bc20399fb..2c1edf401a 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png index 7725fede21..7ec349e488 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png index 63aab7b956..1e93f37f95 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-chromium-linux.png index 31bb9ef90e..dc669f9f3b 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-firefox-linux.png index 69ab6bd312..450fdd5f16 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-webkit-linux.png index 48c8b343f8..64ad9447ec 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png index 496888b7e2..ee47855e9d 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png index 7ef433ce9e..c31390cb18 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png index 8d8e5f19ce..b5f4a08fac 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-chromium-linux.png index a510dac94c..dbd77a037c 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-firefox-linux.png index 0632fbdbba..e6087d24a4 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-webkit-linux.png index 7a2199424a..3a9d373b26 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png index 2435d68c2a..1af0417548 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png index 26b04ab11a..db988b9975 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png index 1d790eebe8..1c7884e692 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/button-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png index 4feda76395..f8adaa6b47 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png index 194c1e505d..6e5961df9d 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png index 7db953662a..4ebdfe9331 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png index 84c3edc8f3..332f115df2 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png index 72fd9266ad..250c0f3989 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png index 307f604bd6..07ce5672f4 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-chromium-linux.png index 2169ea0d84..bfad474652 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-firefox-linux.png index 1c51bd556b..021bedd04a 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-webkit-linux.png index be7de83fc9..715fcbc9f7 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-invalid-active-true-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png index c03a8803ad..421cbdb70b 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png index e43375463b..3effce6688 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png index 18ceed7c8f..1ca1c02b29 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-l-disabled-false-state-valid-active-false-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png index 169d656e82..796317db93 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png index aca8c3488d..87720d2621 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png index 8cd44a4d35..307c238863 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png index a4c5406e39..e33e320cfb 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png index 2e150a69b1..858d473530 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png index 10ec2349c3..2d2d7d32ab 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-chromium-linux.png index 0b704927ba..a9a63f9959 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-firefox-linux.png index aa7563331e..e593bd02c2 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-webkit-linux.png index f7ae4338f2..df4fda3fce 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-chromium-linux.png index fd5c41e0be..1c2942ef90 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-firefox-linux.png index c3c60d8f05..eeb5397cbc 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-webkit-linux.png index 0686525580..9871cc5149 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-invalid-active-false-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png index 612618a45b..b712e4d56e 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png index f15fcbe511..bc85bab7e3 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png index 88a3962a00..d3807efcbf 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/neighbor-location-size-m-disabled-false-state-valid-active-true-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-chromium-linux.png index 52c739bb0d..a24394a365 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-firefox-linux.png index 9fea592a25..fb18ca7562 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-webkit-linux.png index 131c6fbffe..905826d5d2 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-invalid-active-true-placeholder-Placeholder-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png index fc113562dc..3090ec1c45 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png index ee9f632112..8a9ceb9b50 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png index 3dc4196ad4..e96865ba0c 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-false-state-valid-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png index ea4066e6ee..cf4d880669 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png index 893f231303..4e9c0ef86a 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png index 6c7280318c..9e0b8c8b31 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png index a26911c239..8b023fa72c 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png index 48299105d1..5bb284aefc 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png index 2c436c616e..df2ba6c441 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-chromium-linux.png index 5ccf9630f3..93b99091db 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-firefox-linux.png index 4ff451f4ff..9704c141e2 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-webkit-linux.png index ecda5f8240..4627ed863d 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-l-disabled-true-loading-false-state-valid-active-true-placeholder-Placeholder-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-chromium-linux.png index 4965e48eca..b8e40a85bb 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-firefox-linux.png index 938924b6df..bfd15b066e 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-webkit-linux.png index 8b578fe5a2..1ad70a9b74 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-invalid-active-false-placeholder-undefined-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png index 8c53693a4c..4b37bd3777 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png index 46356d4348..0f541d9f9a 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png index 4598de0dfd..a7e2b06120 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png index 34b287d89f..9e9b6c72b4 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png index 8a24e68cb1..b9ea8464b7 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png index cf742c0b1b..0c0b3cdd52 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-chromium-linux.png index d91ebc051d..f24a643db1 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-firefox-linux.png index e69eb0ac7f..9e1077fc96 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-webkit-linux.png index 47396f4810..10aff971f6 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-false-state-valid-active-true-placeholder-undefined-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-chromium-linux.png index d066a99ab4..dc560fe9fe 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-firefox-linux.png index d1a0061e49..38d6bcf188 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-webkit-linux.png index fa26610b3a..3a16093366 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-chromium-linux.png index ae81598300..b06eeabfce 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-firefox-linux.png index bf47b2af59..8bec140c50 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-webkit-linux.png index f9951b84f6..6de88764a0 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-invalid-active-true-placeholder-undefined-chevron-false-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png index 903537ea2c..03560ed978 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png index 9238324a86..7dafb384a1 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png index 13f62416b2..bd00b603ab 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/triggers-size-m-disabled-true-loading-false-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png index a9b96a2c13..5c8849b23c 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png index 4f81901ec8..c9e4fb999a 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png index 7a78c5082e..0ff4493d5a 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-invalid-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png index 352cc66dd7..15f9d8ba85 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png index a25055ab10..3944be8247 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png index 364f4b9006..9bb4116fac 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-l-disabled-false-loading-true-state-normal-active-false-placeholder-undefined-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png index 8d07a90c53..6167d0a0c8 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png index d7dc52bbfb..20ecacfcd5 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png index f08dd61249..2aa9847a39 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-false-placeholder-Placeholder-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png index 1c2f5367af..6ac4bc76d0 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png index 1e164aadcf..3171ca0538 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png index 45116f350e..a0ac33a574 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-false-state-normal-active-true-placeholder-Placeholder-chevron-false-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-chromium-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-chromium-linux.png index 37cdf1707b..007e760220 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-chromium-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-firefox-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-firefox-linux.png index 49eb297b14..49c5aee03e 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-webkit-linux.png b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-webkit-linux.png index 916c85b707..096d099699 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-webkit-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/with-addons-size-m-disabled-false-loading-true-state-valid-active-false-placeholder-undefined-chevron-true-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Counter-on-trigger-1-chromium-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Counter-on-trigger-1-chromium-linux.png index a6743c6760..41545f8ef3 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Counter-on-trigger-1-chromium-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Counter-on-trigger-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Counter-on-trigger-1-firefox-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Counter-on-trigger-1-firefox-linux.png index b22538b50d..f134134466 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Counter-on-trigger-1-firefox-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Counter-on-trigger-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Counter-on-trigger-1-webkit-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Counter-on-trigger-1-webkit-linux.png index 8f06a16425..5ef51f837f 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Counter-on-trigger-1-webkit-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Counter-on-trigger-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Hint-on-Close-button-1-chromium-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Hint-on-Close-button-1-chromium-linux.png index 599c57bb7f..588c5b1e95 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Hint-on-Close-button-1-chromium-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Hint-on-Close-button-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Hint-on-Close-button-1-firefox-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Hint-on-Close-button-1-firefox-linux.png index 011b3e81dd..981b5a3278 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Hint-on-Close-button-1-firefox-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Hint-on-Close-button-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Hint-on-Close-button-1-webkit-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Hint-on-Close-button-1-webkit-linux.png index c5fc3bed3b..e2754cdfa2 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Hint-on-Close-button-1-webkit-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-Hint-on-Close-button-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Filter-trigger-and-few-tags-1-chromium-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Filter-trigger-and-few-tags-1-chromium-linux.png index ee081f8ed0..c7eddfcc4c 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Filter-trigger-and-few-tags-1-chromium-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Filter-trigger-and-few-tags-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Filter-trigger-and-few-tags-1-firefox-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Filter-trigger-and-few-tags-1-firefox-linux.png index 3f30867dd8..5de1c8e966 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Filter-trigger-and-few-tags-1-firefox-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Filter-trigger-and-few-tags-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Filter-trigger-and-few-tags-1-webkit-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Filter-trigger-and-few-tags-1-webkit-linux.png index 191beb6d05..c9c8b825a9 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Filter-trigger-and-few-tags-1-webkit-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Filter-trigger-and-few-tags-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-active-true-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-active-true-placeholder-undefined-chromium-linux.png index 1370082729..597619d3ee 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-active-true-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-active-true-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-active-true-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-active-true-placeholder-undefined-firefox-linux.png index d6e8d0513b..7a4cc64ad5 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-active-true-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-active-true-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-active-true-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-active-true-placeholder-undefined-webkit-linux.png index 670f6e48bf..bc9c82360e 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-active-true-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-false-active-true-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-active-true-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-active-true-placeholder-Placeholder-chromium-linux.png index 780705199b..a7ef7deafb 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-active-true-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-active-true-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-active-true-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-active-true-placeholder-Placeholder-firefox-linux.png index 31096646d7..f707320b6e 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-active-true-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-active-true-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-active-true-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-active-true-placeholder-Placeholder-webkit-linux.png index cd8f70cf36..8dfc75a639 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-active-true-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-l-disabled-true-active-true-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-active-false-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-active-false-placeholder-Placeholder-chromium-linux.png index df4b16f571..eb50abe333 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-active-false-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-active-false-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-active-false-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-active-false-placeholder-Placeholder-firefox-linux.png index 4663117894..8af67c1d34 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-active-false-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-active-false-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-active-false-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-active-false-placeholder-Placeholder-webkit-linux.png index 0a95d2ab85..01434ef5e3 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-active-false-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-false-active-false-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-active-false-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-active-false-placeholder-undefined-chromium-linux.png index aded474da8..854d60a85e 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-active-false-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-active-false-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-active-false-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-active-false-placeholder-undefined-firefox-linux.png index 46ef7d2059..cc533ece3e 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-active-false-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-active-false-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-active-false-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-active-false-placeholder-undefined-webkit-linux.png index 18f2e34b55..2af0f5e6fb 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-active-false-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/base-size-m-disabled-true-active-false-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-false-active-true-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-false-active-true-placeholder-undefined-chromium-linux.png index 83d9786fad..8eb87d06d5 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-false-active-true-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-false-active-true-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-false-active-true-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-false-active-true-placeholder-undefined-firefox-linux.png index f7920f45cd..760d9b7448 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-false-active-true-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-false-active-true-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-false-active-true-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-false-active-true-placeholder-undefined-webkit-linux.png index 180e19a801..848e362204 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-false-active-true-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-false-active-true-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-true-active-true-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-true-active-true-placeholder-Placeholder-chromium-linux.png index acfc222ae9..4b82e173ff 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-true-active-true-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-true-active-true-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-true-active-true-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-true-active-true-placeholder-Placeholder-firefox-linux.png index b05d1e11d5..9be30c474c 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-true-active-true-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-true-active-true-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-true-active-true-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-true-active-true-placeholder-Placeholder-webkit-linux.png index b73e42b84f..da8d363866 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-true-active-true-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-l-disabled-true-active-true-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-false-active-false-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-false-active-false-placeholder-Placeholder-chromium-linux.png index 5fff604504..21fab54fdd 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-false-active-false-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-false-active-false-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-false-active-false-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-false-active-false-placeholder-Placeholder-firefox-linux.png index 0692666dea..b70be6d33a 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-false-active-false-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-false-active-false-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-false-active-false-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-false-active-false-placeholder-Placeholder-webkit-linux.png index cfe9587399..789882d296 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-false-active-false-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-false-active-false-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-true-active-false-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-true-active-false-placeholder-undefined-chromium-linux.png index a1f920fe78..5b8e30be04 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-true-active-false-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-true-active-false-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-true-active-false-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-true-active-false-placeholder-undefined-firefox-linux.png index 003df452ad..3ee56338ca 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-true-active-false-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-true-active-false-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-true-active-false-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-true-active-false-placeholder-undefined-webkit-linux.png index 29ff613570..7450cf7580 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-true-active-false-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/select-size-m-disabled-true-active-false-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-false-active-true-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-false-active-true-placeholder-undefined-chromium-linux.png index 97d8bb830a..144613fc34 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-false-active-true-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-false-active-true-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-false-active-true-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-false-active-true-placeholder-undefined-firefox-linux.png index 860f8c79a8..6886dc6635 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-false-active-true-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-false-active-true-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-false-active-true-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-false-active-true-placeholder-undefined-webkit-linux.png index 63ae63eead..cfce832dc6 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-false-active-true-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-false-active-true-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-true-active-true-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-true-active-true-placeholder-Placeholder-chromium-linux.png index c11caabed3..c377564bdc 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-true-active-true-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-true-active-true-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-true-active-true-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-true-active-true-placeholder-Placeholder-firefox-linux.png index 4a7bf5d1c4..a375cf5a50 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-true-active-true-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-true-active-true-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-true-active-true-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-true-active-true-placeholder-Placeholder-webkit-linux.png index d0c70b4d3c..19c09dc69a 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-true-active-true-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-l-disabled-true-active-true-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-false-active-false-placeholder-Placeholder-chromium-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-false-active-false-placeholder-Placeholder-chromium-linux.png index 916eb41203..e2c379fc70 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-false-active-false-placeholder-Placeholder-chromium-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-false-active-false-placeholder-Placeholder-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-false-active-false-placeholder-Placeholder-firefox-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-false-active-false-placeholder-Placeholder-firefox-linux.png index 574f3ebc9f..af11a237e9 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-false-active-false-placeholder-Placeholder-firefox-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-false-active-false-placeholder-Placeholder-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-false-active-false-placeholder-Placeholder-webkit-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-false-active-false-placeholder-Placeholder-webkit-linux.png index 8f6cf88f8e..982efd14dc 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-false-active-false-placeholder-Placeholder-webkit-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-false-active-false-placeholder-Placeholder-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-true-active-false-placeholder-undefined-chromium-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-true-active-false-placeholder-undefined-chromium-linux.png index 959ba6e813..fa30719fff 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-true-active-false-placeholder-undefined-chromium-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-true-active-false-placeholder-undefined-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-true-active-false-placeholder-undefined-firefox-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-true-active-false-placeholder-undefined-firefox-linux.png index 650f289af0..b5cabc444a 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-true-active-false-placeholder-undefined-firefox-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-true-active-false-placeholder-undefined-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-true-active-false-placeholder-undefined-webkit-linux.png b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-true-active-false-placeholder-undefined-webkit-linux.png index d9805025a7..165a050d99 100644 Binary files a/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-true-active-false-placeholder-undefined-webkit-linux.png and b/semcore/base-trigger/__tests__/filter-trigger.browser-test.tsx-snapshots/with-addonssize-m-disabled-true-active-false-placeholder-undefined-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx index fd0f444658..0daa9e865b 100644 --- a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx +++ b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx @@ -21,8 +21,8 @@ async function getTextClip(page: Page) { Visual states, hover and focus styles, paddings, margins, and snapshots. ===================================================== */ test.describe(` ${TAG.VISUAL}`, () => { - // Section 1: Size × addon position × ellipsis × addonType × color × use rotation - const sizes = [100, 200, 300, 400, 500, 600, 700, 800]; + // Section 1: Size × addon position × ellipsis × addonType × color rotation + const sizes = [100, 200, 300, 400, 500, 600, 700, 800, 350]; const longText = 'The quick brown fox jumps over the lazy dog and even more text to ensure truncation'; const addonTypes = ['icon', 'badge', 'counter', 'tag']; diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-07233-de-Select-truncates-with-right-only-size-300-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-07233-de-Select-truncates-with-right-only-size-300-1-chromium-linux.png index 609478e8aa..319510a6ae 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-07233-de-Select-truncates-with-right-only-size-300-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-07233-de-Select-truncates-with-right-only-size-300-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-07233-de-Select-truncates-with-right-only-size-300-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-07233-de-Select-truncates-with-right-only-size-300-1-firefox-linux.png index 45e9dc6a8f..e3a6d91c14 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-07233-de-Select-truncates-with-right-only-size-300-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-07233-de-Select-truncates-with-right-only-size-300-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-07233-de-Select-truncates-with-right-only-size-300-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-07233-de-Select-truncates-with-right-only-size-300-1-webkit-linux.png index 9954e45beb..4ba8186a5d 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-07233-de-Select-truncates-with-right-only-size-300-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-07233-de-Select-truncates-with-right-only-size-300-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-15778-de-Select-truncates-with-right-only-size-600-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-15778-de-Select-truncates-with-right-only-size-600-1-chromium-linux.png index 344455d6b3..18452633ae 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-15778-de-Select-truncates-with-right-only-size-600-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-15778-de-Select-truncates-with-right-only-size-600-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-15778-de-Select-truncates-with-right-only-size-600-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-15778-de-Select-truncates-with-right-only-size-600-1-firefox-linux.png index 225722cf1c..4432c3da15 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-15778-de-Select-truncates-with-right-only-size-600-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-15778-de-Select-truncates-with-right-only-size-600-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-15778-de-Select-truncates-with-right-only-size-600-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-15778-de-Select-truncates-with-right-only-size-600-1-webkit-linux.png index fda5a0c01a..7a1bd9b005 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-15778-de-Select-truncates-with-right-only-size-600-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-15778-de-Select-truncates-with-right-only-size-600-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-2ad48-nside-Select-truncates-with-loading-size-600-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-2ad48-nside-Select-truncates-with-loading-size-600-1-chromium-linux.png index 518c5277c2..cc68336cd0 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-2ad48-nside-Select-truncates-with-loading-size-600-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-2ad48-nside-Select-truncates-with-loading-size-600-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-2ad48-nside-Select-truncates-with-loading-size-600-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-2ad48-nside-Select-truncates-with-loading-size-600-1-firefox-linux.png index b101b72adb..44ed46e27d 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-2ad48-nside-Select-truncates-with-loading-size-600-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-2ad48-nside-Select-truncates-with-loading-size-600-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-2ad48-nside-Select-truncates-with-loading-size-600-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-2ad48-nside-Select-truncates-with-loading-size-600-1-webkit-linux.png index 103cdf409d..557f19b1ea 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-2ad48-nside-Select-truncates-with-loading-size-600-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-2ad48-nside-Select-truncates-with-loading-size-600-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-49a87-nside-Select-truncates-with-loading-size-300-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-49a87-nside-Select-truncates-with-loading-size-300-1-chromium-linux.png index 51259cb5fd..beb84593de 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-49a87-nside-Select-truncates-with-loading-size-300-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-49a87-nside-Select-truncates-with-loading-size-300-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-49a87-nside-Select-truncates-with-loading-size-300-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-49a87-nside-Select-truncates-with-loading-size-300-1-firefox-linux.png index 6f420e61a7..b9650b672b 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-49a87-nside-Select-truncates-with-loading-size-300-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-49a87-nside-Select-truncates-with-loading-size-300-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-49a87-nside-Select-truncates-with-loading-size-300-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-49a87-nside-Select-truncates-with-loading-size-300-1-webkit-linux.png index 05271cb4c1..a6c0c814fa 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-49a87-nside-Select-truncates-with-loading-size-300-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-49a87-nside-Select-truncates-with-loading-size-300-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-78572-ide-Select-truncates-with-left-only-size-600-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-78572-ide-Select-truncates-with-left-only-size-600-1-chromium-linux.png index 831b88a5f5..83612a776b 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-78572-ide-Select-truncates-with-left-only-size-600-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-78572-ide-Select-truncates-with-left-only-size-600-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-78572-ide-Select-truncates-with-left-only-size-600-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-78572-ide-Select-truncates-with-left-only-size-600-1-firefox-linux.png index 6b3e90a5a0..951589de6a 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-78572-ide-Select-truncates-with-left-only-size-600-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-78572-ide-Select-truncates-with-left-only-size-600-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-78572-ide-Select-truncates-with-left-only-size-600-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-78572-ide-Select-truncates-with-left-only-size-600-1-webkit-linux.png index 15ca3d256b..4473d6a16e 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-78572-ide-Select-truncates-with-left-only-size-600-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-78572-ide-Select-truncates-with-left-only-size-600-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-ca456-ide-Select-truncates-with-left-only-size-300-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-ca456-ide-Select-truncates-with-left-only-size-300-1-chromium-linux.png index b38df43114..74d46c95b7 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-ca456-ide-Select-truncates-with-left-only-size-300-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-ca456-ide-Select-truncates-with-left-only-size-300-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-ca456-ide-Select-truncates-with-left-only-size-300-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-ca456-ide-Select-truncates-with-left-only-size-300-1-firefox-linux.png index 38389bf095..2f46e8bdf5 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-ca456-ide-Select-truncates-with-left-only-size-300-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-ca456-ide-Select-truncates-with-left-only-size-300-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-ca456-ide-Select-truncates-with-left-only-size-300-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-ca456-ide-Select-truncates-with-left-only-size-300-1-webkit-linux.png index 2ae582f28b..7b7bab69c9 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-ca456-ide-Select-truncates-with-left-only-size-300-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-inside-Select---ellipsis-ca456-ide-Select-truncates-with-left-only-size-300-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-chromium-linux.png index a522871050..5da625ecf2 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-firefox-linux.png index 95583241a3..a79312fa99 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-webkit-linux.png index 904bf944f0..a87f8dce84 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-chromium-linux.png index 294b9a4ff4..ea8c0c9a23 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-firefox-linux.png index 61affb5ea5..1f45413e62 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-webkit-linux.png index 508929e262..04513f9dbe 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Link-Trigger-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-disabled-with-counter-addon-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-disabled-with-counter-addon-1-chromium-linux.png index 47d769be03..f4382a9391 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-disabled-with-counter-addon-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-disabled-with-counter-addon-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-disabled-with-counter-addon-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-disabled-with-counter-addon-1-firefox-linux.png index 0b8107ebe3..e872135f5b 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-disabled-with-counter-addon-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-disabled-with-counter-addon-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-disabled-with-counter-addon-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-disabled-with-counter-addon-1-webkit-linux.png index 9bc3d7ac79..70d3608c35 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-disabled-with-counter-addon-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-disabled-with-counter-addon-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-loading-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-loading-1-chromium-linux.png index edf147c119..acf7399235 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-loading-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-loading-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-loading-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-loading-1-firefox-linux.png index 6016fbd219..a086ac8a02 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-loading-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-loading-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-loading-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-loading-1-webkit-linux.png index a3687d66ce..699987d827 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-loading-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-loading-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-1-chromium-linux.png index 2fd2ee19ec..9820220f6b 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-1-firefox-linux.png index 86426176bd..45cc70fe0f 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-1-webkit-linux.png index 954f0b15e6..564758f94f 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-2-chromium-linux.png index 28f263a949..f7df8cddbb 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-2-firefox-linux.png index 789231f7cd..d420e09854 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-2-webkit-linux.png index 4660e16c80..600293ee61 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-mixed-addon-types-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-1-chromium-linux.png index ec8eba577d..d088dd0952 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png index 4a07003a02..a73aec6dc2 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-1-webkit-linux.png index 51b8570082..3ce42c0f75 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-2-chromium-linux.png index 01bdec93e0..2eff52f35f 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png index 9ab5733b4a..967edcdfc3 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-2-webkit-linux.png index d0cb9d7449..cb5f91b2d8 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png index 69dd1e285e..4b45011734 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png index 423d67754f..c04ce85a93 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png index 7d08999c42..92f627e5d1 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png index 3a347a9047..956ea7e8ac 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png index ec3b744cb5..2e4c20b364 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png index e5f6386a5b..0468de8c28 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-1-chromium-linux.png index bef6678735..f1fcbeab7c 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-1-firefox-linux.png index 2695f1e9c6..05f1e01f53 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-1-webkit-linux.png index d12fba1b4c..5591027288 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-2-chromium-linux.png index 1858764d6b..9f48f2a013 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-2-firefox-linux.png index 2d0812502f..1d713d18e5 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-2-webkit-linux.png index c9b098551b..6a280e2972 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-1-chromium-linux.png index 42187c8001..fb02fc8c74 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-1-firefox-linux.png index caa2dc2e22..9755eb2b2d 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-1-webkit-linux.png index 5af93ef681..ae57de2545 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-2-chromium-linux.png index c19d6b461b..70f2548b52 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-2-firefox-linux.png index 8d6db947b6..cabfdf268c 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-2-webkit-linux.png index 16fb453191..d9a7844d80 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-3-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-3-chromium-linux.png index 1cee3c2ea8..ee8850f34d 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-3-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-3-firefox-linux.png index 4753dce457..05d0ec56fb 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-3-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-3-webkit-linux.png index 53b0fc4ff6..fd5158c1aa 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-3-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-1-chromium-linux.png index f9f7ecdc44..69f67eb910 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-1-firefox-linux.png index 25f1de72f3..01e8031e04 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-1-webkit-linux.png index 9d6a43755c..966dce2d6f 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-2-chromium-linux.png index 1ef0a01faf..4906904836 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-2-firefox-linux.png index 6946bcb913..e7e04ad07e 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-2-webkit-linux.png index 46eb5edb7c..ccecf5759a 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-1-chromium-linux.png index 96f5dddc05..5bf04ad1b2 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png index 9781996196..cc69916d6f 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-1-webkit-linux.png index 77d473309f..ff909e4130 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-2-chromium-linux.png index ed5e7e197a..69c4b574f0 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png index 4b0ebfd050..31991e21e6 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-2-webkit-linux.png index 297d8fb3d9..bfaa33b734 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-1-chromium-linux.png index 55f942d812..a200dfbc0e 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-1-firefox-linux.png index 41ec0561b4..5b0f51a0db 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-1-webkit-linux.png index 9ddc722867..f69c85300a 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-2-chromium-linux.png index a86fe02e4d..147bc09069 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-2-firefox-linux.png index 401f946cd5..762637e7c7 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-2-webkit-linux.png index 326135b16f..dab36074b7 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-1-chromium-linux.png index 2c0176f55e..195ada9979 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-1-firefox-linux.png index 439b66f151..5c34ae9fc5 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-1-webkit-linux.png index cf1927b2e5..9219c7af3a 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-2-chromium-linux.png index 8b2943d48c..caeb542648 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-2-firefox-linux.png index 5a83cb6ba4..276ff2cb8b 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-2-webkit-linux.png index f0d1a8a7f5..286c5ac246 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-3-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-3-chromium-linux.png index 189acc5ed2..2bb9923433 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-3-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-3-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-3-firefox-linux.png index e667972735..45c58dc8ca 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-3-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-3-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-3-webkit-linux.png index 33c303cf23..6e84a8354d 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-3-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-1-chromium-linux.png index 6abbeee073..e571f09e89 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png index 8de8238944..77b3231b17 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-1-webkit-linux.png index b9813e175d..b82506eb74 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-2-chromium-linux.png index 0318a97bdc..456f4433b0 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png index 4b34c1813e..3639fff6a5 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-2-webkit-linux.png index 2047645d8d..809f07b4dd 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-1-chromium-linux.png index 2a189a3620..fd138bc0bd 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-1-firefox-linux.png index 9710cecc65..cc0103ae19 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-1-webkit-linux.png index 5e70b8bee1..5ff2643ab5 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-2-chromium-linux.png index cf1e48ccef..9655667e05 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-2-firefox-linux.png index 5f8a0b0b18..13457cf941 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-2-webkit-linux.png index fbfed096bf..afab2b580c 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-1-chromium-linux.png index 1d57bb68ce..053bc286bb 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-1-firefox-linux.png index bd6bc447c3..7c14c8bdbe 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-1-webkit-linux.png index 50f7c4584e..4c860681f9 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-2-chromium-linux.png index dc479b84b9..3a1ebde06b 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-2-firefox-linux.png index 22e412c672..c7691507e1 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-2-webkit-linux.png index d52b040fa5..17daae0d31 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-1-chromium-linux.png index e6113fbad1..90f6745438 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png index 2b14e38474..380c7223e0 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-1-webkit-linux.png index a932e05a48..c7ca738079 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-2-chromium-linux.png index 816aa5ccba..ded72d049b 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-2-firefox-linux.png index 563e9cecb2..d4eb70e38b 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-2-webkit-linux.png index 6a0bd9796d..fd8eccdbc9 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-3-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-3-chromium-linux.png index 51a2f22cdd..47f947c586 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-3-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png index 0e3faa1412..c5de0ae1ea 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-3-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-3-webkit-linux.png index b37c5e299e..4a5481b213 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-3-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-1-chromium-linux.png new file mode 100644 index 0000000000..d152bd183c Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-1-firefox-linux.png new file mode 100644 index 0000000000..7768ffb59b Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-1-webkit-linux.png new file mode 100644 index 0000000000..0d43af5950 Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-2-chromium-linux.png new file mode 100644 index 0000000000..5963ceb00c Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-2-firefox-linux.png new file mode 100644 index 0000000000..795d660e65 Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-2-webkit-linux.png new file mode 100644 index 0000000000..db5179c1aa Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png new file mode 100644 index 0000000000..375ed5b1b1 Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png new file mode 100644 index 0000000000..261ea220c7 Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png new file mode 100644 index 0000000000..372641d4c4 Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png new file mode 100644 index 0000000000..396eadb3df Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png new file mode 100644 index 0000000000..483d5bfa3f Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png new file mode 100644 index 0000000000..3e27caead3 Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-1-chromium-linux.png new file mode 100644 index 0000000000..0359f2c16f Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-1-firefox-linux.png new file mode 100644 index 0000000000..66a377475e Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-1-webkit-linux.png new file mode 100644 index 0000000000..532a9b4cec Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-2-chromium-linux.png new file mode 100644 index 0000000000..329ccf53f8 Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-2-firefox-linux.png new file mode 100644 index 0000000000..bd0b55b4b2 Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-2-webkit-linux.png new file mode 100644 index 0000000000..adec6e0561 Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-both-addons-counter-undefined-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-1-chromium-linux.png new file mode 100644 index 0000000000..f702e1ceb7 Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-1-firefox-linux.png new file mode 100644 index 0000000000..345274ef5d Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-1-webkit-linux.png new file mode 100644 index 0000000000..6f2fe6026e Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-2-chromium-linux.png new file mode 100644 index 0000000000..8d955a5052 Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-2-firefox-linux.png new file mode 100644 index 0000000000..fb1a3809c6 Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-2-webkit-linux.png new file mode 100644 index 0000000000..4f497d73c3 Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-3-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-3-chromium-linux.png new file mode 100644 index 0000000000..a6e005e90f Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-3-firefox-linux.png new file mode 100644 index 0000000000..2c8f8f0209 Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-3-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-3-webkit-linux.png new file mode 100644 index 0000000000..6f28bf344c Binary files /dev/null and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-no-addons-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-chromium-linux.png index 81a0c2e345..4fcc0eeefe 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-firefox-linux.png index 543e05d421..735d32f89d 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-webkit-linux.png index 8c7ffc8788..0805403c3f 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-2-chromium-linux.png index 168fc253be..1db86583e6 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-2-firefox-linux.png index b780337696..a58080d630 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-2-webkit-linux.png index ae14c42b5f..514a0dc937 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-1-chromium-linux.png index 1b5a62c4c0..81275ca1cc 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png index c8f35df247..a8a9661d35 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-1-webkit-linux.png index 57b63983dc..04adeefdaf 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-2-chromium-linux.png index 32e2866a98..3628c926de 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-2-firefox-linux.png index 999ced4fac..e6cdd6ee29 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-2-webkit-linux.png index 094ef29d20..3d787fead0 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-1-chromium-linux.png index 680ebfdf60..466399699b 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-1-firefox-linux.png index 1e1a40d963..8a88e4f8a8 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-1-webkit-linux.png index 090295d7d9..1120b4d51b 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-2-chromium-linux.png index 65d6e730c4..be87157ce2 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-2-firefox-linux.png index 1a1552c64f..a78c2d8343 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-2-webkit-linux.png index 14ae4ee503..24c91cb6df 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-1-chromium-linux.png index e76f0e7711..0dfaae7b08 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-1-firefox-linux.png index 2937e68c40..5d89687a60 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-1-webkit-linux.png index a3475c207c..3d65b94530 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-2-chromium-linux.png index 40a020f8b9..c0fab10f18 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-2-firefox-linux.png index 50170995f7..22b1481390 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-2-webkit-linux.png index 49857b7d6e..632aefb696 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-3-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-3-chromium-linux.png index 3c8e0d9aa1..58731177a0 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-3-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-3-firefox-linux.png index b06c63bdc9..20b4915fee 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-3-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-3-webkit-linux.png index 7bd81dc9f5..5baca62e53 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-3-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-1-chromium-linux.png index 62f6c63e4c..23b51562c3 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png index cba49ef5e3..104ba31eec 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-1-webkit-linux.png index 751ea71f96..960b5455f8 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-2-chromium-linux.png index a5ac74db11..2d2560028e 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-2-firefox-linux.png index 1797191165..93ca129eb6 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-2-webkit-linux.png index 3277084f4e..15b755e543 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png index 37e4605da4..81b1a92989 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png index b22a526811..de480fee64 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png index da89566c24..a03f6fef33 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png index 1313599ca0..c274871821 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png index 8182f2efe4..9553f59fec 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png index 28fbfcac6b..68c5a3fc54 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-1-chromium-linux.png index 87fcfacfc0..de8cc93cd0 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-1-firefox-linux.png index bcd2df3a98..f49a1dc3ae 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-1-webkit-linux.png index c6e81c44be..7331fe95ef 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-2-chromium-linux.png index fc7dadcc56..1a5a10108f 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-2-firefox-linux.png index 9b03fe1907..96ce47818e 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-2-webkit-linux.png index 9fb1f03ae5..c54c347aa9 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-1-chromium-linux.png index d88e3a74a4..a66a04f853 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-1-firefox-linux.png index 4fcff3ec57..2ec0080fe8 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-1-webkit-linux.png index ea5d66ce15..d1f3aa2a39 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-2-chromium-linux.png index 41e6f65e79..7c4120e03b 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-2-firefox-linux.png index 9dbb67dde7..5cb1c7e3e8 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-2-webkit-linux.png index e8cf5124dd..f31a61c38a 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-3-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-3-chromium-linux.png index 5db6bbc337..96772d9e82 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-3-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-3-firefox-linux.png index e4c524e141..8331eacee9 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-3-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-3-webkit-linux.png index c108f54a17..77cd013f7f 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-3-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-1-chromium-linux.png index 3777147b21..3462ee3ecd 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-1-firefox-linux.png index 72edc02a35..32c3d8da8d 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-1-webkit-linux.png index 2dd78d58e5..d01a6de87d 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-2-chromium-linux.png index b543d8ab0c..2f210b1323 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-2-firefox-linux.png index b3dc99b848..347c9e7c5d 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-2-webkit-linux.png index e7e33c698c..ac84730bb2 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-1-chromium-linux.png index 2b24fe6ae3..45e0e96944 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png index 3e8f230396..aff12f9b62 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-1-webkit-linux.png index 29a96feba0..cbbd37c26f 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-2-chromium-linux.png index ed3e8aba69..bc995f6017 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png index 85e614d29c..a9464b6c09 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-2-webkit-linux.png index 9e7941e050..8551b5db01 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-1-chromium-linux.png index b42e014fc0..b24d3ff00e 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-1-firefox-linux.png index ff69e96fe3..bf14f760c1 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-1-webkit-linux.png index 610aef8d41..f307775082 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-2-chromium-linux.png index fad9cb6cf4..76ebd6d188 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-2-firefox-linux.png index b88c2e74fb..c5bb7eace8 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-2-webkit-linux.png index bfadded1ca..45f1745cea 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-1-chromium-linux.png index fb6bac1298..ea2b784cc4 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-1-firefox-linux.png index 3ef0587fc3..26c21f3f9a 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-1-webkit-linux.png index cb7ac9407f..41d9c9bf73 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-2-chromium-linux.png index f6710b998e..70a144470e 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-2-firefox-linux.png index 148a22d1c0..22d7067d26 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-2-webkit-linux.png index d377a04420..87cf4cded0 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-3-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-3-chromium-linux.png index 2827300828..a9b35925b6 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-3-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-3-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-3-firefox-linux.png index fc2d614568..02b806a257 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-3-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-3-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-3-webkit-linux.png index 2d6b187f5a..25c04a7dd9 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-3-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-1-chromium-linux.png index 9810f7bfb9..d2d80b975e 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png index e9fadfd79e..097708e5a6 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-1-webkit-linux.png index fe2e97782f..e818a77047 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-2-chromium-linux.png index 3b69be78fa..22e4dabe74 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png index dffa231525..6c258eaa05 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-2-webkit-linux.png index 9994fcdf72..2d9dfd01cd 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-chromium-linux.png index 3863f8ae7d..e4d1de29be 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-firefox-linux.png index 43c3b53f18..d5b4930141 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-webkit-linux.png index cc359cc31b..c45e618e48 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-chromium-linux.png index cc62de7478..830a5d73e0 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-firefox-linux.png index 9f2e44f39e..183e53df4d 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-webkit-linux.png index 1c3d303599..12ebd17fb9 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-1-chromium-linux.png index 4251e3ff74..fba79c344f 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-1-firefox-linux.png index b0b256fdab..1fb016d401 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-1-webkit-linux.png index 37ab782f85..a9453bf667 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-2-chromium-linux.png index c4d5b4914c..5e9bfe04ec 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-2-firefox-linux.png index 4746e38095..7e0bcf2c11 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-2-webkit-linux.png index 3dd5eddb07..29f6ceeabc 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-1-chromium-linux.png index e9183e8f6b..2f09c18d8b 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png index 26b608eed7..312d2206da 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-1-webkit-linux.png index b27b7f4e9f..f3acc54495 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-2-chromium-linux.png index 23825ac3ae..8b4ad64f65 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-2-firefox-linux.png index 30ee8a253f..02b899ab5b 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-2-webkit-linux.png index d125fb5cee..4d08f23699 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-3-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-3-chromium-linux.png index 62de8565d9..df7e47a277 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-3-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png index 9ab53f3abc..2f7e859a91 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-3-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-3-webkit-linux.png index 776b0c1b51..503c573341 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-3-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-1-chromium-linux.png index 68d120ddb0..97d3b046ac 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-1-firefox-linux.png index 535da8c80f..61ea82214f 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-1-webkit-linux.png index 71a4c93875..f967c1b679 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-2-chromium-linux.png index 4b84ce2926..1baa636df0 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-2-firefox-linux.png index 518b29afdc..570ebd0c94 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-2-webkit-linux.png index e11b3c4f47..73d4c06e74 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-1-chromium-linux.png index a4aac828ec..01e6f676de 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png index 9426a01db0..5386a4ec11 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-1-webkit-linux.png index 80fddf5182..d8a2531ef2 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-2-chromium-linux.png index 3e7084d769..44e2bb5167 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-2-firefox-linux.png index c99ed81601..3c02868fad 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-2-webkit-linux.png index fcc9706a0e..cc96ba31c3 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-1-chromium-linux.png index 39b7b37a30..290496fa03 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-1-firefox-linux.png index b013e54314..346a616bba 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-1-webkit-linux.png index b601c624c2..8ab8fdbc75 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-2-chromium-linux.png index 2e6c4f2e88..19c1f10974 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-2-firefox-linux.png index 1d39218e76..25a5f3b150 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-2-webkit-linux.png index de7045175f..9ead0883ba 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-1-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-1-chromium-linux.png index b2546eee8d..af7e5ea517 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-1-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-1-firefox-linux.png index f802673d38..a9ad4f283e 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-1-webkit-linux.png index 22ef4bc1cd..44e0c9496f 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-2-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-2-chromium-linux.png index 7c6d41fb37..441d112420 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-2-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-2-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-2-firefox-linux.png index e4f98f2df9..ea8b97e4cf 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-2-webkit-linux.png index e32d42a1d3..4f83110f37 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-3-chromium-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-3-chromium-linux.png index f6d5c2cc63..ead1b5af85 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-3-chromium-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-3-firefox-linux.png index ca8105a460..7ef9576659 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-3-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-3-webkit-linux.png index 92ffea5349..8696985989 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-3-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/base-trigger/src/ButtonTrigger.jsx b/semcore/base-trigger/src/ButtonTrigger.jsx index 9101169267..56a78e9edc 100644 --- a/semcore/base-trigger/src/ButtonTrigger.jsx +++ b/semcore/base-trigger/src/ButtonTrigger.jsx @@ -51,7 +51,7 @@ class RootButtonTrigger extends Component { {addonTextChildren(Children, ButtonTrigger.Text, ButtonTrigger.Addon, empty)} {(chevron || loading) && ( - {loading ? : } + {loading ? : } )} , diff --git a/semcore/base-trigger/src/FilterTrigger.jsx b/semcore/base-trigger/src/FilterTrigger.jsx index 545423e5ae..28700dd9d9 100644 --- a/semcore/base-trigger/src/FilterTrigger.jsx +++ b/semcore/base-trigger/src/FilterTrigger.jsx @@ -1,4 +1,4 @@ -import { NeighborLocation, Box, ScreenReaderOnly, Hint } from '@semcore/base-components'; +import { Box, ScreenReaderOnly, Hint } from '@semcore/base-components'; import { createComponent, Component, Root, sstyled } from '@semcore/core'; import addonTextChildren from '@semcore/core/lib/utils/addonTextChildren'; import { callAllEventHandlers } from '@semcore/core/lib/utils/assignProps'; @@ -144,20 +144,18 @@ class RootFilterTrigger extends Component { use:aria-label={undefined} use:aria-labelledby={undefined} > - - {advancedMode - ? ( - - ) - : ( - <> - - - - {!empty && } - - )} - + {advancedMode + ? ( + + ) + : ( + <> + + + + {!empty && } + + )} , ); } @@ -168,11 +166,11 @@ class TriggerButton extends Component { static style = style; render() { - const SFilterTrigger = Root; + const STrigger = Root; const { Children, styles, empty, triggerRef } = this.asProps; return sstyled(styles)( - } - , + , ); } } @@ -200,7 +198,7 @@ class ClearButton extends Component { triggerRef = React.createRef(); render() { - const SFilterTrigger = Root; + const SClear = Root; const { styles, empty, @@ -215,7 +213,7 @@ class ClearButton extends Component { return sstyled(styles)( <> - - + {title ?? ariaLabel ?? getI18nText('clear')} , diff --git a/semcore/base-trigger/src/style/base-trigger.shadow.css b/semcore/base-trigger/src/style/base-trigger.shadow.css index 93335b2862..fcc36a2e3f 100644 --- a/semcore/base-trigger/src/style/base-trigger.shadow.css +++ b/semcore/base-trigger/src/style/base-trigger.shadow.css @@ -8,7 +8,6 @@ SBaseTrigger { white-space: nowrap; user-select: none; box-sizing: border-box; - padding: 0; margin: 0; box-shadow: none; text-decoration: none; @@ -19,12 +18,15 @@ SBaseTrigger { font-family: inherit; cursor: pointer; - background: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); + background: var(--intergalactic-control-select-trigger-normal, oklch(1 0 0)); font-weight: var(--intergalactic-regular, 400); border: 1px solid var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); + border-radius: var(--intergalactic-control-rounded, 6px); + padding: 0 var(--intergalactic-spacing-content-padding-medium, 12px); + &::-moz-focus-inner { border: none; padding: 0; @@ -40,13 +42,17 @@ SBaseTrigger { } &:hover { - background-color: var(--intergalactic-bg-primary-neutral-hover, oklch(0.98 0.001 180)); + background-color: var(--intergalactic-control-select-trigger-hover, oklch(0.97 0.001 180)); } &:active, &[active] { border-color: var(--intergalactic-border-info-active, oklch(0.7 0.131 275.2)); - background-color: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); + + &:hover { + background: var(--intergalactic-control-select-trigger-normal, oklch(1 0 0)); + } + /*background-color: var(--intergalactic-control-select-trigger-active, oklch(0.96 0.001 180));*/ } } @@ -61,6 +67,7 @@ SInner { display: inline-flex; align-items: center; justify-content: center; + gap: var(--intergalactic-spacing-content-gap-medium, 6px); height: 100%; width: 100%; } @@ -68,11 +75,9 @@ SInner { SText { display: inline; /* disable-tokens-validator */ - padding: 1px 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; - line-height: var(--intergalactic-lh-200, 142%); flex-grow: 1; text-align: left; } @@ -83,57 +88,25 @@ SAddon { justify-content: center; flex-shrink: 0; pointer-events: none; -} -SBaseAddon { - width: 12px; - height: 12px; + &:only-child { + margin-left: calc(-1 * var(--intergalactic-spacing-content-gap-small, 4px)); + margin-right: calc(-1 * var(--intergalactic-spacing-content-gap-small, 4px)); + } } SBaseTrigger[size='m'] { - min-width: 26px; - height: 28px; - border-radius: var(--intergalactic-control-rounded, 6px); - padding: 0 var(--intergalactic-spacing-2x, 8px); + min-width: var(--intergalactic-form-control-m, 32px); + height: var(--intergalactic-form-control-m, 32px); font-size: var(--intergalactic-fs-200, 14px); - - & SAddon { - &:not(:only-child):first-child { - margin-right: var(--intergalactic-spacing-2x, 8px); - } - - &:not(:only-child):last-child { - margin-left: var(--intergalactic-spacing-2x, 8px); - } - - &:only-child { - margin-left: calc(-1 * var(--intergalactic-spacing-1x, 4px)); - margin-right: calc(-1 * var(--intergalactic-spacing-1x, 4px)); - } - } + line-height: var(--intergalactic-lh-200, 142%); } SBaseTrigger[size='l'] { - min-width: 32px; - height: 40px; - border-radius: var(--intergalactic-control-rounded, 6px); - padding: 0 var(--intergalactic-spacing-3x, 12px); + min-width: var(--intergalactic-form-control-l, 44px); + height: var(--intergalactic-form-control-l, 44px); font-size: var(--intergalactic-fs-300, 16px); - - & SAddon { - &:not(:only-child):first-child { - margin-right: var(--intergalactic-spacing-2x, 8px); - } - - &:not(:only-child):last-child { - margin-left: var(--intergalactic-spacing-2x, 8px); - } - - &:only-child { - margin-left: calc(-1 * var(--intergalactic-spacing-1x, 4px)); - margin-right: calc(-1 * var(--intergalactic-spacing-1x, 4px)); - } - } + line-height: var(--intergalactic-lh-300, 150%); } SBaseTrigger[neighborLocation='right'] { @@ -175,10 +148,7 @@ SBaseTrigger[state='invalid'] { } } -SInvalidPattern[size='m'] { - margin-left: calc(-1 * var(--intergalactic-spacing-2x, 8px)); -} - +SInvalidPattern[size='m'], SInvalidPattern[size='l'] { - margin-left: calc(-1 * var(--intergalactic-spacing-3x, 12px)); + margin-left: calc(-1 * var(--intergalactic-spacing-content-padding-medium, 12px)); } diff --git a/semcore/base-trigger/src/style/button-trigger.shadow.css b/semcore/base-trigger/src/style/button-trigger.shadow.css index 29b3fb18e8..f31559c95a 100644 --- a/semcore/base-trigger/src/style/button-trigger.shadow.css +++ b/semcore/base-trigger/src/style/button-trigger.shadow.css @@ -1,8 +1,11 @@ SButtonAddon { - width: 12px; - height: 12px; + width: var(--intergalactic-spacing-3x, 12px); + height: var(--intergalactic-spacing-3x, 12px); + color: var(--intergalactic-icon-non-interactive, oklch(0.094 0.024 153.9 / 0.503)); + position: relative; + left: var(--intergalactic-spacing-05x, 2px); } SButtonTriggerSpin { - fill: var(--intergalactic-icon-primary-neutral, oklch(0.092 0.024 152.2 / 0.526)); + fill: var(--intergalactic-icon-non-interactive, oklch(0.094 0.024 153.9 / 0.503)); } diff --git a/semcore/base-trigger/src/style/filter-trigger.shadow.css b/semcore/base-trigger/src/style/filter-trigger.shadow.css index 2331090dfd..cde8e2197b 100644 --- a/semcore/base-trigger/src/style/filter-trigger.shadow.css +++ b/semcore/base-trigger/src/style/filter-trigger.shadow.css @@ -1,22 +1,100 @@ -SFilterTrigger[selected] { - border-color: var(--intergalactic-border-info-active, oklch(0.7 0.131 275.2)); - background-color: var(--intergalactic-control-secondary-info, oklch(0.527 0.264 262.9 / 0.039)); - color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); +STrigger { + position: relative; - &:hover { - background-color: var(--intergalactic-control-secondary-info-hover, oklch(0.525 0.265 263 / 0.077)); + &[role="combobox"]:not([empty]) { + border-right: none; + border-top-right-radius: 0; + border-bottom-right-radius: 0; + + &::before { + content: ''; + position: absolute; + right: 0; + top: 50%; + transform: translateY(-50%); + width: 1px; + background-color: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); + transition: height calc(var(--intergalactic-duration-extra-fast, 100) * 1ms) ease-out; + } + + &[size='m']::before { + height: 16px; + } + &[size='l']::before { + height: 24px; + } + + &[active], &:active { + &::before { + height: calc(100% - 2px); + } + } + + &[disabled] { + opacity: 1; + } + } +} + +SClear { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + + &[disabled] { + opacity: 1; } +} - &:active, - &[active] { - background-color: var(--intergalactic-control-secondary-info-active, oklch(0.524 0.266 263.1 / 0.116)); +SWrapper:hover:not(:has([disabled])) STrigger[role="combobox"]:not([empty]) { + &[size='m']::before, + &[size='l']::before { + height: calc(100% - 2px); } } SWrapper { display: inline-flex; + position: relative; + border-radius: var(--intergalactic-control-rounded, 6px); + + &::after { + content: ''; + position: absolute; + border: 1px solid var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); + border-radius: var(--intergalactic-control-rounded, 6px); + inset: 0; + z-index: 1; + pointer-events: none; + } + + &[empty]:active, + &[empty][active], + &[empty]:has(STrigger:focus-visible) { + background-color: var(--intergalactic-control-select-trigger-active, oklch(0.96 0.001 180)); + + STrigger { + background: var(--intergalactic-control-select-trigger-normal, oklch(1 0 0)); + } + + &::after { + border-color: var(--intergalactic-border-info-active, oklch(0.7 0.131 275.2)); + } + } &:focus { outline: none; } + + &[disabled] { + opacity: var(--intergalactic-disabled-opacity, 0.4); + } + + STrigger, + SClear { + border: none; + + &[active], &:active { + background-color: var(--intergalactic-control-select-trigger-active, oklch(0.96 0.001 180)); + } + } } diff --git a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx index 24a9b9642e..4f9da9e07a 100644 --- a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx +++ b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx @@ -8,9 +8,9 @@ Visual states, hover and focus styles, paddings, margins, and snapshots. ===================================================== */ test.describe(`${TAG.VISUAL}`, () => { test('Verify links and icons styles', { - tag: [`${TAG.PRIORITY_HIGH}, - @breadcrumbs, - @ellipsis`], + tag: [TAG.PRIORITY_HIGH, + '@breadcrumbs', + '@ellipsis'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/breadcrumbs/docs/examples/usage_example.tsx', 'en'); @@ -116,7 +116,7 @@ test.describe(`${TAG.VISUAL}`, () => { test(`Verify ellipsis in the middle and last item is active=${item.active}`, { tag: [TAG.PRIORITY_HIGH, '@breadcrumbs', - '@ellipis'], + '@ellipsis'], }, async ({ page }) => { await loadPage(page, 'stories/components/breadcrumbs/advanced/examples/trim_middle.tsx', 'en', item); await page.waitForTimeout(200); // wait for finish ellipsis calculation diff --git a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-1-firefox-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-1-firefox-linux.png index 224c16e911..a873562c77 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-1-firefox-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-1-firefox-linux.png differ diff --git a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-2-firefox-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-2-firefox-linux.png index 8e752dbb3f..b96cc5a9c3 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-2-firefox-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-2-firefox-linux.png differ diff --git a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-true-1-firefox-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-true-1-firefox-linux.png index df756b869d..e6c921baf7 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-true-1-firefox-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-true-1-firefox-linux.png differ diff --git a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-end-1-firefox-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-end-1-firefox-linux.png index aa4ec83a27..2a733559a4 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-end-1-firefox-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-end-1-firefox-linux.png differ diff --git a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-middle-and-last-item-is-active-false-1-firefox-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-middle-and-last-item-is-active-false-1-firefox-linux.png index 33c1ea1a6d..60c5867fcf 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-middle-and-last-item-is-active-false-1-firefox-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-middle-and-last-item-is-active-false-1-firefox-linux.png differ diff --git a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-middle-and-last-item-is-active-true-1-firefox-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-middle-and-last-item-is-active-true-1-firefox-linux.png index 0dadf59aa1..2a8e4dd7c0 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-middle-and-last-item-is-active-true-1-firefox-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-middle-and-last-item-is-active-true-1-firefox-linux.png differ diff --git a/semcore/breadcrumbs/src/style/breadcrumbs.shadow.css b/semcore/breadcrumbs/src/style/breadcrumbs.shadow.css index b852876975..7758ddc368 100644 --- a/semcore/breadcrumbs/src/style/breadcrumbs.shadow.css +++ b/semcore/breadcrumbs/src/style/breadcrumbs.shadow.css @@ -10,7 +10,7 @@ SBreadcrumbs { SSeparator { margin: 0 var(--intergalactic-spacing-2x, 8px); - color: var(--intergalactic-icon-secondary-neutral, oklch(0.104 0.023 162.3 / 0.385)); + color: var(--intergalactic-icon-secondary-neutral, oklch(0.118 0.023 170.1 / 0.262)); display: flex; &:last-child { diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-60e08-Rows-2-maxRows-10-maxLines-10-autoFocus-false-3-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-60e08-Rows-2-maxRows-10-maxLines-10-autoFocus-false-3-webkit-linux.png index e481795956..f12ad326bf 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-60e08-Rows-2-maxRows-10-maxLines-10-autoFocus-false-3-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-60e08-Rows-2-maxRows-10-maxLines-10-autoFocus-false-3-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-6b87c-Rows-2-maxRows-10-maxLines-10-autoFocus-false-2-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-6b87c-Rows-2-maxRows-10-maxLines-10-autoFocus-false-2-chromium-linux.png index 08c2d93c40..218a9127c7 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-6b87c-Rows-2-maxRows-10-maxLines-10-autoFocus-false-2-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-6b87c-Rows-2-maxRows-10-maxLines-10-autoFocus-false-2-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-e60b9-Rows-2-maxRows-10-maxLines-10-autoFocus-false-4-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-e60b9-Rows-2-maxRows-10-maxLines-10-autoFocus-false-4-chromium-linux.png index 5f8df6788b..dedc768ec5 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-e60b9-Rows-2-maxRows-10-maxLines-10-autoFocus-false-4-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-e60b9-Rows-2-maxRows-10-maxLines-10-autoFocus-false-4-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-e60b9-Rows-2-maxRows-10-maxLines-10-autoFocus-false-4-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-e60b9-Rows-2-maxRows-10-maxLines-10-autoFocus-false-4-firefox-linux.png index 1d8da9c031..f222fc7653 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-e60b9-Rows-2-maxRows-10-maxLines-10-autoFocus-false-4-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-e60b9-Rows-2-maxRows-10-maxLines-10-autoFocus-false-4-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-e60b9-Rows-2-maxRows-10-maxLines-10-autoFocus-false-4-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-e60b9-Rows-2-maxRows-10-maxLines-10-autoFocus-false-4-webkit-linux.png index fcbb52fb44..3cf2d56f77 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-e60b9-Rows-2-maxRows-10-maxLines-10-autoFocus-false-4-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-e60b9-Rows-2-maxRows-10-maxLines-10-autoFocus-false-4-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-fcf90-Rows-2-maxRows-10-maxLines-10-autoFocus-false-1-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-fcf90-Rows-2-maxRows-10-maxLines-10-autoFocus-false-1-chromium-linux.png index 7626e5a995..e0ddad7ec9 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-fcf90-Rows-2-maxRows-10-maxLines-10-autoFocus-false-1-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-fcf90-Rows-2-maxRows-10-maxLines-10-autoFocus-false-1-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-fcf90-Rows-2-maxRows-10-maxLines-10-autoFocus-false-1-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-fcf90-Rows-2-maxRows-10-maxLines-10-autoFocus-false-1-firefox-linux.png index b567147eae..d8ce842cc8 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-fcf90-Rows-2-maxRows-10-maxLines-10-autoFocus-false-1-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-fcf90-Rows-2-maxRows-10-maxLines-10-autoFocus-false-1-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-fcf90-Rows-2-maxRows-10-maxLines-10-autoFocus-false-1-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-fcf90-Rows-2-maxRows-10-maxLines-10-autoFocus-false-1-webkit-linux.png index 7e2508a373..41b498ffcb 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-fcf90-Rows-2-maxRows-10-maxLines-10-autoFocus-false-1-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-Enter-or-pas-fcf90-Rows-2-maxRows-10-maxLines-10-autoFocus-false-1-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-16199-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-16199-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-chromium-linux.png index 2cf76b9224..2c1f1f51c1 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-16199-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-16199-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-16199-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-16199-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-firefox-linux.png index 8ebf131db6..11c53cf96b 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-16199-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-16199-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-16199-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-16199-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-webkit-linux.png index cfef6f6201..e7c49ac7de 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-16199-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-16199-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-6c192-inRows-1-maxRows-1-maxLines-5-autoFocus-false-4-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-6c192-inRows-1-maxRows-1-maxLines-5-autoFocus-false-4-chromium-linux.png index 6078226233..874203b6ef 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-6c192-inRows-1-maxRows-1-maxLines-5-autoFocus-false-4-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-6c192-inRows-1-maxRows-1-maxLines-5-autoFocus-false-4-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-6c192-inRows-1-maxRows-1-maxLines-5-autoFocus-false-4-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-6c192-inRows-1-maxRows-1-maxLines-5-autoFocus-false-4-firefox-linux.png index aeb8a1605f..9ff7e4d75e 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-6c192-inRows-1-maxRows-1-maxLines-5-autoFocus-false-4-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-6c192-inRows-1-maxRows-1-maxLines-5-autoFocus-false-4-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-6c192-inRows-1-maxRows-1-maxLines-5-autoFocus-false-4-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-6c192-inRows-1-maxRows-1-maxLines-5-autoFocus-false-4-webkit-linux.png index d60f50ea08..6b769acd7b 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-6c192-inRows-1-maxRows-1-maxLines-5-autoFocus-false-4-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-6c192-inRows-1-maxRows-1-maxLines-5-autoFocus-false-4-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-bd682-inRows-1-maxRows-1-maxLines-5-autoFocus-false-2-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-bd682-inRows-1-maxRows-1-maxLines-5-autoFocus-false-2-chromium-linux.png index 009372e687..ac2d7414ee 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-bd682-inRows-1-maxRows-1-maxLines-5-autoFocus-false-2-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-bd682-inRows-1-maxRows-1-maxLines-5-autoFocus-false-2-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-bd682-inRows-1-maxRows-1-maxLines-5-autoFocus-false-2-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-bd682-inRows-1-maxRows-1-maxLines-5-autoFocus-false-2-firefox-linux.png index 9a1ff2b815..c622442fae 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-bd682-inRows-1-maxRows-1-maxLines-5-autoFocus-false-2-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-bd682-inRows-1-maxRows-1-maxLines-5-autoFocus-false-2-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-bd682-inRows-1-maxRows-1-maxLines-5-autoFocus-false-2-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-bd682-inRows-1-maxRows-1-maxLines-5-autoFocus-false-2-webkit-linux.png index 0be3bd5168..0835fa2076 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-bd682-inRows-1-maxRows-1-maxLines-5-autoFocus-false-2-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-bd682-inRows-1-maxRows-1-maxLines-5-autoFocus-false-2-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-c8da5-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-c8da5-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-chromium-linux.png index 2cf76b9224..2c1f1f51c1 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-c8da5-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-c8da5-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-c8da5-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-c8da5-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-firefox-linux.png index 8ebf131db6..11c53cf96b 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-c8da5-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-c8da5-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-c8da5-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-c8da5-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-webkit-linux.png index cfef6f6201..e7c49ac7de 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-c8da5-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-c8da5-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f1b95-inRows-1-maxRows-1-maxLines-5-autoFocus-false-3-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f1b95-inRows-1-maxRows-1-maxLines-5-autoFocus-false-3-chromium-linux.png index 9b83e480e0..bd235a7f8c 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f1b95-inRows-1-maxRows-1-maxLines-5-autoFocus-false-3-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f1b95-inRows-1-maxRows-1-maxLines-5-autoFocus-false-3-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f1b95-inRows-1-maxRows-1-maxLines-5-autoFocus-false-3-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f1b95-inRows-1-maxRows-1-maxLines-5-autoFocus-false-3-firefox-linux.png index abfd2a288a..5ad63034f6 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f1b95-inRows-1-maxRows-1-maxLines-5-autoFocus-false-3-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f1b95-inRows-1-maxRows-1-maxLines-5-autoFocus-false-3-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f1b95-inRows-1-maxRows-1-maxLines-5-autoFocus-false-3-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f1b95-inRows-1-maxRows-1-maxLines-5-autoFocus-false-3-webkit-linux.png index 6c2f7b4730..c4355c49a2 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f1b95-inRows-1-maxRows-1-maxLines-5-autoFocus-false-3-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f1b95-inRows-1-maxRows-1-maxLines-5-autoFocus-false-3-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f40b3-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f40b3-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-chromium-linux.png index cebee3015d..92854ae551 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f40b3-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f40b3-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f40b3-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f40b3-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-firefox-linux.png index 826a0f8d17..79a563450e 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f40b3-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f40b3-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f40b3-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f40b3-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-webkit-linux.png index a40c20b3bd..1bf413f17d 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f40b3-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-l-placeholder-undefined-w-f40b3-inRows-1-maxRows-1-maxLines-5-autoFocus-false-1-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-2bf0b-nRows-2-maxRows-10-maxLines-10-autoFocus-true-4-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-2bf0b-nRows-2-maxRows-10-maxLines-10-autoFocus-true-4-chromium-linux.png index 14346e2de8..741dd713a6 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-2bf0b-nRows-2-maxRows-10-maxLines-10-autoFocus-true-4-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-2bf0b-nRows-2-maxRows-10-maxLines-10-autoFocus-true-4-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-2bf0b-nRows-2-maxRows-10-maxLines-10-autoFocus-true-4-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-2bf0b-nRows-2-maxRows-10-maxLines-10-autoFocus-true-4-firefox-linux.png index a018b0ec3a..e2bd29058b 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-2bf0b-nRows-2-maxRows-10-maxLines-10-autoFocus-true-4-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-2bf0b-nRows-2-maxRows-10-maxLines-10-autoFocus-true-4-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-2bf0b-nRows-2-maxRows-10-maxLines-10-autoFocus-true-4-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-2bf0b-nRows-2-maxRows-10-maxLines-10-autoFocus-true-4-webkit-linux.png index b951a0427e..9e88fc530a 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-2bf0b-nRows-2-maxRows-10-maxLines-10-autoFocus-true-4-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-2bf0b-nRows-2-maxRows-10-maxLines-10-autoFocus-true-4-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-3d5af-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-3d5af-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-chromium-linux.png index eb790a9e43..07a73e002f 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-3d5af-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-3d5af-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-3d5af-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-3d5af-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-firefox-linux.png index 1587123260..783d0c5290 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-3d5af-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-3d5af-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-3d5af-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-3d5af-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-webkit-linux.png index 5ae70131ac..10ef8d1d23 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-3d5af-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-3d5af-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-49d5e-nRows-2-maxRows-10-maxLines-10-autoFocus-true-3-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-49d5e-nRows-2-maxRows-10-maxLines-10-autoFocus-true-3-chromium-linux.png index 3becfa04be..7034a987b5 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-49d5e-nRows-2-maxRows-10-maxLines-10-autoFocus-true-3-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-49d5e-nRows-2-maxRows-10-maxLines-10-autoFocus-true-3-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-49d5e-nRows-2-maxRows-10-maxLines-10-autoFocus-true-3-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-49d5e-nRows-2-maxRows-10-maxLines-10-autoFocus-true-3-firefox-linux.png index 18d183f1ff..8f26d2a661 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-49d5e-nRows-2-maxRows-10-maxLines-10-autoFocus-true-3-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-49d5e-nRows-2-maxRows-10-maxLines-10-autoFocus-true-3-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-49d5e-nRows-2-maxRows-10-maxLines-10-autoFocus-true-3-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-49d5e-nRows-2-maxRows-10-maxLines-10-autoFocus-true-3-webkit-linux.png index 26e50f46f4..1546769970 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-49d5e-nRows-2-maxRows-10-maxLines-10-autoFocus-true-3-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-49d5e-nRows-2-maxRows-10-maxLines-10-autoFocus-true-3-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-85c97-nRows-2-maxRows-10-maxLines-10-autoFocus-true-2-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-85c97-nRows-2-maxRows-10-maxLines-10-autoFocus-true-2-chromium-linux.png index 31ef038a86..af9eefeed6 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-85c97-nRows-2-maxRows-10-maxLines-10-autoFocus-true-2-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-85c97-nRows-2-maxRows-10-maxLines-10-autoFocus-true-2-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-85c97-nRows-2-maxRows-10-maxLines-10-autoFocus-true-2-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-85c97-nRows-2-maxRows-10-maxLines-10-autoFocus-true-2-firefox-linux.png index 0101d3ca9e..a9fc1a0128 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-85c97-nRows-2-maxRows-10-maxLines-10-autoFocus-true-2-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-85c97-nRows-2-maxRows-10-maxLines-10-autoFocus-true-2-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-85c97-nRows-2-maxRows-10-maxLines-10-autoFocus-true-2-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-85c97-nRows-2-maxRows-10-maxLines-10-autoFocus-true-2-webkit-linux.png index 61c1f4ae5a..e419f5ee34 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-85c97-nRows-2-maxRows-10-maxLines-10-autoFocus-true-2-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-85c97-nRows-2-maxRows-10-maxLines-10-autoFocus-true-2-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-8fbcd-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-8fbcd-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-chromium-linux.png index a5fc78df13..cbde4c6029 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-8fbcd-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-8fbcd-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-8fbcd-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-8fbcd-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-firefox-linux.png index 09fc77cfd6..05fa0ac5a8 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-8fbcd-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-8fbcd-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-8fbcd-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-8fbcd-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-webkit-linux.png index d8f0084b13..cd0753af2a 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-8fbcd-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-8fbcd-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-a10b1-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-a10b1-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-chromium-linux.png index a5fc78df13..cbde4c6029 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-a10b1-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-a10b1-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-a10b1-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-a10b1-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-firefox-linux.png index 09fc77cfd6..05fa0ac5a8 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-a10b1-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-a10b1-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-a10b1-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-a10b1-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-webkit-linux.png index d8f0084b13..cd0753af2a 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-a10b1-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-Enter-or-pas-a10b1-nRows-2-maxRows-10-maxLines-10-autoFocus-true-1-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-38264-minRows-1-maxRows-5-maxLines-3-autoFocus-true-2-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-38264-minRows-1-maxRows-5-maxLines-3-autoFocus-true-2-chromium-linux.png index baa253c539..21b7f4f25d 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-38264-minRows-1-maxRows-5-maxLines-3-autoFocus-true-2-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-38264-minRows-1-maxRows-5-maxLines-3-autoFocus-true-2-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-38264-minRows-1-maxRows-5-maxLines-3-autoFocus-true-2-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-38264-minRows-1-maxRows-5-maxLines-3-autoFocus-true-2-firefox-linux.png index eb74ca666b..fa4656bd63 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-38264-minRows-1-maxRows-5-maxLines-3-autoFocus-true-2-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-38264-minRows-1-maxRows-5-maxLines-3-autoFocus-true-2-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-38264-minRows-1-maxRows-5-maxLines-3-autoFocus-true-2-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-38264-minRows-1-maxRows-5-maxLines-3-autoFocus-true-2-webkit-linux.png index 75a7a05eba..11569f05c4 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-38264-minRows-1-maxRows-5-maxLines-3-autoFocus-true-2-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-38264-minRows-1-maxRows-5-maxLines-3-autoFocus-true-2-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-b374f-minRows-1-maxRows-5-maxLines-3-autoFocus-true-4-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-b374f-minRows-1-maxRows-5-maxLines-3-autoFocus-true-4-chromium-linux.png index 7389c90784..20d0e6eb3b 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-b374f-minRows-1-maxRows-5-maxLines-3-autoFocus-true-4-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-b374f-minRows-1-maxRows-5-maxLines-3-autoFocus-true-4-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-b374f-minRows-1-maxRows-5-maxLines-3-autoFocus-true-4-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-b374f-minRows-1-maxRows-5-maxLines-3-autoFocus-true-4-firefox-linux.png index 53e875766d..689e5b4b01 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-b374f-minRows-1-maxRows-5-maxLines-3-autoFocus-true-4-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-b374f-minRows-1-maxRows-5-maxLines-3-autoFocus-true-4-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-b374f-minRows-1-maxRows-5-maxLines-3-autoFocus-true-4-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-b374f-minRows-1-maxRows-5-maxLines-3-autoFocus-true-4-webkit-linux.png index dd4377559a..2040adba41 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-b374f-minRows-1-maxRows-5-maxLines-3-autoFocus-true-4-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-b374f-minRows-1-maxRows-5-maxLines-3-autoFocus-true-4-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-c7174-minRows-1-maxRows-5-maxLines-3-autoFocus-true-3-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-c7174-minRows-1-maxRows-5-maxLines-3-autoFocus-true-3-chromium-linux.png index e4575b3765..373319cb98 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-c7174-minRows-1-maxRows-5-maxLines-3-autoFocus-true-3-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-c7174-minRows-1-maxRows-5-maxLines-3-autoFocus-true-3-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-c7174-minRows-1-maxRows-5-maxLines-3-autoFocus-true-3-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-c7174-minRows-1-maxRows-5-maxLines-3-autoFocus-true-3-firefox-linux.png index 18a6678367..8936a1889a 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-c7174-minRows-1-maxRows-5-maxLines-3-autoFocus-true-3-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-c7174-minRows-1-maxRows-5-maxLines-3-autoFocus-true-3-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-c7174-minRows-1-maxRows-5-maxLines-3-autoFocus-true-3-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-c7174-minRows-1-maxRows-5-maxLines-3-autoFocus-true-3-webkit-linux.png index 25a33fcb46..95e796f837 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-c7174-minRows-1-maxRows-5-maxLines-3-autoFocus-true-3-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-c7174-minRows-1-maxRows-5-maxLines-3-autoFocus-true-3-webkit-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-cc833-minRows-1-maxRows-5-maxLines-3-autoFocus-true-1-chromium-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-cc833-minRows-1-maxRows-5-maxLines-3-autoFocus-true-1-chromium-linux.png index 0bed1d9427..63d4ee18bf 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-cc833-minRows-1-maxRows-5-maxLines-3-autoFocus-true-1-chromium-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-cc833-minRows-1-maxRows-5-maxLines-3-autoFocus-true-1-chromium-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-cc833-minRows-1-maxRows-5-maxLines-3-autoFocus-true-1-firefox-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-cc833-minRows-1-maxRows-5-maxLines-3-autoFocus-true-1-firefox-linux.png index 567b328060..418ba1cf1e 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-cc833-minRows-1-maxRows-5-maxLines-3-autoFocus-true-1-firefox-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-cc833-minRows-1-maxRows-5-maxLines-3-autoFocus-true-1-firefox-linux.png differ diff --git a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-cc833-minRows-1-maxRows-5-maxLines-3-autoFocus-true-1-webkit-linux.png b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-cc833-minRows-1-maxRows-5-maxLines-3-autoFocus-true-1-webkit-linux.png index d6129eaae5..db8d4cdb03 100644 Binary files a/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-cc833-minRows-1-maxRows-5-maxLines-3-autoFocus-true-1-webkit-linux.png and b/semcore/bulk-textarea/__tests__/bulk-textarea.browser-test.tsx-snapshots/-visual-Verify-size-m-placeholder-undefined-w-cc833-minRows-1-maxRows-5-maxLines-3-autoFocus-true-1-webkit-linux.png differ diff --git a/semcore/bulk-textarea/src/components/InputField/inputField.shadow.css b/semcore/bulk-textarea/src/components/InputField/inputField.shadow.css index 514a43e360..a71898adbb 100644 --- a/semcore/bulk-textarea/src/components/InputField/inputField.shadow.css +++ b/semcore/bulk-textarea/src/components/InputField/inputField.shadow.css @@ -23,13 +23,14 @@ SInputField>ol { color: var(--intergalactic-text-placeholder, oklch(0.098 0.023 157.4 / 0.457)); position: absolute; white-space: pre-wrap; - padding-left: var(--intergalactic-spacing-4x, 16px); - text-indent: calc(-1 * var(--intergalactic-spacing-4x, 16px)); + padding-left: var(--intergalactic-spacing-content-padding-medium, 12px); + padding-right: var(--intergalactic-spacing-content-padding-large, 16px); + text-indent: calc(-1 * var(--intergalactic-spacing-content-padding-medium, 12px)); } >li { counter-increment: list-counter; - margin: 0 0 var(--intergalactic-spacing-1x, 4px) 0; + margin: 0 0 var(--intergalactic-spacing-content-padding-xsmall, 4px) 0; position: relative; word-break: break-all; white-space: pre-wrap; @@ -48,7 +49,7 @@ SInputField>ol { text-align: right; color: var(--intergalactic-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); - margin-right: var(--intergalactic-spacing-1x, 4px); + margin-right: var(--intergalactic-spacing-content-gap-small, 4px); font-variant-numeric: normal; font-weight: 300; } @@ -113,7 +114,7 @@ SInputField[showErrors]>ol[aria-invalid]>li[aria-invalid]:after { } SInputField[size='m']>ol { - padding: var(--intergalactic-spacing-2x, 8px) var(--intergalactic-spacing-4x, 16px); + padding: var(--intergalactic-spacing-content-padding-xsmall, 4px) var(--intergalactic-spacing-content-padding-large, 16px) var(--intergalactic-spacing-content-padding-xsmall, 4px) var(--intergalactic-spacing-content-padding-medium, 12px); font-size: var(--intergalactic-fs-200, 14px); line-height: var(--intergalactic-lh-200, 142%); @@ -122,16 +123,16 @@ SInputField[size='m']>ol { max-height: calc((var(--maxRows) - 1) * (20px + var(--intergalactic-spacing-1x, 4px)) + 18px); &:empty { - padding-left: var(--intergalactic-spacing-8x, 32px); + padding-left: calc(var(--intergalactic-spacing-content-padding-xlarge, 20px) + 6px); &::before { - left: calc(var(--intergalactic-spacing-4x, 16px) + 1px); + left: var(--intergalactic-spacing-content-padding-medium, 12px); } } } SInputField[size='l']>ol { - padding: var(--intergalactic-spacing-3x, 12px) var(--intergalactic-spacing-4x, 16px); + padding: var(--intergalactic-spacing-content-padding-small, 8px) var(--intergalactic-spacing-content-padding-large, 16px) var(--intergalactic-spacing-content-padding-small, 8px) var(--intergalactic-spacing-content-padding-medium, 12px); font-size: var(--intergalactic-fs-300, 16px); line-height: var(--intergalactic-lh-300, 150%); @@ -139,10 +140,10 @@ SInputField[size='l']>ol { max-height: calc((var(--maxRows) - 1) * (24px + var(--intergalactic-spacing-1x, 4px)) + 20px); &:empty { - padding-left: calc(var(--intergalactic-spacing-8x, 32px) + var(--intergalactic-spacing-05x, 2px)); + padding-left: calc(var(--intergalactic-spacing-content-padding-xlarge, 20px) + var(--intergalactic-spacing-content-padding-small, 8px)); &::before { - left: var(--intergalactic-spacing-4x, 16px); + left: var(--intergalactic-spacing-content-padding-medium, 12px); } } } diff --git a/semcore/button/__tests__/__snapshots__/index.test.tsx.snap b/semcore/button/__tests__/__snapshots__/index.test.tsx.snap index 9931f394d8..6dbe3210e4 100644 --- a/semcore/button/__tests__/__snapshots__/index.test.tsx.snap +++ b/semcore/button/__tests__/__snapshots__/index.test.tsx.snap @@ -51,3 +51,30 @@ exports[`ButtonLink > Verify data-ui-name 1`] = ` "uiName": null, } `; + +exports[`ButtonLink > Verify data-ui-name without an addon 1`] = ` +{ + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "uiName": "ButtonLink.Text", + }, + ], + "uiName": "Link.Text", + }, + ], + "uiName": "ButtonLink.InnerWrapper", + }, + ], + "uiName": "ButtonLink", + }, + ], + "uiName": null, +} +`; diff --git a/semcore/button/__tests__/button-link.browser-test.tsx b/semcore/button/__tests__/button-link.browser-test.tsx index c208eaf2e5..438afba740 100644 --- a/semcore/button/__tests__/button-link.browser-test.tsx +++ b/semcore/button/__tests__/button-link.browser-test.tsx @@ -38,7 +38,7 @@ Visual states, hover and focus styles, paddings, margins, and snapshots. ===================================================== */ test.describe(` ${TAG.VISUAL}`, () => { // Section 1: Size × addon position × ellipsis × addonType × color × use rotation - const sizes = [100, 200, 300, 400, 500, 600, 700, 800]; + const sizes = [100, 200, 300, 400, 500, 600, 700, 800, 350]; const longText = 'The quick brown fox jumps over the lazy dog and even more text to ensure truncation'; const addonTypes = ['icon', 'badge', 'counter', 'spin']; @@ -89,7 +89,7 @@ test.describe(` ${TAG.VISUAL}`, () => { if (merged) descParts.push('merged'); test(`Verify ButtonLink size=${size}, ${descParts.join(', ')}, ${ellipsisDesc}`, { - tag: [TAG.PRIORITY_HIGH, '@button-link', '@ellipsis'], + tag: [TAG.PRIORITY_HIGH, '@button-link', '@ellipsis', '@badge', '@counter', '@spin', '@typography'], }, async ({ page }) => { await loadPage(page, storyPath, 'en', { size, ...addonVars, text: longText, ...ellipsisVars, ...extraVars, @@ -140,7 +140,7 @@ test.describe(` ${TAG.VISUAL}`, () => { // Section 2: Residual tests - disabled, loading, mixed addon types test('Verify ButtonLink: disabled with counter addon', { - tag: [TAG.PRIORITY_HIGH, '@button-link'], + tag: [TAG.PRIORITY_HIGH, '@button-link', '@counter', '@typography'], }, async ({ page }) => { await loadPage(page, storyPath, 'en', { size: 300, disabled: true, showAddonLeft: true, addonLeftType: 'counter', @@ -150,7 +150,7 @@ test.describe(` ${TAG.VISUAL}`, () => { }); test('Verify ButtonLink: disabled+active with success and addons', { - tag: [TAG.PRIORITY_HIGH, '@button-link'], + tag: [TAG.PRIORITY_HIGH, '@button-link', '@typography'], }, async ({ page }) => { await loadPage(page, storyPath, 'en', { size: 300, disabled: true, active: true, showAddonLeft: true, showAddonRight: true, @@ -161,7 +161,7 @@ test.describe(` ${TAG.VISUAL}`, () => { }); test('Verify ButtonLink: mixed addon types', { - tag: [TAG.PRIORITY_HIGH, '@button-link'], + tag: [TAG.PRIORITY_HIGH, '@button-link', '@badge', '@counter', '@spin', '@typography'], }, async ({ page }) => { await loadPage(page, storyPath, 'en', { size: 300, showAddonLeft: true, addonLeftType: 'badge', @@ -221,7 +221,7 @@ test.describe(` ${TAG.VISUAL}`, () => { // Section 4: Icon-only ButtonLink test('Verify ButtonLink: icon-only with hint', { - tag: [TAG.PRIORITY_HIGH, '@button-link'], + tag: [TAG.PRIORITY_HIGH, '@button-link', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, iconOnlyPath, 'en', { use: 'primary' }); await locators.button(page).first().waitFor({ state: 'visible' }); @@ -241,7 +241,7 @@ test.describe(` ${TAG.VISUAL}`, () => { }); test('Verify ButtonLink: icon-only disabled', { - tag: [TAG.PRIORITY_HIGH, '@button-link'], + tag: [TAG.PRIORITY_HIGH, '@button-link', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, iconOnlyPath, 'en', { disabled: true, size: 300 }); await locators.button(page).first().waitFor({ state: 'visible' }); @@ -250,7 +250,7 @@ test.describe(` ${TAG.VISUAL}`, () => { // Section 5: In-text test('Verify ButtonLink inside text', { - tag: [TAG.PRIORITY_HIGH, '@button-link', '@typography'], + tag: [TAG.PRIORITY_HIGH, '@button-link', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, inTextPath, 'en', { size: 300 }); @@ -262,7 +262,7 @@ test.describe(` ${TAG.VISUAL}`, () => { }); test('Verify ButtonLink inside text disabled', { - tag: [TAG.PRIORITY_HIGH, '@button-link', '@typography'], + tag: [TAG.PRIORITY_HIGH, '@button-link', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, inTextPath, 'en', { size: 300, disabled: true }); await expect(page).toHaveScreenshot(); diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-8f981-rs-size-100-maxLine-9-text-not-truncated-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-8f981-rs-size-100-maxLine-9-text-not-truncated-1-chromium-linux.png index e69455f654..127ef7ed32 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-8f981-rs-size-100-maxLine-9-text-not-truncated-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-8f981-rs-size-100-maxLine-9-text-not-truncated-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-8f981-rs-size-100-maxLine-9-text-not-truncated-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-8f981-rs-size-100-maxLine-9-text-not-truncated-1-firefox-linux.png index f58038d039..ad140cad5f 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-8f981-rs-size-100-maxLine-9-text-not-truncated-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-8f981-rs-size-100-maxLine-9-text-not-truncated-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-8f981-rs-size-100-maxLine-9-text-not-truncated-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-8f981-rs-size-100-maxLine-9-text-not-truncated-1-webkit-linux.png index 47a97c25ed..8e149eb5c4 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-8f981-rs-size-100-maxLine-9-text-not-truncated-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-8f981-rs-size-100-maxLine-9-text-not-truncated-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-cb6f2-rs-size-300-maxLine-9-text-not-truncated-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-cb6f2-rs-size-300-maxLine-9-text-not-truncated-1-chromium-linux.png index 8eb9b41998..d6949c855d 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-cb6f2-rs-size-300-maxLine-9-text-not-truncated-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-cb6f2-rs-size-300-maxLine-9-text-not-truncated-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-cb6f2-rs-size-300-maxLine-9-text-not-truncated-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-cb6f2-rs-size-300-maxLine-9-text-not-truncated-1-firefox-linux.png index 24700fa576..7f8cfc3356 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-cb6f2-rs-size-300-maxLine-9-text-not-truncated-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-cb6f2-rs-size-300-maxLine-9-text-not-truncated-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-cb6f2-rs-size-300-maxLine-9-text-not-truncated-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-cb6f2-rs-size-300-maxLine-9-text-not-truncated-1-webkit-linux.png index fae3a60222..7da0885357 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-cb6f2-rs-size-300-maxLine-9-text-not-truncated-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-cb6f2-rs-size-300-maxLine-9-text-not-truncated-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-chromium-linux.png index dd64089bef..579033719a 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-firefox-linux.png index 835b769c70..8baa35d88e 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-webkit-linux.png index ebaf23e1dd..6b57853769 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-chromium-linux.png index a51b778880..bf9ab9e24d 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-firefox-linux.png index 4d1a6f2679..f335c8f537 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-webkit-linux.png index fb6f1e36e6..200edd30d8 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-ButtonLink-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-with-counter-addon-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-with-counter-addon-1-chromium-linux.png index 3187f086ff..4a861abc9f 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-with-counter-addon-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-with-counter-addon-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-with-counter-addon-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-with-counter-addon-1-firefox-linux.png index 69881115ae..10e609f0d3 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-with-counter-addon-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-with-counter-addon-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-with-counter-addon-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-with-counter-addon-1-webkit-linux.png index 639c0f0be5..826c1a0cb0 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-with-counter-addon-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-with-counter-addon-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-disabled-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-disabled-1-chromium-linux.png index 05c5eb880b..b89e7468f7 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-disabled-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-disabled-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-disabled-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-disabled-1-firefox-linux.png index 233f935a2f..2d840ec12f 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-disabled-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-disabled-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-disabled-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-disabled-1-webkit-linux.png index f89032cbf2..b4e07b5a78 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-disabled-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-disabled-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-with-hint-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-with-hint-1-chromium-linux.png index 67ddcf8b2e..839358bd19 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-with-hint-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-with-hint-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-with-hint-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-with-hint-1-firefox-linux.png index 802f344826..cb787518ce 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-with-hint-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-with-hint-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-with-hint-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-with-hint-1-webkit-linux.png index d48e474070..e93c95623f 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-with-hint-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-icon-only-with-hint-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-1-chromium-linux.png index 4a21dea76b..a4b812c8d9 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-1-firefox-linux.png index 1951f4fbe8..726047229f 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-1-webkit-linux.png index e0d450d6f4..e5ca195648 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-disabled-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-disabled-1-chromium-linux.png index 56487b606a..96c1fc6698 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-disabled-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-disabled-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-disabled-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-disabled-1-firefox-linux.png index d4bde72899..800d3565dc 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-disabled-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-disabled-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-disabled-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-disabled-1-webkit-linux.png index b0ee880155..9b8b552739 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-disabled-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-inside-text-disabled-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-1-chromium-linux.png index 682e85e530..e283a9d4b9 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-1-firefox-linux.png index 8513c24cf4..9c1758ad3f 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-1-webkit-linux.png index 3c8f9e3d01..644b1e807f 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-2-chromium-linux.png index f9d22231d6..a3bcbbd5e6 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-2-firefox-linux.png index db49b857cd..0093393abc 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-2-webkit-linux.png index 1c403aa08b..0bc63d2053 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-mixed-addon-types-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-1-chromium-linux.png index c9ebbeea63..8df85d4aad 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png index 1e6c1901b3..0ededb0973 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-1-webkit-linux.png index 750a1cde5e..ea89882424 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-2-chromium-linux.png index d9a779fec2..9c89d5d9a0 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png index d51dad43aa..728835c6fe 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-2-webkit-linux.png index e70d7ad6fd..9d49d0677a 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png index 7018b664d9..edc3772862 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png index 669564ca66..8ae28bf346 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png index 299bc1ba54..9feca3bc35 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png index c7a9afc9e6..688f40792b 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png index 847adbdb1e..fab7a2def0 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png index 9bfb77a882..a84a0be60b 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-1-chromium-linux.png index 5ea0a14262..6a7f68ea06 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-1-firefox-linux.png index 7d7cd3e155..dfc3fd2a32 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-1-webkit-linux.png index f15c007585..98f958aecd 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-2-chromium-linux.png index b752be9eed..f70dbe3471 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-2-firefox-linux.png index 07f7a9217b..573799a97b 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-2-webkit-linux.png index b6242fecdc..64bc6725c4 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-1-chromium-linux.png index 5fc7ac0f16..6f9ccd1b2f 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-1-firefox-linux.png index 4775cd3d3e..a1cbe15460 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-1-webkit-linux.png index 9e8c2cc627..906fe76bf3 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-2-chromium-linux.png index d1ed0d1266..0ac95d6765 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-2-firefox-linux.png index 03a7fbfdb8..1cdb41ce24 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-2-webkit-linux.png index b0d5ad1885..c8e1d2810e 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-3-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-3-chromium-linux.png index 570f1ed3c7..ed71ca4f15 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-3-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-3-firefox-linux.png index 2296a693c0..94dcbb437a 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-3-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-3-webkit-linux.png index 4dfc36fb00..d7b0fe9e0a 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-3-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-1-chromium-linux.png index f194029474..80d058d8bc 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-1-firefox-linux.png index d4d24f05c7..031eef299f 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-1-webkit-linux.png index 33a4c08789..ceece02ea0 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-2-chromium-linux.png index 2c5ce1c088..65678ca30a 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-2-firefox-linux.png index a716dfa09b..54fce9c129 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-2-webkit-linux.png index 72d693db13..282544ccbc 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonLeft-badge-secondary-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-1-chromium-linux.png index e26623ad64..e543254490 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-1-firefox-linux.png index 7b18729888..7f5f564b13 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-1-webkit-linux.png index 13a020d33b..6708090bb0 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-2-chromium-linux.png index 341234facf..7b17c93ae5 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-2-firefox-linux.png index 630eae4e12..0c4743a714 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-2-webkit-linux.png index 62696d1527..c15764ca9b 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-addonRight-counter-secondary-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-1-chromium-linux.png index 369eca0aa2..cfc83707a5 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-1-firefox-linux.png index a809150bc9..2cfed96dda 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-1-webkit-linux.png index fbee497623..f65022d3c4 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-2-chromium-linux.png index c8ddc9ae2e..ac3be5575b 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-2-firefox-linux.png index 69801504b9..9f0db5a89b 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-2-webkit-linux.png index c0f70016c6..2bca31dd7f 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-both-addons-spin-secondary-end-maxLine-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-1-chromium-linux.png index e7271a5361..4f2e251be3 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-1-firefox-linux.png index 68c01cf162..d887c7dfd6 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-1-webkit-linux.png index f9a50e6549..0799daf27b 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-2-chromium-linux.png index edbd9cb69a..593c0e73fb 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-2-firefox-linux.png index 8aca4bb253..92a266f78b 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-2-webkit-linux.png index 2d20e8a8d5..339b856d83 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-3-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-3-chromium-linux.png index b96b66bcbd..822a5ec8ae 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-3-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-3-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-3-firefox-linux.png index 556ab3dca2..52b79f22d6 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-3-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-3-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-3-webkit-linux.png index 85fb970ab1..4c0e33f2ad 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-3-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-200-no-addons-text-success-secondary-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-1-chromium-linux.png index e728c53421..8c14f9af9e 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png index 5d84837d10..168efc1f12 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-1-webkit-linux.png index c2310630b6..7f291107eb 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-2-chromium-linux.png index 7a5caf9e82..6136dd1340 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png index 4164f1f3b4..ebe0611d69 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-2-webkit-linux.png index 6568034ff9..301f5ab4a5 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-1-chromium-linux.png index 04e5ef5a3c..ec05c21477 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png index 153e27c741..d619c0526f 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-1-webkit-linux.png index 7013c4e965..cc1500c822 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-2-chromium-linux.png index aff0de3d5c..d279c3bcc7 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png index bc0366fc51..7e3383e56a 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-2-webkit-linux.png index ebc1ab06be..e427f45836 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonRight-spin-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-1-chromium-linux.png index 8f8bd8f625..1c259a3aae 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-1-firefox-linux.png index 7e551b527d..2490b4c3fb 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-1-webkit-linux.png index 485a0fbff8..72c05baa6a 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-2-chromium-linux.png index dc16a9eca1..01460c9c8c 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-2-firefox-linux.png index b00c25dda9..be914ae47a 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-2-webkit-linux.png index 25cc30a4e0..c2ba6278a1 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-1-chromium-linux.png index ba62a01d81..3772e5f921 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png index 2f3f76fc74..9aee43bb92 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-1-webkit-linux.png index 3b9d277ba8..4595e8149a 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-2-chromium-linux.png index a0e1ba646e..cb85f975af 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-2-firefox-linux.png index c942224df4..f58da5c422 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-2-webkit-linux.png index cef92dfe6a..3dbceeab45 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-3-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-3-chromium-linux.png index 647643ced0..2875229aa4 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-3-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png index 2f55e5f31f..ee5a598be0 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-3-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-3-webkit-linux.png index 8340faa631..9003431278 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-3-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-1-chromium-linux.png new file mode 100644 index 0000000000..19c32e9713 Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-1-firefox-linux.png new file mode 100644 index 0000000000..c82458446e Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-1-webkit-linux.png new file mode 100644 index 0000000000..22d22ba177 Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-2-chromium-linux.png new file mode 100644 index 0000000000..2c398bcc0a Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-2-firefox-linux.png new file mode 100644 index 0000000000..e8e894e4c1 Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-2-webkit-linux.png new file mode 100644 index 0000000000..247bdbf3ea Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png new file mode 100644 index 0000000000..c9e93c3623 Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png new file mode 100644 index 0000000000..ce8afb4138 Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png new file mode 100644 index 0000000000..44f80394e2 Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png new file mode 100644 index 0000000000..749d078383 Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png new file mode 100644 index 0000000000..285a83927e Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png new file mode 100644 index 0000000000..63b98771bc Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-1-chromium-linux.png new file mode 100644 index 0000000000..0c32c8867e Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-1-firefox-linux.png new file mode 100644 index 0000000000..4d1d50fccb Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-1-webkit-linux.png new file mode 100644 index 0000000000..26e8320971 Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-2-chromium-linux.png new file mode 100644 index 0000000000..df92087e68 Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-2-firefox-linux.png new file mode 100644 index 0000000000..d1d1f91098 Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-2-webkit-linux.png new file mode 100644 index 0000000000..c8d92e0861 Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-both-addons-counter-end-maxLine-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-1-chromium-linux.png new file mode 100644 index 0000000000..edd924935c Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-1-firefox-linux.png new file mode 100644 index 0000000000..49b98815ff Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-1-webkit-linux.png new file mode 100644 index 0000000000..3f4608d3aa Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-2-chromium-linux.png new file mode 100644 index 0000000000..848dd01499 Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-2-firefox-linux.png new file mode 100644 index 0000000000..ca490b6404 Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-2-webkit-linux.png new file mode 100644 index 0000000000..e323db163b Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-3-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-3-chromium-linux.png new file mode 100644 index 0000000000..e2f4e4fad3 Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-3-firefox-linux.png new file mode 100644 index 0000000000..dcfae4edb2 Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-3-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-3-webkit-linux.png new file mode 100644 index 0000000000..164143a8d0 Binary files /dev/null and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-1-chromium-linux.png index 5a951cfd56..395c927401 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-1-firefox-linux.png index 6465b198c7..515a21e303 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-1-webkit-linux.png index 223f2c644f..5447a7d24a 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-2-chromium-linux.png index 483e7f4234..30bb1458bd 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-2-firefox-linux.png index 017a9c54a0..eb044b0193 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-2-webkit-linux.png index 552c42cd94..f70f0e1390 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonLeft-spin-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-1-chromium-linux.png index 4fe0b48f9d..55e892e7a4 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png index 9e9741d758..4c56efdcaf 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-1-webkit-linux.png index 5b8aa46cbd..7908387181 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-2-chromium-linux.png index 446b438d28..6dba8069ac 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-2-firefox-linux.png index aee0b03957..b3549ca0ac 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-2-webkit-linux.png index 5b4340d654..1a4138a280 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-1-chromium-linux.png index 150835d0cb..dc13aebd6a 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-1-firefox-linux.png index 0147e334dd..81b3c78a02 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-1-webkit-linux.png index 6f0cf16dfe..3a784ae0f7 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-2-chromium-linux.png index 0a828beaba..49858e4bed 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-2-firefox-linux.png index 98738a4ecd..0e139c22e4 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-2-webkit-linux.png index 65819fd363..1b8cd54234 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-1-chromium-linux.png index e01a3151d7..6e9ef35a8f 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-1-firefox-linux.png index 4930875661..8f5439e1f7 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-1-webkit-linux.png index 0b0ca20ee1..2897490e95 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-2-chromium-linux.png index 93aa08a406..34241377f8 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-2-firefox-linux.png index f5ebfc0f63..e7ac2af633 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-2-webkit-linux.png index e4bd8b89c0..2b89e47877 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-3-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-3-chromium-linux.png index 8a43046be3..13966b544f 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-3-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-3-firefox-linux.png index f352f7a0d4..bda6e703e1 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-3-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-3-webkit-linux.png index 437fc08bb0..6f84a9df49 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-3-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-1-chromium-linux.png index 252c378a76..1f9773d952 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png index be60c88799..d1847572f4 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-1-webkit-linux.png index b97ec965eb..12845bbd62 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-2-chromium-linux.png index dd519c166a..fcacf1b394 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-2-firefox-linux.png index 70c60214bd..1b450e9039 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-2-webkit-linux.png index 47cfb26186..cafeaf0b8b 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png index 5f77a62017..b2a8928c62 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png index 2ca40ce515..a415def52c 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png index 4bc5c42755..315aab3650 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png index 5440509441..98f6825a7a 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png index 11786694cd..16580638fd 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png index 1d16b87a9c..85c7e8b40e 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-1-chromium-linux.png index 1a8a1f87bf..e97e544f5e 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-1-firefox-linux.png index 30552da520..5eb62ef94d 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-1-webkit-linux.png index e1ea656a3d..b0054b945e 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-2-chromium-linux.png index c5397740b4..7d1c7b9500 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-2-firefox-linux.png index 18432b4ec0..829e66409d 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-2-webkit-linux.png index 810270c25f..b6b380854f 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-1-chromium-linux.png index 615d71959c..5953b49299 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-1-firefox-linux.png index cb1182a7fd..a93d0f7d87 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-1-webkit-linux.png index cb4d54dbd0..1db71abf5e 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-2-chromium-linux.png index afc2662148..8279ca95b5 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-2-firefox-linux.png index 7a64112ea3..1848db9ce1 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-2-webkit-linux.png index 78544c28f2..86d243e560 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-3-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-3-chromium-linux.png index 6d16312cc8..2b31432631 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-3-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-3-firefox-linux.png index f0cbdbd217..b76dfc36d6 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-3-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-3-webkit-linux.png index be06afc98b..a5d79e3ccf 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-3-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-1-chromium-linux.png index a57ffce50f..a406f6bcea 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-1-firefox-linux.png index 932d67b0bb..7f5a6afe89 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-1-webkit-linux.png index e039110cab..581ff48a12 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-2-chromium-linux.png index 7d97af8632..1f0ed69f85 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-2-firefox-linux.png index a63bf0e161..5940e0ef9d 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-2-webkit-linux.png index dac70c0f71..2dc12ed039 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonLeft-badge-secondary-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-1-chromium-linux.png index e77cf0b91d..8091986307 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-1-firefox-linux.png index e0e536b0d9..a6dde2d1ae 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-1-webkit-linux.png index c0698f6054..18292e15b6 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-2-chromium-linux.png index aed3455c43..342b6582e0 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-2-firefox-linux.png index 5cd4503151..2a05a2c76e 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-2-webkit-linux.png index 44a29cd409..c67a5e9410 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-addonRight-counter-secondary-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-1-chromium-linux.png index 39ee5f0b18..8ee0d4eca4 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-1-firefox-linux.png index 53273f19fd..150942ffd6 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-1-webkit-linux.png index b4f3a32fd1..f3fecd03e3 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-2-chromium-linux.png index a33c3849b7..7e522e2807 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-2-firefox-linux.png index efbd02383d..e3eb063694 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-2-webkit-linux.png index 793535df72..8e3b391bf4 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-both-addons-spin-secondary-end-maxLine-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-1-chromium-linux.png index 60b92915b2..416c5c78b1 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-1-firefox-linux.png index 7345ce03d9..9b028e7a79 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-1-webkit-linux.png index bd39be21be..77174d8857 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-2-chromium-linux.png index 0d6addb079..aa946ec637 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-2-firefox-linux.png index 2ff12f8ea8..727b7f71cd 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-2-webkit-linux.png index 4804d3009e..a1c2b93896 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-3-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-3-chromium-linux.png index 29e978a740..276dfda19d 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-3-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-3-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-3-firefox-linux.png index d04213e6d2..f7d4f53521 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-3-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-3-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-3-webkit-linux.png index 13155ad7c8..4167eea59c 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-3-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-600-no-addons-text-success-secondary-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-1-chromium-linux.png index 9d6b51681d..15b05811ef 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png index 74a8d067c2..7514cf26d1 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-1-webkit-linux.png index 1dc6f7d7aa..8b0b301a2c 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-2-chromium-linux.png index a2775d5296..04d0ee4a5f 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png index 1a3ae8ac55..760ad4b393 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-2-webkit-linux.png index 44b9499195..89938e093d 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-1-chromium-linux.png index 08ac3c0868..9d2cebbdf1 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png index ed62d37e83..26a01b4c92 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-1-webkit-linux.png index 0e1ad1d29d..7a62d05bd0 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-2-chromium-linux.png index c76cebdefa..a67d114137 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png index bdaaa2bb4f..922e7571e7 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-2-webkit-linux.png index 1c8293050f..88ef960fcb 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonRight-spin-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-1-chromium-linux.png index c4434bc54f..ab6f9bfa23 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-1-firefox-linux.png index 94f888a149..a3be1b7581 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-1-webkit-linux.png index 19683cee44..99097aff62 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-2-chromium-linux.png index f7378026c8..a78a28fd1f 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-2-firefox-linux.png index e94a27527d..baa1459819 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-2-webkit-linux.png index 469aace7eb..f2628f4c4c 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-1-chromium-linux.png index d9d73dfc5a..9fd682513b 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png index e87aa264eb..e6c7ed575b 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-1-webkit-linux.png index 1d2c4c0383..fb012b6d45 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-2-chromium-linux.png index c5f473606c..deffe80ce8 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-2-firefox-linux.png index a6428e444d..fda6312557 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-2-webkit-linux.png index e61ca16255..bf1d22ec77 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-3-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-3-chromium-linux.png index 3bebe1c4b8..0673b086fa 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-3-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png index 41b7ce6bfc..e611bd1d42 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-3-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-3-webkit-linux.png index 5cd5981781..6d1d53afd8 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-3-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-1-chromium-linux.png index 2e8804130b..5b128021ee 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-1-firefox-linux.png index 4616c3ba08..c26cee6798 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-1-webkit-linux.png index dee2fd4a0c..63bd3356d0 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-2-chromium-linux.png index 8e4f2bbfa5..cb52489114 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-2-firefox-linux.png index 614710576a..5e36a05020 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-2-webkit-linux.png index d77a8fd534..949845bb3b 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonLeft-spin-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-1-chromium-linux.png index 3f98269a64..0216d6a5ca 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png index 117fa7fa6e..19e7201815 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-1-webkit-linux.png index 6943b77d71..f340dc04f5 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-2-chromium-linux.png index 904cc2188e..e53d656b38 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-2-firefox-linux.png index 946eff5174..84e4914fc8 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-2-webkit-linux.png index cf15dfa72b..6c60d8a6fc 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-1-chromium-linux.png index 357abb4d2e..9ee2dc41f6 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-1-firefox-linux.png index 454c9fdd08..6dc917c18c 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-1-webkit-linux.png index 702965df56..f654ada5bc 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-2-chromium-linux.png index c8714fa5a1..32c232a6eb 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-2-firefox-linux.png index 9e5bb542b6..5333392ba4 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-2-webkit-linux.png index 54e9e12daf..0464146ec4 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-1-chromium-linux.png index 65864d134e..778464028e 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-1-firefox-linux.png index 87090c782c..5c763bcabc 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-1-webkit-linux.png index f783ca6023..364cee71db 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-2-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-2-chromium-linux.png index 84d882d6de..ce1d39eedf 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-2-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-2-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-2-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-2-firefox-linux.png index 7ded6089a2..25957d1fef 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-2-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-2-webkit-linux.png index 911d8f72b3..2d41e57997 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-2-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-2-webkit-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-3-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-3-chromium-linux.png index 2c1c80f52e..6c5d595fb0 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-3-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-3-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-3-firefox-linux.png index b538b7121e..764389150b 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-3-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-3-webkit-linux.png index 2f4ed676d0..72967b63fc 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-3-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-3-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx b/semcore/button/__tests__/button.browser-test.tsx index 7c3ee0d300..641ecb8e9f 100644 --- a/semcore/button/__tests__/button.browser-test.tsx +++ b/semcore/button/__tests__/button.browser-test.tsx @@ -73,7 +73,10 @@ test.describe(`${TAG.VISUAL} `, () => { variablesPrimary.forEach((item) => { test(`Verify Base example size=${item.size} theme=${item.theme} disabled=${item.disabled} active=${item.active} loading=${item.loading}`, { tag: [TAG.PRIORITY_HIGH, - '@button'], + '@button', + '@base-components', + '@flex-box', + '@badge'], }, async ({ page }) => { await loadPage(page, 'stories/components/button/tests/examples/button-base.tsx', 'en', normalizeThemeProps(item)); @@ -91,8 +94,8 @@ test.describe(`${TAG.VISUAL} `, () => { const hasAddon = await addon.count(); if (hasText && !hasAddon) { - await expect(text).toHaveCSS('margin-left', item.size === 'm' ? '8px' : '12px'); - await expect(text).toHaveCSS('margin-right', item.size === 'm' ? '8px' : '12px'); + await expect(text).toHaveCSS('margin-left', '12px'); + await expect(text).toHaveCSS('margin-right', '12px'); await expect(text).toHaveCSS('font-size', item.size === 'm' ? '14px' : '16px'); } } @@ -133,7 +136,8 @@ test.describe(`${TAG.VISUAL} `, () => { tag: [TAG.PRIORITY_HIGH, '@button', '@base-components', - '@neighbor-location'], + '@neighbor-location', + '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/button/tests/examples/button-neighbor-location.tsx', 'en', normalizeThemeProps(item)); @@ -151,8 +155,8 @@ test.describe(`${TAG.VISUAL} `, () => { const hasAddon = await addon.count(); if (hasText && !hasAddon) { - await expect(text).toHaveCSS('margin-left', item.size === 'm' ? '8px' : '12px'); - await expect(text).toHaveCSS('margin-right', item.size === 'm' ? '8px' : '12px'); + await expect(text).toHaveCSS('margin-left', '12px'); + await expect(text).toHaveCSS('margin-right', '12px'); await expect(text).toHaveCSS('font-size', item.size === 'm' ? '14px' : '16px'); } } @@ -193,7 +197,10 @@ test.describe(`${TAG.VISUAL} `, () => { test(`Verify Addon only example size=${item.size} theme=${item.theme} disabled=${item.disabled} active=${item.active} loading=${item.loading} hintPlacement=${item.hintPlacement}`, { tag: [TAG.PRIORITY_HIGH, '@button', - '@base-components'], + '@base-components', + '@flex-box', + '@tooltip', + '@hint'], }, async ({ page }) => { await loadPage(page, 'stories/components/button/tests/examples/button-icon-only.tsx', 'en', normalizeThemeProps(item)); const hint = page.locator('div[data-ui-name="Hint"]'); @@ -279,8 +286,8 @@ test.describe(`${TAG.VISUAL} `, () => { const hasAddon = await addon.count(); if (hasText && !hasAddon) { - await expect(text).toHaveCSS('margin-left', item.size === 'm' ? '8px' : '12px'); - await expect(text).toHaveCSS('margin-right', item.size === 'm' ? '8px' : '12px'); + await expect(text).toHaveCSS('margin-left', '12px'); + await expect(text).toHaveCSS('margin-right', '12px'); await expect(text).toHaveCSS('font-size', item.size === 'm' ? '14px' : '16px'); } } @@ -340,8 +347,8 @@ test.describe(`${TAG.VISUAL} `, () => { const hasAddon = await addon.count(); if (hasText && !hasAddon) { - await expect(text).toHaveCSS('margin-left', item.size === 'm' ? '8px' : '12px'); - await expect(text).toHaveCSS('margin-right', item.size === 'm' ? '8px' : '12px'); + await expect(text).toHaveCSS('margin-left', '12px'); + await expect(text).toHaveCSS('margin-right', '12px'); await expect(text).toHaveCSS('font-size', item.size === 'm' ? '14px' : '16px'); } } @@ -469,8 +476,8 @@ test.describe(`${TAG.VISUAL} `, () => { const hasAddon = await addon.count(); if (hasText && !hasAddon) { - await expect(text).toHaveCSS('margin-left', item.size === 'm' ? '8px' : '12px'); - await expect(text).toHaveCSS('margin-right', item.size === 'm' ? '8px' : '12px'); + await expect(text).toHaveCSS('margin-left', '12px'); + await expect(text).toHaveCSS('margin-right', '12px'); await expect(text).toHaveCSS('font-size', item.size === 'm' ? '14px' : '16px'); } } @@ -530,8 +537,8 @@ test.describe(`${TAG.VISUAL} `, () => { const hasAddon = await addon.count(); if (hasText && !hasAddon) { - await expect(text).toHaveCSS('margin-left', item.size === 'm' ? '8px' : '12px'); - await expect(text).toHaveCSS('margin-right', item.size === 'm' ? '8px' : '12px'); + await expect(text).toHaveCSS('margin-left', '12px'); + await expect(text).toHaveCSS('margin-right', '12px'); await expect(text).toHaveCSS('font-size', item.size === 'm' ? '14px' : '16px'); } } diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-08fcb--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-08fcb--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index 6bd791f2c3..99c839ba91 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-08fcb--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-08fcb--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-08fcb--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-08fcb--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index a25dec0f2e..eac0a250f3 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-08fcb--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-08fcb--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-08fcb--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-08fcb--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index 89790a0f2e..037b5dfe68 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-08fcb--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-08fcb--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-10e40--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-10e40--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index 4836a1b50b..c35b5cbc7e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-10e40--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-10e40--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-10e40--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-10e40--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index 6780d031ea..1ec52de1ae 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-10e40--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-10e40--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-10e40--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-10e40--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index ddee13fb76..07a374346c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-10e40--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-10e40--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-189fc--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-189fc--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index 7417cc9acd..acaa915e3a 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-189fc--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-189fc--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-189fc--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-189fc--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index 589e245171..e3c662cfba 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-189fc--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-189fc--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-189fc--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-189fc--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index 5cd72d37eb..643ab80a79 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-189fc--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-189fc--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-34c71--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-34c71--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index f709f77858..c6bd2922bb 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-34c71--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-34c71--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-34c71--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-34c71--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index aeee8a8c4c..7e78702f11 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-34c71--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-34c71--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-34c71--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-34c71--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index d9f943d462..00c16f2056 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-34c71--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-34c71--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-chromium-linux.png index 430bf247f4..ae59cea03c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-firefox-linux.png index 3f5b3e9718..97020ffc1e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-webkit-linux.png index fcf299e655..d2197d56d1 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3ddf6--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3ddf6--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index fe677dcb13..e735578056 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3ddf6--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3ddf6--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3ddf6--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3ddf6--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index 811c0b5a7d..b7cee823b3 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3ddf6--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3ddf6--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3ddf6--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3ddf6--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index 327cacc932..c646648a30 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3ddf6--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3ddf6--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-42c15--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-42c15--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index 0732cec930..512f2c4880 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-42c15--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-42c15--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-42c15--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-42c15--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index 1e6c56a99e..8050c2ac5e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-42c15--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-42c15--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-42c15--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-42c15--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index 8196c49f1d..e9fc8c35a8 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-42c15--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-42c15--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-50434-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-50434-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png index 33be4190a8..363a987590 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-50434-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-50434-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-50434-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-50434-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png index 57066e04f4..ba7e1aa63d 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-50434-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-50434-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-50434-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-50434-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png index 995e931b02..34f44036ca 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-50434-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-50434-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-56d1c--active-false-loading-true-hintPlacement-left-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-56d1c--active-false-loading-true-hintPlacement-left-1-chromium-linux.png index 1271f7fc8e..8998fab50c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-56d1c--active-false-loading-true-hintPlacement-left-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-56d1c--active-false-loading-true-hintPlacement-left-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-56d1c--active-false-loading-true-hintPlacement-left-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-56d1c--active-false-loading-true-hintPlacement-left-1-firefox-linux.png index e38e27ac46..8a574712a3 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-56d1c--active-false-loading-true-hintPlacement-left-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-56d1c--active-false-loading-true-hintPlacement-left-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-56d1c--active-false-loading-true-hintPlacement-left-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-56d1c--active-false-loading-true-hintPlacement-left-1-webkit-linux.png index 4c03dcc0c5..208023de7f 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-56d1c--active-false-loading-true-hintPlacement-left-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-56d1c--active-false-loading-true-hintPlacement-left-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-57478-ctive-false-loading-false-hintPlacement-right-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-57478-ctive-false-loading-false-hintPlacement-right-1-chromium-linux.png index 150588ee13..9a9d99a515 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-57478-ctive-false-loading-false-hintPlacement-right-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-57478-ctive-false-loading-false-hintPlacement-right-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-57478-ctive-false-loading-false-hintPlacement-right-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-57478-ctive-false-loading-false-hintPlacement-right-1-firefox-linux.png index 0c757b74fb..d43a4caf48 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-57478-ctive-false-loading-false-hintPlacement-right-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-57478-ctive-false-loading-false-hintPlacement-right-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-57478-ctive-false-loading-false-hintPlacement-right-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-57478-ctive-false-loading-false-hintPlacement-right-1-webkit-linux.png index c5bccfb556..07be0528b9 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-57478-ctive-false-loading-false-hintPlacement-right-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-57478-ctive-false-loading-false-hintPlacement-right-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-65b53--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-65b53--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index 237c03bbe4..dae23f17aa 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-65b53--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-65b53--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-65b53--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-65b53--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index 6274c5ed30..646f031a22 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-65b53--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-65b53--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-65b53--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-65b53--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index 150800fa97..e4cde77742 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-65b53--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-65b53--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-6fa39--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-6fa39--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index 60e95c27cb..ec62ba7c76 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-6fa39--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-6fa39--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-6fa39--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-6fa39--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index 6ba74cce38..bd7302243a 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-6fa39--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-6fa39--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-6fa39--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-6fa39--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index e9c0fd7d14..a5a60384d7 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-6fa39--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-6fa39--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-77aa6--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-77aa6--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index e0e0d99d10..60081c0ba3 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-77aa6--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-77aa6--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-77aa6--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-77aa6--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index 77943d9f33..3146f62395 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-77aa6--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-77aa6--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-77aa6--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-77aa6--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index 38a9c54814..5addd99abb 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-77aa6--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-77aa6--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-7956e-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-7956e-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png index 1c65741c90..c3c36b0752 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-7956e-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-7956e-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-7956e-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-7956e-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png index 8007ad5edb..310d405787 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-7956e-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-7956e-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-7956e-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-7956e-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png index 4e682c9e34..95658b06db 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-7956e-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-7956e-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8a4c2-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8a4c2-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png index 27428e5e77..a0555fba51 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8a4c2-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8a4c2-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8a4c2-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8a4c2-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png index 40f930df1e..512e93b12e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8a4c2-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8a4c2-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8a4c2-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8a4c2-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png index 6a0b608b6e..dba93aa1c2 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8a4c2-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8a4c2-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8ef67--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8ef67--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index 150588ee13..c87619872b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8ef67--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8ef67--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8ef67--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8ef67--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index 0c757b74fb..190845990a 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8ef67--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8ef67--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8ef67--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8ef67--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index 38d81bce6f..2d5bb90c88 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8ef67--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-8ef67--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-900c8-active-false-loading-false-hintPlacement-left-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-900c8-active-false-loading-false-hintPlacement-left-1-chromium-linux.png index 150588ee13..a697f4f3a3 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-900c8-active-false-loading-false-hintPlacement-left-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-900c8-active-false-loading-false-hintPlacement-left-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-900c8-active-false-loading-false-hintPlacement-left-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-900c8-active-false-loading-false-hintPlacement-left-1-firefox-linux.png index 0c757b74fb..b266842356 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-900c8-active-false-loading-false-hintPlacement-left-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-900c8-active-false-loading-false-hintPlacement-left-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-900c8-active-false-loading-false-hintPlacement-left-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-900c8-active-false-loading-false-hintPlacement-left-1-webkit-linux.png index b42007114c..d4591bd767 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-900c8-active-false-loading-false-hintPlacement-left-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-900c8-active-false-loading-false-hintPlacement-left-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-9dab7-tive-false-loading-false-hintPlacement-bottom-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-9dab7-tive-false-loading-false-hintPlacement-bottom-1-chromium-linux.png index 1045367fed..07e1dab086 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-9dab7-tive-false-loading-false-hintPlacement-bottom-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-9dab7-tive-false-loading-false-hintPlacement-bottom-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-9dab7-tive-false-loading-false-hintPlacement-bottom-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-9dab7-tive-false-loading-false-hintPlacement-bottom-1-firefox-linux.png index 18d8de4afd..53a1d62a13 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-9dab7-tive-false-loading-false-hintPlacement-bottom-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-9dab7-tive-false-loading-false-hintPlacement-bottom-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-9dab7-tive-false-loading-false-hintPlacement-bottom-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-9dab7-tive-false-loading-false-hintPlacement-bottom-1-webkit-linux.png index c87ccaf38f..044625c9a9 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-9dab7-tive-false-loading-false-hintPlacement-bottom-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-9dab7-tive-false-loading-false-hintPlacement-bottom-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b1d80--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b1d80--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index eec1c6aa3d..8a174c19a5 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b1d80--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b1d80--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b1d80--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b1d80--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index 5c98e3bbc1..acb7c9a86e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b1d80--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b1d80--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b1d80--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b1d80--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index 17249e3369..7fb4bcc969 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b1d80--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b1d80--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b9302-ctive-false-loading-true-hintPlacement-bottom-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b9302-ctive-false-loading-true-hintPlacement-bottom-1-chromium-linux.png index 9cfc901b04..d23a22de62 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b9302-ctive-false-loading-true-hintPlacement-bottom-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b9302-ctive-false-loading-true-hintPlacement-bottom-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b9302-ctive-false-loading-true-hintPlacement-bottom-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b9302-ctive-false-loading-true-hintPlacement-bottom-1-firefox-linux.png index 462be4ac8a..8a592c2d88 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b9302-ctive-false-loading-true-hintPlacement-bottom-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b9302-ctive-false-loading-true-hintPlacement-bottom-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b9302-ctive-false-loading-true-hintPlacement-bottom-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b9302-ctive-false-loading-true-hintPlacement-bottom-1-webkit-linux.png index 009c699da5..07a3f1e42a 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b9302-ctive-false-loading-true-hintPlacement-bottom-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-b9302-ctive-false-loading-true-hintPlacement-bottom-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-chromium-linux.png index 1219c78bac..d9b3042cee 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-firefox-linux.png index 00319f927c..b2bfc68180 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-webkit-linux.png index de7153404b..c9d97c49ed 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-ebf18--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-ebf18--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index cf725febb0..88d32b7008 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-ebf18--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-ebf18--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-ebf18--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-ebf18--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index 0be498d2e3..7f625d1ccb 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-ebf18--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-ebf18--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-ebf18--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-ebf18--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index 1169776268..a05d06165f 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-ebf18--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-ebf18--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-f17b7-tive-false-loading-false-hintPlacement-bottom-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-f17b7-tive-false-loading-false-hintPlacement-bottom-1-chromium-linux.png index 150588ee13..ed2132c226 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-f17b7-tive-false-loading-false-hintPlacement-bottom-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-f17b7-tive-false-loading-false-hintPlacement-bottom-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-f17b7-tive-false-loading-false-hintPlacement-bottom-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-f17b7-tive-false-loading-false-hintPlacement-bottom-1-firefox-linux.png index 0c757b74fb..29ea1bfacf 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-f17b7-tive-false-loading-false-hintPlacement-bottom-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-f17b7-tive-false-loading-false-hintPlacement-bottom-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-f17b7-tive-false-loading-false-hintPlacement-bottom-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-f17b7-tive-false-loading-false-hintPlacement-bottom-1-webkit-linux.png index 4c256e8036..48df9bcdff 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-f17b7-tive-false-loading-false-hintPlacement-bottom-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-f17b7-tive-false-loading-false-hintPlacement-bottom-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-0423d-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-0423d-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png index 01558e0140..156470b909 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-0423d-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-0423d-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-0423d-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-0423d-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png index 4175f80f57..5465c86273 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-0423d-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-0423d-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-0423d-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-0423d-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png index 634ff774e5..fec021459b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-0423d-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-0423d-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-06a71-active-true-loading-false-hintPlacement-right-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-06a71-active-true-loading-false-hintPlacement-right-1-chromium-linux.png index e5b5243f39..8cdb0cbc7f 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-06a71-active-true-loading-false-hintPlacement-right-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-06a71-active-true-loading-false-hintPlacement-right-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-06a71-active-true-loading-false-hintPlacement-right-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-06a71-active-true-loading-false-hintPlacement-right-1-firefox-linux.png index 717884a99b..b1e32a644a 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-06a71-active-true-loading-false-hintPlacement-right-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-06a71-active-true-loading-false-hintPlacement-right-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-06a71-active-true-loading-false-hintPlacement-right-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-06a71-active-true-loading-false-hintPlacement-right-1-webkit-linux.png index 5d84811e4a..ef39a6b6f6 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-06a71-active-true-loading-false-hintPlacement-right-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-06a71-active-true-loading-false-hintPlacement-right-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-13b18--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-13b18--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index d9f9b5ef54..c01ef7439c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-13b18--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-13b18--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-13b18--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-13b18--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index e63ea26b49..fd187c8adf 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-13b18--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-13b18--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-13b18--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-13b18--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index 5ab34ca2b1..8e58c62486 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-13b18--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-13b18--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-chromium-linux.png index 39e5a4556e..aa7c00bd08 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-firefox-linux.png index fd8471e3eb..1ad165c7d5 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-webkit-linux.png index 4ac3a05010..1fec62a061 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2d1b1--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2d1b1--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index 82435a0672..9696055227 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2d1b1--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2d1b1--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2d1b1--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2d1b1--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index 6120b1af33..c080e1e55b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2d1b1--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2d1b1--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2d1b1--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2d1b1--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index 421afd95d1..b30f7f4208 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2d1b1--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2d1b1--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2ee6c--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2ee6c--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index a6fde1d88f..a2d55f9e31 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2ee6c--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2ee6c--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2ee6c--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2ee6c--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index 67e591500c..4d19e52743 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2ee6c--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2ee6c--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2ee6c--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2ee6c--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index a5ec3c89af..6050c730a3 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2ee6c--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2ee6c--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3796e-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3796e-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png index a5a9dfd3b6..4c29abb397 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3796e-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3796e-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3796e-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3796e-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png index 11a2ab3d25..7032dc5591 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3796e-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3796e-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3796e-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3796e-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png index e2ac1f2027..70c8d54fbc 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3796e-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3796e-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3ec54-ctive-true-loading-false-hintPlacement-bottom-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3ec54-ctive-true-loading-false-hintPlacement-bottom-1-chromium-linux.png index 3a487dcf32..e1bfba49af 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3ec54-ctive-true-loading-false-hintPlacement-bottom-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3ec54-ctive-true-loading-false-hintPlacement-bottom-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3ec54-ctive-true-loading-false-hintPlacement-bottom-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3ec54-ctive-true-loading-false-hintPlacement-bottom-1-firefox-linux.png index 55a3302afb..8968e6334a 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3ec54-ctive-true-loading-false-hintPlacement-bottom-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3ec54-ctive-true-loading-false-hintPlacement-bottom-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3ec54-ctive-true-loading-false-hintPlacement-bottom-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3ec54-ctive-true-loading-false-hintPlacement-bottom-1-webkit-linux.png index 936bf3dc38..68d0511d67 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3ec54-ctive-true-loading-false-hintPlacement-bottom-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-3ec54-ctive-true-loading-false-hintPlacement-bottom-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-45f0b-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-45f0b-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png index bb407417c9..27498e39b9 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-45f0b-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-45f0b-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-45f0b-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-45f0b-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png index fe1f57931a..9502189330 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-45f0b-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-45f0b-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-45f0b-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-45f0b-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png index fdab07707a..b58a5f9350 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-45f0b-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-45f0b-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-49928-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-49928-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png index 3d66ab0320..530dc6dd8c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-49928-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-49928-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-49928-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-49928-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png index f13af65d2f..fcc70a66c2 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-49928-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-49928-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-49928-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-49928-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png index d49638408d..58abdd0209 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-49928-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-49928-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-51d54-active-false-loading-true-hintPlacement-right-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-51d54-active-false-loading-true-hintPlacement-right-1-chromium-linux.png index 94e0d55060..0c8e08e986 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-51d54-active-false-loading-true-hintPlacement-right-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-51d54-active-false-loading-true-hintPlacement-right-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-51d54-active-false-loading-true-hintPlacement-right-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-51d54-active-false-loading-true-hintPlacement-right-1-firefox-linux.png index 12e0f83ffd..feed25828d 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-51d54-active-false-loading-true-hintPlacement-right-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-51d54-active-false-loading-true-hintPlacement-right-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-51d54-active-false-loading-true-hintPlacement-right-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-51d54-active-false-loading-true-hintPlacement-right-1-webkit-linux.png index f7d878ac77..43fa75b2a0 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-51d54-active-false-loading-true-hintPlacement-right-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-51d54-active-false-loading-true-hintPlacement-right-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5aa1e--active-true-loading-false-hintPlacement-left-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5aa1e--active-true-loading-false-hintPlacement-left-1-chromium-linux.png index 0137edf593..906c13697e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5aa1e--active-true-loading-false-hintPlacement-left-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5aa1e--active-true-loading-false-hintPlacement-left-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5aa1e--active-true-loading-false-hintPlacement-left-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5aa1e--active-true-loading-false-hintPlacement-left-1-firefox-linux.png index b05692f151..a2f01583b8 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5aa1e--active-true-loading-false-hintPlacement-left-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5aa1e--active-true-loading-false-hintPlacement-left-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5aa1e--active-true-loading-false-hintPlacement-left-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5aa1e--active-true-loading-false-hintPlacement-left-1-webkit-linux.png index 23101354fa..4c8c7bde6c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5aa1e--active-true-loading-false-hintPlacement-left-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5aa1e--active-true-loading-false-hintPlacement-left-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5d758--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5d758--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index 02a66ad16d..36dd57a0f4 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5d758--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5d758--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5d758--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5d758--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index 7099de381b..3f312eca85 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5d758--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5d758--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5d758--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5d758--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index 53cca85341..7efa01b5b5 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5d758--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-5d758--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-7bbee--active-false-loading-true-hintPlacement-left-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-7bbee--active-false-loading-true-hintPlacement-left-1-chromium-linux.png index d59cec4ace..b5f2954668 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-7bbee--active-false-loading-true-hintPlacement-left-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-7bbee--active-false-loading-true-hintPlacement-left-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-7bbee--active-false-loading-true-hintPlacement-left-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-7bbee--active-false-loading-true-hintPlacement-left-1-firefox-linux.png index b733b50ced..7b02effe06 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-7bbee--active-false-loading-true-hintPlacement-left-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-7bbee--active-false-loading-true-hintPlacement-left-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-7bbee--active-false-loading-true-hintPlacement-left-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-7bbee--active-false-loading-true-hintPlacement-left-1-webkit-linux.png index 01bbe8ae97..c045c05fc8 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-7bbee--active-false-loading-true-hintPlacement-left-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-7bbee--active-false-loading-true-hintPlacement-left-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-833ee--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-833ee--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index 78229ee4f1..e38df595c9 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-833ee--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-833ee--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-833ee--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-833ee--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index df36fd3354..b75fead585 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-833ee--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-833ee--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-833ee--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-833ee--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index 29e7e6bafd..49abb29ff6 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-833ee--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-833ee--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-8e208-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-8e208-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png index cfaba5543f..b2d577bd52 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-8e208-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-8e208-e-active-false-loading-true-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-8e208-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-8e208-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png index 918501ca46..e875bb1b14 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-8e208-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-8e208-e-active-false-loading-true-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-8e208-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-8e208-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png index 675e2d7225..3a60ad3cc5 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-8e208-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-8e208-e-active-false-loading-true-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-94ded-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-94ded-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png index 36bf170835..b214fef13a 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-94ded-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-94ded-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-94ded-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-94ded-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png index 2b9ec38c32..0f4944a8fd 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-94ded-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-94ded-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-94ded-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-94ded-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png index cef2521fd8..67101eb1e1 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-94ded-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-94ded-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-9abf1-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-9abf1-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png index 87cc5e72c9..9bc509fc1b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-9abf1-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-9abf1-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-9abf1-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-9abf1-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png index aa3c3a3d2f..2d9892a4d3 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-9abf1-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-9abf1-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-9abf1-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-9abf1-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png index e206ad707a..fe0c168e6f 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-9abf1-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-9abf1-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a0c88-tive-false-loading-false-hintPlacement-bottom-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a0c88-tive-false-loading-false-hintPlacement-bottom-1-chromium-linux.png index 197b65d88f..b626795fd7 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a0c88-tive-false-loading-false-hintPlacement-bottom-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a0c88-tive-false-loading-false-hintPlacement-bottom-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a0c88-tive-false-loading-false-hintPlacement-bottom-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a0c88-tive-false-loading-false-hintPlacement-bottom-1-firefox-linux.png index 7d6fd3b3a4..af09987518 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a0c88-tive-false-loading-false-hintPlacement-bottom-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a0c88-tive-false-loading-false-hintPlacement-bottom-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a0c88-tive-false-loading-false-hintPlacement-bottom-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a0c88-tive-false-loading-false-hintPlacement-bottom-1-webkit-linux.png index 373e12e488..41076952f2 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a0c88-tive-false-loading-false-hintPlacement-bottom-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a0c88-tive-false-loading-false-hintPlacement-bottom-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a45f9-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a45f9-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png index acbb36fbaf..eb352ad543 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a45f9-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a45f9-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a45f9-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a45f9-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png index 0491394586..092f20e46f 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a45f9-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a45f9-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a45f9-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a45f9-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png index 7d08b2cb07..68b0186c0c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a45f9-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-a45f9-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-afa44-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-afa44-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png index e82b69d6b7..af6f49316f 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-afa44-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-afa44-e-active-true-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-afa44-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-afa44-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png index 50131c6a77..f41c815a16 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-afa44-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-afa44-e-active-true-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-afa44-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-afa44-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png index 125c858615..4617f9f329 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-afa44-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-afa44-e-active-true-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-chromium-linux.png index 6d0e883f71..5dc8077714 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-firefox-linux.png index c3977ae6ad..3d7b3476ba 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-webkit-linux.png index 4edf57d41e..98ccade131 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cff73--active-false-loading-false-hintPlacement-top-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cff73--active-false-loading-false-hintPlacement-top-1-chromium-linux.png index ffd58ee0f4..e96657bc44 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cff73--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cff73--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cff73--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cff73--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index a0ed6ae550..957a6ef1ca 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cff73--active-false-loading-false-hintPlacement-top-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cff73--active-false-loading-false-hintPlacement-top-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cff73--active-false-loading-false-hintPlacement-top-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cff73--active-false-loading-false-hintPlacement-top-1-webkit-linux.png index 3d4fca7566..cf42ba3e52 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cff73--active-false-loading-false-hintPlacement-top-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cff73--active-false-loading-false-hintPlacement-top-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-prim-1197c-ess-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-prim-1197c-ess-disabled-false-active-false-loading-false-1-chromium-linux.png index 68e6600f88..7721d1e425 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-prim-1197c-ess-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-prim-1197c-ess-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-prim-1197c-ess-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-prim-1197c-ess-disabled-false-active-false-loading-false-1-firefox-linux.png index b4acd376f1..7439ce645b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-prim-1197c-ess-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-prim-1197c-ess-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-prim-1197c-ess-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-prim-1197c-ess-disabled-false-active-false-loading-false-1-webkit-linux.png index c639958694..f237877236 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-prim-1197c-ess-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-prim-1197c-ess-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-false-1-chromium-linux.png index 1ecf3c987e..36d8c03c08 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-false-1-firefox-linux.png index 171019f041..763e2662df 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-false-1-webkit-linux.png index 1345ffa1f6..bd7136d846 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-true-1-chromium-linux.png index 1c34a99bc6..df8f4d6fc4 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-true-1-firefox-linux.png index aab37b608b..aa90c3acfa 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-true-1-webkit-linux.png index ef3b6e9338..24fb8bb3cf 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-true-active-false-loading-false-1-chromium-linux.png index 25073e7dab..fa2f6e7d8e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-true-active-false-loading-false-1-firefox-linux.png index 07b2280e65..23db02ce3c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-true-active-false-loading-false-1-webkit-linux.png index f46df1dca6..1108c43c20 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-brand-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-false-active-false-loading-false-1-chromium-linux.png index 8729537876..bb6f9a3069 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-false-active-false-loading-false-1-firefox-linux.png index ddb4214ef2..34af8d1d0b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-false-active-false-loading-false-1-webkit-linux.png index cdf34a5b0d..3ff4d3211d 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-true-active-false-loading-false-1-chromium-linux.png index 25073e7dab..af10db0e30 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-true-active-false-loading-false-1-firefox-linux.png index 07b2280e65..c503ea80a7 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-true-active-false-loading-false-1-webkit-linux.png index bec5687e21..de9dbb713e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-danger-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-false-1-chromium-linux.png index b08237b82b..68d6e7f02e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-false-1-firefox-linux.png index f00f6f0950..fdc61793fd 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-false-1-webkit-linux.png index 3b3cc85f99..56fda4bbb7 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-true-1-chromium-linux.png index 27acc7e4a7..2c21a530eb 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-true-1-firefox-linux.png index 19a5e95036..517e6d5c2b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-true-1-webkit-linux.png index 2af5979427..e53c6f32e4 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-true-active-false-loading-false-1-chromium-linux.png index 25073e7dab..195a0b18bb 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-true-active-false-loading-false-1-firefox-linux.png index 07b2280e65..3370469ac6 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-true-active-false-loading-false-1-webkit-linux.png index 26bf942d0e..81793202bf 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-info-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-false-active-false-loading-false-1-chromium-linux.png index 625be8e037..b33b7bc623 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-false-active-false-loading-false-1-firefox-linux.png index 89d9ed113b..a8c71b06eb 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-false-active-false-loading-false-1-webkit-linux.png index 853ed28e3c..e780ca6478 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-true-active-false-loading-false-1-chromium-linux.png index d726bf5219..dd5822c18d 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-true-active-false-loading-false-1-firefox-linux.png index 9c757b7ce6..7ec969af2a 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-true-active-false-loading-false-1-webkit-linux.png index 17f2b1e29f..159d6dad96 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-invert-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-false-active-false-loading-true-1-chromium-linux.png index 4abe5541c9..07510ff3de 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-false-active-false-loading-true-1-firefox-linux.png index ff408170e9..e5db394e9c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-false-active-false-loading-true-1-webkit-linux.png index 9342f38b5b..d72a63ca7d 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-true-active-false-loading-false-1-chromium-linux.png index 25073e7dab..68a4f86218 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-true-active-false-loading-false-1-firefox-linux.png index 07b2280e65..255d11bc9c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-true-active-false-loading-false-1-webkit-linux.png index 28177f323b..8be3646992 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-primary-success-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-6f322-vert-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-6f322-vert-disabled-true-active-false-loading-false-1-chromium-linux.png index c191fc65b6..feb8a09a76 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-6f322-vert-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-6f322-vert-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-6f322-vert-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-6f322-vert-disabled-true-active-false-loading-false-1-firefox-linux.png index 8700b5c1b0..d8c699e6cf 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-6f322-vert-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-6f322-vert-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-6f322-vert-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-6f322-vert-disabled-true-active-false-loading-false-1-webkit-linux.png index de26a81616..35443e09a3 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-6f322-vert-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-6f322-vert-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-bb3a5-ted-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-bb3a5-ted-disabled-false-active-false-loading-false-1-chromium-linux.png index 7d80b94a02..fe22672136 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-bb3a5-ted-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-bb3a5-ted-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-bb3a5-ted-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-bb3a5-ted-disabled-false-active-false-loading-false-1-firefox-linux.png index 0ece8622f5..2c4120cdfa 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-bb3a5-ted-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-bb3a5-ted-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-bb3a5-ted-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-bb3a5-ted-disabled-false-active-false-loading-false-1-webkit-linux.png index 8214a43489..672e5eaa6e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-bb3a5-ted-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-bb3a5-ted-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-f4543-ert-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-f4543-ert-disabled-false-active-false-loading-false-1-chromium-linux.png index 27c2592a73..c6fe9c9c95 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-f4543-ert-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-f4543-ert-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-f4543-ert-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-f4543-ert-disabled-false-active-false-loading-false-1-firefox-linux.png index 511e1845e3..f612565c79 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-f4543-ert-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-f4543-ert-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-f4543-ert-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-f4543-ert-disabled-false-active-false-loading-false-1-webkit-linux.png index de346cb4e3..05da909ed3 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-f4543-ert-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-seco-f4543-ert-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-false-active-false-loading-true-1-chromium-linux.png index 91ef41b0a2..88229e44b5 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-false-active-false-loading-true-1-firefox-linux.png index f0ab23c2bf..e26e9e42b3 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-false-active-false-loading-true-1-webkit-linux.png index 6064a0cb2a..019c603166 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-true-active-false-loading-false-1-chromium-linux.png index b02fd2265e..d5f9fb1857 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-true-active-false-loading-false-1-firefox-linux.png index c41018cb1f..3163c728b5 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-true-active-false-loading-false-1-webkit-linux.png index 7d0661e366..16d8627e5d 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-secondary-muted-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tert-cf04d-ert-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tert-cf04d-ert-disabled-false-active-false-loading-false-1-chromium-linux.png index 88181da989..51b1437b1b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tert-cf04d-ert-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tert-cf04d-ert-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tert-cf04d-ert-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tert-cf04d-ert-disabled-false-active-false-loading-false-1-firefox-linux.png index b3c9cb79b9..338da03759 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tert-cf04d-ert-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tert-cf04d-ert-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tert-cf04d-ert-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tert-cf04d-ert-disabled-false-active-false-loading-false-1-webkit-linux.png index df857cdfa7..87a4a01321 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tert-cf04d-ert-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tert-cf04d-ert-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-invert-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-invert-disabled-true-active-false-loading-false-1-chromium-linux.png index c191fc65b6..10bfa5b659 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-invert-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-invert-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-invert-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-invert-disabled-true-active-false-loading-false-1-firefox-linux.png index 31425f87be..fb4cf59d3e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-invert-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-invert-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-invert-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-invert-disabled-true-active-false-loading-false-1-webkit-linux.png index 468bd20f2a..0121b49ecb 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-invert-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-invert-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-false-1-chromium-linux.png index 788721ff75..62e14446bc 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-false-1-firefox-linux.png index 865c10cff1..1b5a2954f0 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-false-1-webkit-linux.png index 330dd53a15..2cad754648 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-true-1-chromium-linux.png index 8cc16b6d3f..3142b1aae9 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-true-1-firefox-linux.png index 11a01d4f58..a612e5b540 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-true-1-webkit-linux.png index 3eb1903a48..bc0e721577 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-true-active-false-loading-false-1-chromium-linux.png index f39cd8b111..029a8b4971 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-true-active-false-loading-false-1-firefox-linux.png index 9a71ce075d..44fbefed6b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-true-active-false-loading-false-1-webkit-linux.png index dbbcf7806f..7664dc093f 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-l-theme-tertiary-muted-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-prim-b3d54-ess-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-prim-b3d54-ess-disabled-false-active-false-loading-false-1-chromium-linux.png index 2a72e07b17..cc751de2e0 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-prim-b3d54-ess-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-prim-b3d54-ess-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-prim-b3d54-ess-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-prim-b3d54-ess-disabled-false-active-false-loading-false-1-firefox-linux.png index 0ac9263caf..1e68d03f8c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-prim-b3d54-ess-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-prim-b3d54-ess-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-prim-b3d54-ess-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-prim-b3d54-ess-disabled-false-active-false-loading-false-1-webkit-linux.png index 6f0e180f4d..b7b2237014 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-prim-b3d54-ess-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-prim-b3d54-ess-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-false-1-chromium-linux.png index e16c265b2f..e54b852818 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-false-1-firefox-linux.png index a66f6e7772..45dc0da3c1 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-false-1-webkit-linux.png index bd20af448c..874d559edb 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-true-1-chromium-linux.png index 2bb687fc35..44ea34c337 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-true-1-firefox-linux.png index e86c3e59aa..23ed94ac5d 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-true-1-webkit-linux.png index 28144541ea..8c7a030ac1 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-true-loading-false-1-chromium-linux.png index 73e886bd92..c9f41b00bb 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-true-loading-false-1-firefox-linux.png index 3636a0c9d1..51bb3306ef 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-true-loading-false-1-webkit-linux.png index f1efca1cbb..2088479a75 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-brand-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-false-1-chromium-linux.png index 8d143290f0..1eb41656e4 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-false-1-firefox-linux.png index f7b00097d2..0883e1ed71 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-false-1-webkit-linux.png index 2ae7e69fdb..e3a40a667f 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-true-1-chromium-linux.png index fd6002aea6..5200b04df6 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-true-1-firefox-linux.png index 4025f3bd90..a061275be8 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-true-1-webkit-linux.png index 0a6d62431a..72ed0606b1 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-true-loading-false-1-chromium-linux.png index 7f3db368d0..fd1ba1b2c0 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-true-loading-false-1-firefox-linux.png index cd97a9ab3f..c9ce6696da 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-true-loading-false-1-webkit-linux.png index 6f9076b58e..43d1762000 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-danger-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-false-loading-false-1-chromium-linux.png index 8276504394..b4575b53fb 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-false-loading-false-1-firefox-linux.png index 83b78b84f6..b1207516c5 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-false-loading-false-1-webkit-linux.png index b877fd8137..57e365a963 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-true-loading-false-1-chromium-linux.png index 757f22330a..d6ec0edafc 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-true-loading-false-1-firefox-linux.png index 57b06a9891..02211455fd 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-true-loading-false-1-webkit-linux.png index c66bc68b65..fa44f21c99 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-info-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-false-1-chromium-linux.png index 7cf2f3b522..652ab8e9f4 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-false-1-firefox-linux.png index 930af4d16d..fac6b68308 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-false-1-webkit-linux.png index f8a2082f15..2cca05c9f4 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-true-1-chromium-linux.png index fe21214d95..dc214fdfb7 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-true-1-firefox-linux.png index bbcb0ccea0..82e43027d2 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-true-1-webkit-linux.png index 8cc94ee41a..8178542a9f 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-true-loading-false-1-chromium-linux.png index 6e615859bf..d6c45a6a1c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-true-loading-false-1-firefox-linux.png index 7b2084a2a0..3ab8927451 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-true-loading-false-1-webkit-linux.png index 8bf0c99310..5dace23596 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-invert-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-success-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-success-disabled-false-active-true-loading-false-1-chromium-linux.png index 96a4b0cf85..aac6c7a355 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-success-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-success-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-success-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-success-disabled-false-active-true-loading-false-1-firefox-linux.png index 54dad32d2a..91b8abe5e5 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-success-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-success-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-success-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-success-disabled-false-active-true-loading-false-1-webkit-linux.png index a7ae41ffe7..3f7b69883b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-success-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-primary-success-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-3f966-vert-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-3f966-vert-disabled-false-active-false-loading-true-1-chromium-linux.png index 199c8edb1f..333637fc12 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-3f966-vert-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-3f966-vert-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-3f966-vert-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-3f966-vert-disabled-false-active-false-loading-true-1-firefox-linux.png index 060d260783..2ed167dc8e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-3f966-vert-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-3f966-vert-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-3f966-vert-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-3f966-vert-disabled-false-active-false-loading-true-1-webkit-linux.png index a7dd43bd8b..09a3ed42a7 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-3f966-vert-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-3f966-vert-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-75f74-ted-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-75f74-ted-disabled-false-active-false-loading-false-1-chromium-linux.png index 5a28a0bd2f..cd8f12b38b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-75f74-ted-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-75f74-ted-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-75f74-ted-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-75f74-ted-disabled-false-active-false-loading-false-1-firefox-linux.png index 7a96951086..695d7471e5 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-75f74-ted-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-75f74-ted-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-75f74-ted-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-75f74-ted-disabled-false-active-false-loading-false-1-webkit-linux.png index e932245170..7e070f4f5d 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-75f74-ted-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-75f74-ted-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-ef38a-vert-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-ef38a-vert-disabled-false-active-true-loading-false-1-chromium-linux.png index 34ed77aede..3727e89ffd 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-ef38a-vert-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-ef38a-vert-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-ef38a-vert-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-ef38a-vert-disabled-false-active-true-loading-false-1-firefox-linux.png index 48c0ef132d..454a6026c0 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-ef38a-vert-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-ef38a-vert-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-ef38a-vert-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-ef38a-vert-disabled-false-active-true-loading-false-1-webkit-linux.png index 04ae63b28a..f78e48d9ff 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-ef38a-vert-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-ef38a-vert-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-f7a75-ert-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-f7a75-ert-disabled-false-active-false-loading-false-1-chromium-linux.png index 670d1b90fd..f6020d6412 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-f7a75-ert-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-f7a75-ert-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-f7a75-ert-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-f7a75-ert-disabled-false-active-false-loading-false-1-firefox-linux.png index fa11ce95b3..e7c6264cac 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-f7a75-ert-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-f7a75-ert-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-f7a75-ert-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-f7a75-ert-disabled-false-active-false-loading-false-1-webkit-linux.png index 0baee3f62e..66cdc3ef60 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-f7a75-ert-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-seco-f7a75-ert-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-secondary-muted-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-secondary-muted-disabled-false-active-true-loading-false-1-chromium-linux.png index fdf0a24b87..02f2d9c078 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-secondary-muted-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-secondary-muted-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-secondary-muted-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-secondary-muted-disabled-false-active-true-loading-false-1-firefox-linux.png index 848fce6683..3595e50aa9 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-secondary-muted-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-secondary-muted-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-secondary-muted-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-secondary-muted-disabled-false-active-true-loading-false-1-webkit-linux.png index 3530183f77..9baec616eb 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-secondary-muted-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-secondary-muted-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tert-3c573-ert-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tert-3c573-ert-disabled-false-active-false-loading-false-1-chromium-linux.png index eca0e7f2c1..3246fe905d 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tert-3c573-ert-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tert-3c573-ert-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tert-3c573-ert-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tert-3c573-ert-disabled-false-active-false-loading-false-1-firefox-linux.png index 6b55521028..35ee5e432b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tert-3c573-ert-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tert-3c573-ert-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tert-3c573-ert-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tert-3c573-ert-disabled-false-active-false-loading-false-1-webkit-linux.png index a09479c8dd..edf7f1fd9e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tert-3c573-ert-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tert-3c573-ert-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-false-loading-true-1-chromium-linux.png index 4c64036e16..d753527552 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-false-loading-true-1-firefox-linux.png index 76cb12f87e..d2174a7d41 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-false-loading-true-1-webkit-linux.png index f844c60dc1..01a870caeb 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-true-loading-false-1-chromium-linux.png index e34cabdf21..d8e262f2c4 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-true-loading-false-1-firefox-linux.png index be4d4ed7c8..454a6026c0 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-true-loading-false-1-webkit-linux.png index 8b176b5b25..f78e48d9ff 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-invert-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-false-loading-false-1-chromium-linux.png index 66055e99f4..176312972e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-false-loading-false-1-firefox-linux.png index 7bce1c0566..1061f44a5b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-false-loading-false-1-webkit-linux.png index 86028ff54c..a652c1febd 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-true-loading-false-1-chromium-linux.png index c3b366aad5..bf326e925c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-true-loading-false-1-firefox-linux.png index ccba903090..c5a95efeb2 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-true-loading-false-1-webkit-linux.png index d5c3be6ae4..fdd4f5b9bc 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Base-example-size-m-theme-tertiary-muted-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-end-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-end-1-chromium-linux.png index 61f12fb720..4e7ace544c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-end-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-end-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-end-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-end-1-firefox-linux.png index 59fe61470e..b8f45bab9e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-end-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-end-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-end-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-end-1-webkit-linux.png index 78d6712d5e..27de9e12cc 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-end-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-end-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-lastRequiredSymbols-2-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-lastRequiredSymbols-2-1-chromium-linux.png index da448c1efd..f5180cdda5 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-lastRequiredSymbols-2-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-lastRequiredSymbols-2-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-lastRequiredSymbols-2-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-lastRequiredSymbols-2-1-firefox-linux.png index 7e4bcb90a8..d3dffa5e6f 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-lastRequiredSymbols-2-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-lastRequiredSymbols-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-lastRequiredSymbols-2-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-lastRequiredSymbols-2-1-webkit-linux.png index 3d4868de35..dab4110b03 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-lastRequiredSymbols-2-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-lastRequiredSymbols-2-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-size-l-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-size-l-1-chromium-linux.png index 37a9f2c601..9259b32e70 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-size-l-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-size-l-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-size-l-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-size-l-1-firefox-linux.png index 1987a9287d..ed0f1bbd25 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-size-l-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-size-l-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-size-l-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-size-l-1-webkit-linux.png index 4ac7cfbf05..cd954cb633 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-size-l-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-Hint-visual-cropPosition-middle-size-l-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-05dc6-cess-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-05dc6-cess-disabled-false-active-false-loading-true-1-chromium-linux.png index 53a7c502b5..72b349a2e8 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-05dc6-cess-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-05dc6-cess-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-05dc6-cess-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-05dc6-cess-disabled-false-active-false-loading-true-1-firefox-linux.png index 7fee7e435a..1833581ee8 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-05dc6-cess-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-05dc6-cess-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-05dc6-cess-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-05dc6-cess-disabled-false-active-false-loading-true-1-webkit-linux.png index 40a7f4cf39..4bc436d386 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-05dc6-cess-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-05dc6-cess-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07aa9-and-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07aa9-and-disabled-false-active-false-loading-false-1-chromium-linux.png index effffbf731..b11ce03763 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07aa9-and-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07aa9-and-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07aa9-and-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07aa9-and-disabled-false-active-false-loading-false-1-firefox-linux.png index f42d8d97bb..9147f6d5c9 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07aa9-and-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07aa9-and-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07aa9-and-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07aa9-and-disabled-false-active-false-loading-false-1-webkit-linux.png index 76566033af..1eab93e1ba 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07aa9-and-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07aa9-and-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07dad-vert-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07dad-vert-disabled-false-active-false-loading-true-1-chromium-linux.png index 18c546d9d8..40f1f5b474 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07dad-vert-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07dad-vert-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07dad-vert-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07dad-vert-disabled-false-active-false-loading-true-1-firefox-linux.png index b2e8234483..9995ab8172 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07dad-vert-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07dad-vert-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07dad-vert-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07dad-vert-disabled-false-active-false-loading-true-1-webkit-linux.png index 67c966e362..aa61cca5d9 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07dad-vert-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-07dad-vert-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0aa81-rand-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0aa81-rand-disabled-true-active-false-loading-false-1-chromium-linux.png index 58af4a2b4d..438e9a0c2e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0aa81-rand-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0aa81-rand-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0aa81-rand-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0aa81-rand-disabled-true-active-false-loading-false-1-firefox-linux.png index c9c77d283f..ffce5f1713 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0aa81-rand-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0aa81-rand-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0aa81-rand-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0aa81-rand-disabled-true-active-false-loading-false-1-webkit-linux.png index 3b8c6d8a76..829ac93bf7 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0aa81-rand-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0aa81-rand-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0dca3-info-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0dca3-info-disabled-false-active-false-loading-true-1-chromium-linux.png index 5814e3a3f1..ef561b7d39 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0dca3-info-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0dca3-info-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0dca3-info-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0dca3-info-disabled-false-active-false-loading-true-1-firefox-linux.png index 3fd525b8bc..af964630f0 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0dca3-info-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0dca3-info-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0dca3-info-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0dca3-info-disabled-false-active-false-loading-true-1-webkit-linux.png index 15aa5b0579..4e7cba9015 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0dca3-info-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-0dca3-info-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-22afc-vert-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-22afc-vert-disabled-true-active-false-loading-false-1-chromium-linux.png index 4cf1b84f29..403e034b8d 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-22afc-vert-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-22afc-vert-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-22afc-vert-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-22afc-vert-disabled-true-active-false-loading-false-1-firefox-linux.png index 3fd9c65112..18c4cfb8e7 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-22afc-vert-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-22afc-vert-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-22afc-vert-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-22afc-vert-disabled-true-active-false-loading-false-1-webkit-linux.png index bba5284d94..1ce17c0ae2 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-22afc-vert-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-22afc-vert-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-277fc-vert-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-277fc-vert-disabled-false-active-false-loading-true-1-chromium-linux.png index e4969bb118..43c708884d 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-277fc-vert-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-277fc-vert-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-277fc-vert-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-277fc-vert-disabled-false-active-false-loading-true-1-firefox-linux.png index 01a2cf4297..7741b72eb7 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-277fc-vert-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-277fc-vert-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-277fc-vert-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-277fc-vert-disabled-false-active-false-loading-true-1-webkit-linux.png index cfe7ea290a..b3287dd989 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-277fc-vert-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-277fc-vert-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-34697-nfo-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-34697-nfo-disabled-false-active-false-loading-false-1-chromium-linux.png index edfeab3ab6..2ac70daf27 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-34697-nfo-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-34697-nfo-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-34697-nfo-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-34697-nfo-disabled-false-active-false-loading-false-1-firefox-linux.png index 04c9e0895d..5bb02abe21 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-34697-nfo-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-34697-nfo-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-34697-nfo-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-34697-nfo-disabled-false-active-false-loading-false-1-webkit-linux.png index df1c12eee1..36cf7a42e4 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-34697-nfo-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-34697-nfo-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-432ce-ess-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-432ce-ess-disabled-false-active-false-loading-false-1-chromium-linux.png index 953df019a8..7b2b87cef3 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-432ce-ess-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-432ce-ess-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-432ce-ess-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-432ce-ess-disabled-false-active-false-loading-false-1-firefox-linux.png index 28543f34bc..25c801e78d 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-432ce-ess-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-432ce-ess-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-432ce-ess-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-432ce-ess-disabled-false-active-false-loading-false-1-webkit-linux.png index 4c7792ac10..fcc1752e23 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-432ce-ess-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-432ce-ess-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-43321-ted-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-43321-ted-disabled-false-active-false-loading-false-1-chromium-linux.png index f36dcd6b71..bc805cbdc4 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-43321-ted-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-43321-ted-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-43321-ted-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-43321-ted-disabled-false-active-false-loading-false-1-firefox-linux.png index 0cce10fa5b..c9f8f18365 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-43321-ted-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-43321-ted-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-43321-ted-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-43321-ted-disabled-false-active-false-loading-false-1-webkit-linux.png index 59759973b1..258512efd5 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-43321-ted-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-43321-ted-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-483b9-rand-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-483b9-rand-disabled-false-active-true-loading-false-1-chromium-linux.png index 233e521fb9..200df807cd 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-483b9-rand-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-483b9-rand-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-483b9-rand-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-483b9-rand-disabled-false-active-true-loading-false-1-firefox-linux.png index cbb87a17ad..bfea0227af 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-483b9-rand-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-483b9-rand-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-483b9-rand-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-483b9-rand-disabled-false-active-true-loading-false-1-webkit-linux.png index bfe083fc71..7167233c5f 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-483b9-rand-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-483b9-rand-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-508f4-rand-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-508f4-rand-disabled-false-active-false-loading-true-1-chromium-linux.png index 699857ff3c..f0c7a0bf73 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-508f4-rand-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-508f4-rand-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-508f4-rand-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-508f4-rand-disabled-false-active-false-loading-true-1-firefox-linux.png index 5af251a95f..65b0a18b66 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-508f4-rand-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-508f4-rand-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-508f4-rand-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-508f4-rand-disabled-false-active-false-loading-true-1-webkit-linux.png index 8d79427b35..14fc333478 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-508f4-rand-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-508f4-rand-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-5e4e1-rand-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-5e4e1-rand-disabled-false-active-false-loading-true-1-chromium-linux.png index cfb9b2cbef..2c35d8b658 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-5e4e1-rand-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-5e4e1-rand-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-5e4e1-rand-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-5e4e1-rand-disabled-false-active-false-loading-true-1-firefox-linux.png index 0ccf394499..61fca58727 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-5e4e1-rand-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-5e4e1-rand-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-5e4e1-rand-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-5e4e1-rand-disabled-false-active-false-loading-true-1-webkit-linux.png index 531bb99bd4..148a6708b8 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-5e4e1-rand-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-5e4e1-rand-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-78a24-vert-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-78a24-vert-disabled-false-active-false-loading-true-1-chromium-linux.png index 07f1b87ce5..73a9cebf42 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-78a24-vert-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-78a24-vert-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-78a24-vert-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-78a24-vert-disabled-false-active-false-loading-true-1-firefox-linux.png index 2cdf340408..a5f487210a 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-78a24-vert-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-78a24-vert-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-78a24-vert-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-78a24-vert-disabled-false-active-false-loading-true-1-webkit-linux.png index cb3a7a5b7a..62535df663 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-78a24-vert-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-78a24-vert-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7d1ec-ert-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7d1ec-ert-disabled-false-active-false-loading-false-1-chromium-linux.png index b81d09313c..6094e2bca0 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7d1ec-ert-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7d1ec-ert-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7d1ec-ert-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7d1ec-ert-disabled-false-active-false-loading-false-1-firefox-linux.png index 0ad4e2dde6..6744747588 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7d1ec-ert-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7d1ec-ert-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7d1ec-ert-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7d1ec-ert-disabled-false-active-false-loading-false-1-webkit-linux.png index b3f24e1761..5f7ee8106b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7d1ec-ert-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7d1ec-ert-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7dd96-ert-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7dd96-ert-disabled-false-active-false-loading-false-1-chromium-linux.png index 2e235788ed..2fc55869c8 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7dd96-ert-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7dd96-ert-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7dd96-ert-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7dd96-ert-disabled-false-active-false-loading-false-1-firefox-linux.png index d33fe824c4..419007253e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7dd96-ert-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7dd96-ert-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7dd96-ert-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7dd96-ert-disabled-false-active-false-loading-false-1-webkit-linux.png index 1a8676e35c..05cd95d859 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7dd96-ert-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7dd96-ert-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7e085-ger-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7e085-ger-disabled-false-active-false-loading-false-1-chromium-linux.png index 1f26f2e323..d51844e5c8 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7e085-ger-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7e085-ger-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7e085-ger-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7e085-ger-disabled-false-active-false-loading-false-1-firefox-linux.png index 6b6a2b4c4d..9b6921e5c4 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7e085-ger-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7e085-ger-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7e085-ger-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7e085-ger-disabled-false-active-false-loading-false-1-webkit-linux.png index 9d0d881ccb..f42c170d49 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7e085-ger-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-7e085-ger-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9701b-vert-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9701b-vert-disabled-false-active-true-loading-false-1-chromium-linux.png index 33cffa7844..e5fdd76e6d 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9701b-vert-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9701b-vert-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9701b-vert-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9701b-vert-disabled-false-active-true-loading-false-1-firefox-linux.png index 6b228c0732..915d5bb545 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9701b-vert-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9701b-vert-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9701b-vert-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9701b-vert-disabled-false-active-true-loading-false-1-webkit-linux.png index fd3d2305a9..ce3a792da1 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9701b-vert-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9701b-vert-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-98d41-ger-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-98d41-ger-disabled-false-active-false-loading-false-1-chromium-linux.png index 0d9f0c0556..fca3adfe5c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-98d41-ger-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-98d41-ger-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-98d41-ger-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-98d41-ger-disabled-false-active-false-loading-false-1-firefox-linux.png index 255214e0e8..51c141533c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-98d41-ger-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-98d41-ger-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-98d41-ger-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-98d41-ger-disabled-false-active-false-loading-false-1-webkit-linux.png index 0235e4a234..c72d71077d 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-98d41-ger-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-98d41-ger-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9ab6b-uted-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9ab6b-uted-disabled-true-active-false-loading-false-1-chromium-linux.png index c708dc1362..b4e4df68af 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9ab6b-uted-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9ab6b-uted-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9ab6b-uted-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9ab6b-uted-disabled-true-active-false-loading-false-1-firefox-linux.png index 9aca52da50..894e893f77 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9ab6b-uted-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9ab6b-uted-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9ab6b-uted-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9ab6b-uted-disabled-true-active-false-loading-false-1-webkit-linux.png index 3ba570888a..31294b8931 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9ab6b-uted-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9ab6b-uted-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9e1d1-vert-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9e1d1-vert-disabled-true-active-false-loading-false-1-chromium-linux.png index e8fbc9b34b..b797548c85 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9e1d1-vert-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9e1d1-vert-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9e1d1-vert-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9e1d1-vert-disabled-true-active-false-loading-false-1-firefox-linux.png index 8943c634cc..5e942bf13b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9e1d1-vert-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9e1d1-vert-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9e1d1-vert-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9e1d1-vert-disabled-true-active-false-loading-false-1-webkit-linux.png index 715f0d5525..490ce2f6b6 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9e1d1-vert-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-9e1d1-vert-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2984-vert-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2984-vert-disabled-false-active-true-loading-false-1-chromium-linux.png index 97a15a833c..a2824e92c8 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2984-vert-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2984-vert-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2984-vert-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2984-vert-disabled-false-active-true-loading-false-1-firefox-linux.png index dd8371f2df..960995ae18 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2984-vert-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2984-vert-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2984-vert-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2984-vert-disabled-false-active-true-loading-false-1-webkit-linux.png index 6da796c5e8..8f6f233954 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2984-vert-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2984-vert-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2ddd-and-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2ddd-and-disabled-false-active-false-loading-false-1-chromium-linux.png index abe6eddfc2..e7b4a24683 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2ddd-and-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2ddd-and-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2ddd-and-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2ddd-and-disabled-false-active-false-loading-false-1-firefox-linux.png index 7dd937a0db..20f0da2c77 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2ddd-and-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2ddd-and-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2ddd-and-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2ddd-and-disabled-false-active-false-loading-false-1-webkit-linux.png index f1e023078b..3d74ad23d6 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2ddd-and-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-a2ddd-and-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-aba4f-info-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-aba4f-info-disabled-false-active-true-loading-false-1-chromium-linux.png index 9dbd2dc6d5..7c94d8412f 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-aba4f-info-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-aba4f-info-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-aba4f-info-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-aba4f-info-disabled-false-active-true-loading-false-1-firefox-linux.png index 6da1d93607..06b9770a60 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-aba4f-info-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-aba4f-info-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-aba4f-info-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-aba4f-info-disabled-false-active-true-loading-false-1-webkit-linux.png index ea4927d2d4..529b547940 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-aba4f-info-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-aba4f-info-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-af4db-nfo-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-af4db-nfo-disabled-false-active-false-loading-false-1-chromium-linux.png index d05b74b855..b36c59f702 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-af4db-nfo-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-af4db-nfo-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-af4db-nfo-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-af4db-nfo-disabled-false-active-false-loading-false-1-firefox-linux.png index e5c85078fa..5d45b56dce 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-af4db-nfo-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-af4db-nfo-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-af4db-nfo-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-af4db-nfo-disabled-false-active-false-loading-false-1-webkit-linux.png index 1a815a53f5..4d3b34f012 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-af4db-nfo-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-af4db-nfo-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b1dbf-uted-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b1dbf-uted-disabled-false-active-true-loading-false-1-chromium-linux.png index 3aebbc8494..ef75c9f5d3 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b1dbf-uted-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b1dbf-uted-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b1dbf-uted-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b1dbf-uted-disabled-false-active-true-loading-false-1-firefox-linux.png index 91deb47bef..2a87b93b4a 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b1dbf-uted-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b1dbf-uted-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b1dbf-uted-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b1dbf-uted-disabled-false-active-true-loading-false-1-webkit-linux.png index 2809c28cdc..8e47323e94 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b1dbf-uted-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b1dbf-uted-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b291c-ert-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b291c-ert-disabled-false-active-false-loading-false-1-chromium-linux.png index efd47d6199..a36717f0df 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b291c-ert-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b291c-ert-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b291c-ert-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b291c-ert-disabled-false-active-false-loading-false-1-firefox-linux.png index 20e2a81580..afa6cf2e18 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b291c-ert-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b291c-ert-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b291c-ert-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b291c-ert-disabled-false-active-false-loading-false-1-webkit-linux.png index 7fc14dc74d..af52864b78 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b291c-ert-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b291c-ert-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b79c1-ert-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b79c1-ert-disabled-false-active-false-loading-false-1-chromium-linux.png index 477f1fda94..f39809c6d5 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b79c1-ert-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b79c1-ert-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b79c1-ert-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b79c1-ert-disabled-false-active-false-loading-false-1-firefox-linux.png index 9f5b87a45a..f8312611da 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b79c1-ert-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b79c1-ert-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b79c1-ert-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b79c1-ert-disabled-false-active-false-loading-false-1-webkit-linux.png index c6a6f57a71..44756cbf1e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b79c1-ert-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b79c1-ert-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b7a57-vert-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b7a57-vert-disabled-false-active-true-loading-false-1-chromium-linux.png index a3d6147924..e5fdd76e6d 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b7a57-vert-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b7a57-vert-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b7a57-vert-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b7a57-vert-disabled-false-active-true-loading-false-1-firefox-linux.png index 17049e5b24..915d5bb545 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b7a57-vert-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b7a57-vert-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b7a57-vert-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b7a57-vert-disabled-false-active-true-loading-false-1-webkit-linux.png index 3b7047991d..ce3a792da1 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b7a57-vert-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-b7a57-vert-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-be292-uted-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-be292-uted-disabled-true-active-false-loading-false-1-chromium-linux.png index f607144881..064fa970b0 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-be292-uted-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-be292-uted-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-be292-uted-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-be292-uted-disabled-true-active-false-loading-false-1-firefox-linux.png index 687298a49c..638d43c6fb 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-be292-uted-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-be292-uted-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-be292-uted-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-be292-uted-disabled-true-active-false-loading-false-1-webkit-linux.png index 29071a070a..ad9bb5bc24 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-be292-uted-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-be292-uted-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c0b30-ert-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c0b30-ert-disabled-false-active-false-loading-false-1-chromium-linux.png index 0646bd318d..9a1ee17506 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c0b30-ert-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c0b30-ert-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c0b30-ert-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c0b30-ert-disabled-false-active-false-loading-false-1-firefox-linux.png index 142f766edc..19b7a76d1f 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c0b30-ert-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c0b30-ert-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c0b30-ert-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c0b30-ert-disabled-false-active-false-loading-false-1-webkit-linux.png index 5b3da367b3..59273a7d18 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c0b30-ert-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c0b30-ert-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c4150-cess-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c4150-cess-disabled-true-active-false-loading-false-1-chromium-linux.png index 10394270db..470cfc64af 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c4150-cess-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c4150-cess-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c4150-cess-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c4150-cess-disabled-true-active-false-loading-false-1-firefox-linux.png index 5db1545cd9..896c873e68 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c4150-cess-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c4150-cess-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c4150-cess-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c4150-cess-disabled-true-active-false-loading-false-1-webkit-linux.png index 3745341ce8..1ec4f4cd93 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c4150-cess-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c4150-cess-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c6200-cess-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c6200-cess-disabled-false-active-true-loading-false-1-chromium-linux.png index 9846f6df56..009d5ce88b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c6200-cess-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c6200-cess-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c6200-cess-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c6200-cess-disabled-false-active-true-loading-false-1-firefox-linux.png index 3b01336bc2..ef545d8870 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c6200-cess-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c6200-cess-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c6200-cess-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c6200-cess-disabled-false-active-true-loading-false-1-webkit-linux.png index 84c2e826f7..4fc3511909 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c6200-cess-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c6200-cess-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c9b87-ted-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c9b87-ted-disabled-false-active-false-loading-false-1-chromium-linux.png index 88d37002a2..dd2a5ca56c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c9b87-ted-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c9b87-ted-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c9b87-ted-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c9b87-ted-disabled-false-active-false-loading-false-1-firefox-linux.png index d5615f9a6e..97373c20b3 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c9b87-ted-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c9b87-ted-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c9b87-ted-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c9b87-ted-disabled-false-active-false-loading-false-1-webkit-linux.png index f0e038b126..f11cc320a7 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c9b87-ted-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-c9b87-ted-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-cb03a-ted-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-cb03a-ted-disabled-false-active-false-loading-false-1-chromium-linux.png index fe86356f6e..3e3fcf83e9 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-cb03a-ted-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-cb03a-ted-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-cb03a-ted-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-cb03a-ted-disabled-false-active-false-loading-false-1-firefox-linux.png index 7d2aaa8527..b3cc11dbdd 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-cb03a-ted-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-cb03a-ted-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-cb03a-ted-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-cb03a-ted-disabled-false-active-false-loading-false-1-webkit-linux.png index e6052caa9a..3f04f2ef15 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-cb03a-ted-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-cb03a-ted-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d042a-nger-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d042a-nger-disabled-false-active-false-loading-true-1-chromium-linux.png index 2227653cd0..9352af501c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d042a-nger-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d042a-nger-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d042a-nger-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d042a-nger-disabled-false-active-false-loading-true-1-firefox-linux.png index 62e26cc52c..385e304257 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d042a-nger-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d042a-nger-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d042a-nger-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d042a-nger-disabled-false-active-false-loading-true-1-webkit-linux.png index 0a0fd183af..ef6681809e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d042a-nger-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d042a-nger-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d1057-uted-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d1057-uted-disabled-false-active-true-loading-false-1-chromium-linux.png index b586d1a031..1e26f002a2 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d1057-uted-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d1057-uted-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d1057-uted-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d1057-uted-disabled-false-active-true-loading-false-1-firefox-linux.png index c7cf847fa1..5fb9a581ad 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d1057-uted-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d1057-uted-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d1057-uted-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d1057-uted-disabled-false-active-true-loading-false-1-webkit-linux.png index 28142dcaf5..5a9b29096b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d1057-uted-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-d1057-uted-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e6256-uted-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e6256-uted-disabled-false-active-false-loading-true-1-chromium-linux.png index 0b0a56b96c..f34ed6ab28 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e6256-uted-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e6256-uted-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e6256-uted-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e6256-uted-disabled-false-active-false-loading-true-1-firefox-linux.png index 4780d41599..206a5c5a76 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e6256-uted-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e6256-uted-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e6256-uted-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e6256-uted-disabled-false-active-false-loading-true-1-webkit-linux.png index c6c1a82032..7ef93c2875 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e6256-uted-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e6256-uted-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e70ee-ess-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e70ee-ess-disabled-false-active-false-loading-false-1-chromium-linux.png index edbe2d74fc..d74272b36c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e70ee-ess-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e70ee-ess-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e70ee-ess-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e70ee-ess-disabled-false-active-false-loading-false-1-firefox-linux.png index a58c383622..a9984fccb9 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e70ee-ess-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e70ee-ess-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e70ee-ess-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e70ee-ess-disabled-false-active-false-loading-false-1-webkit-linux.png index 22d4503053..0ef48ec57b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e70ee-ess-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e70ee-ess-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8163-info-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8163-info-disabled-true-active-false-loading-false-1-chromium-linux.png index e41b7fb406..e501ef5b4c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8163-info-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8163-info-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8163-info-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8163-info-disabled-true-active-false-loading-false-1-firefox-linux.png index c1b0679ee2..14f690a2e4 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8163-info-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8163-info-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8163-info-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8163-info-disabled-true-active-false-loading-false-1-webkit-linux.png index 604b8ca070..1c83dad283 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8163-info-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8163-info-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8b39-nger-disabled-false-active-true-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8b39-nger-disabled-false-active-true-loading-false-1-chromium-linux.png index 15046d7993..13df6dd12d 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8b39-nger-disabled-false-active-true-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8b39-nger-disabled-false-active-true-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8b39-nger-disabled-false-active-true-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8b39-nger-disabled-false-active-true-loading-false-1-firefox-linux.png index 4e39d54792..b879731c5a 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8b39-nger-disabled-false-active-true-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8b39-nger-disabled-false-active-true-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8b39-nger-disabled-false-active-true-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8b39-nger-disabled-false-active-true-loading-false-1-webkit-linux.png index 91560c7ee1..e37ef90301 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8b39-nger-disabled-false-active-true-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-e8b39-nger-disabled-false-active-true-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f2334-ert-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f2334-ert-disabled-false-active-false-loading-false-1-chromium-linux.png index e16ed1969b..35766222d9 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f2334-ert-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f2334-ert-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f2334-ert-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f2334-ert-disabled-false-active-false-loading-false-1-firefox-linux.png index a8fb55dcdf..582537cc93 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f2334-ert-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f2334-ert-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f2334-ert-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f2334-ert-disabled-false-active-false-loading-false-1-webkit-linux.png index ff41b0049c..e17066a154 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f2334-ert-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f2334-ert-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f260b-ted-disabled-false-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f260b-ted-disabled-false-active-false-loading-false-1-chromium-linux.png index 7eef90d95f..8324805232 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f260b-ted-disabled-false-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f260b-ted-disabled-false-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f260b-ted-disabled-false-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f260b-ted-disabled-false-active-false-loading-false-1-firefox-linux.png index c67bb03d8b..42973a85cd 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f260b-ted-disabled-false-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f260b-ted-disabled-false-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f260b-ted-disabled-false-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f260b-ted-disabled-false-active-false-loading-false-1-webkit-linux.png index 43014fa15b..5bef190d3e 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f260b-ted-disabled-false-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f260b-ted-disabled-false-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f30db-vert-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f30db-vert-disabled-true-active-false-loading-false-1-chromium-linux.png index e015468074..6428846d5f 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f30db-vert-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f30db-vert-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f30db-vert-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f30db-vert-disabled-true-active-false-loading-false-1-firefox-linux.png index e66e319a19..11583272b2 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f30db-vert-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f30db-vert-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f30db-vert-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f30db-vert-disabled-true-active-false-loading-false-1-webkit-linux.png index 2d4c16e1f8..83a883f49f 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f30db-vert-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f30db-vert-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f692a-nger-disabled-true-active-false-loading-false-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f692a-nger-disabled-true-active-false-loading-false-1-chromium-linux.png index 807bcda3e5..79816a17dd 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f692a-nger-disabled-true-active-false-loading-false-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f692a-nger-disabled-true-active-false-loading-false-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f692a-nger-disabled-true-active-false-loading-false-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f692a-nger-disabled-true-active-false-loading-false-1-firefox-linux.png index 859ef162a5..0d50dfc8ff 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f692a-nger-disabled-true-active-false-loading-false-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f692a-nger-disabled-true-active-false-loading-false-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f692a-nger-disabled-true-active-false-loading-false-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f692a-nger-disabled-true-active-false-loading-false-1-webkit-linux.png index 7bf59e8aaa..be5748e6f8 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f692a-nger-disabled-true-active-false-loading-false-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-f692a-nger-disabled-true-active-false-loading-false-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-fd4b3-uted-disabled-false-active-false-loading-true-1-chromium-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-fd4b3-uted-disabled-false-active-false-loading-true-1-chromium-linux.png index 6a5310f6dd..884e62574b 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-fd4b3-uted-disabled-false-active-false-loading-true-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-fd4b3-uted-disabled-false-active-false-loading-true-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-fd4b3-uted-disabled-false-active-false-loading-true-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-fd4b3-uted-disabled-false-active-false-loading-true-1-firefox-linux.png index 3092582b8d..42b68e00e4 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-fd4b3-uted-disabled-false-active-false-loading-true-1-firefox-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-fd4b3-uted-disabled-false-active-false-loading-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-fd4b3-uted-disabled-false-active-false-loading-true-1-webkit-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-fd4b3-uted-disabled-false-active-false-loading-true-1-webkit-linux.png index 01214f747e..a87ec29ff2 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-fd4b3-uted-disabled-false-active-false-loading-true-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Neignbor-location-example-size-fd4b3-uted-disabled-false-active-false-loading-true-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/index.test.tsx b/semcore/button/__tests__/index.test.tsx index 1be2bc70d8..d33444f49f 100644 --- a/semcore/button/__tests__/index.test.tsx +++ b/semcore/button/__tests__/index.test.tsx @@ -105,4 +105,18 @@ describe('ButtonLink', () => { expect(result).toMatchSnapshot(); }); + + test('Verify data-ui-name without an addon', () => { + const buttonLink = ( + + Button link + + ); + + const { container } = render(buttonLink); + + expect(extractUIName(container)).toMatchSnapshot(); + expect(container.querySelectorAll('[data-ui-name="Link.Text"] [data-ui-name="ButtonLink.Text"]')) + .toHaveLength(1); + }); }); diff --git a/semcore/button/src/component/Button/button.shadow.css b/semcore/button/src/component/Button/button.shadow.css index cc7d5f67d5..be22efd4a0 100644 --- a/semcore/button/src/component/Button/button.shadow.css +++ b/semcore/button/src/component/Button/button.shadow.css @@ -11,7 +11,7 @@ SButton { text-decoration: none; text-align: center; vertical-align: middle; - border: 1px solid transparent; + border: none; box-shadow: none; cursor: pointer; box-sizing: border-box; @@ -20,7 +20,7 @@ SButton { touch-action: manipulation; -webkit-tap-highlight-color: transparent; font-weight: var(--intergalactic-medium, 500); - color: var(--intergalactic-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); + color: var(--intergalactic-control-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); min-width: fit-content; &::-moz-focus-inner { @@ -49,213 +49,204 @@ SButton[size='s'] { } SButton[size='m'] { - height: var(--intergalactic-form-control-m, 28px); + height: var(--intergalactic-form-control-m, 32px); border-radius: var(--intergalactic-control-rounded, 6px); font-size: var(--intergalactic-fs-200, 14px); } +SButton[size='m']:has(SAddon:only-child) { + width: var(--intergalactic-form-control-m, 32px); + min-width: var(--intergalactic-form-control-m, 32px); +} + SButton[size='l'] { - height: var(--intergalactic-form-control-l, 40px); + height: var(--intergalactic-form-control-l, 44px); border-radius: var(--intergalactic-control-rounded, 6px); font-size: var(--intergalactic-fs-300, 16px); } +SButton[size='l']:has(SAddon:only-child) { + width: var(--intergalactic-form-control-l, 44px); + min-width: var(--intergalactic-form-control-l, 44px); +} + SButton[theme='primary-info'] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); background-color: var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); &:hover { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); background-color: var(--intergalactic-control-primary-info-hover, oklch(0.32 0.007 140)); } &:active, &[active] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); background-color: var(--intergalactic-control-primary-info-active, oklch(0 0 140)); } } SButton[theme='primary-success'] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); background-color: var(--intergalactic-control-primary-success, oklch(0.64 0.161 170)); &:hover { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); background-color: var(--intergalactic-control-primary-success-hover, oklch(0.6 0.155 170)); } &:active, &[active] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); background-color: var(--intergalactic-control-primary-success-active, oklch(0.58 0.151 170)); } } SButton[theme='primary-brand'] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - background-color: var(--intergalactic-control-primary-brand, oklch(0.64 0.223 299.3)); + color: var(--intergalactic-control-text-primary, oklch(0.1 0.03 137 / 0.899)); + background-color: var(--intergalactic-control-primary-brand, oklch(0.74 0.17 303)); &:hover { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - background-color: var(--intergalactic-control-primary-brand-hover, oklch(0.6 0.244 297.8)); + color: var(--intergalactic-control-text-primary, oklch(0.1 0.03 137 / 0.899)); + background-color: var(--intergalactic-control-primary-brand-hover, oklch(0.72 0.181 302.3)); } &:active, &[active] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - background-color: var(--intergalactic-control-primary-brand-active, oklch(0.58 0.254 297.1)); + color: var(--intergalactic-control-text-primary, oklch(0.1 0.03 137 / 0.899)); + background-color: var(--intergalactic-control-primary-brand-active, oklch(0.7 0.191 301.5)); } } SButton[theme='primary-warning'] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - background-color: var(--intergalactic-control-primary-brand, oklch(0.64 0.223 299.3)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + background-color: var(--intergalactic-control-primary-brand, oklch(0.74 0.17 303)); &:hover { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - background-color: var(--intergalactic-control-primary-brand-hover, oklch(0.6 0.244 297.8)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + background-color: var(--intergalactic-control-primary-brand-hover, oklch(0.72 0.181 302.3)); } &:active, &[active] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - background-color: var(--intergalactic-control-primary-brand-active, oklch(0.58 0.254 297.1)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + background-color: var(--intergalactic-control-primary-brand-active, oklch(0.7 0.191 301.5)); } } SButton[theme='primary-danger'] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); background-color: var(--intergalactic-control-primary-critical, oklch(0.64 0.226 24.5)); &:hover { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); background-color: var(--intergalactic-control-primary-critical-hover, oklch(0.6 0.219 25.5)); } &:active, &[active] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); background-color: var(--intergalactic-control-primary-critical-active, oklch(0.58 0.215 26)); } } SButton[theme='primary-invert'] { - color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); + color: var(--intergalactic-control-text-primary, oklch(0.1 0.03 137 / 0.899)); background-color: var(--intergalactic-control-primary-invert, oklch(1 0 0)); &:hover { - color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); + color: var(--intergalactic-control-text-primary, oklch(0.1 0.03 137 / 0.899)); background-color: var(--intergalactic-control-primary-invert-hover, oklch(0.96 0.001 180)); } &:active, &[active] { - color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); + color: var(--intergalactic-control-text-primary, oklch(0.1 0.03 137 / 0.899)); background-color: var(--intergalactic-control-primary-invert-active, oklch(0.94 0.002 180)); } } SButton[theme='secondary-muted'] { - color: var(--intergalactic-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); - border-color: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); - background-color: var(--intergalactic-control-secondary-neutral, oklch(0.177 0.033 175.6 / 0.028)); + color: var(--intergalactic-control-text-primary, oklch(0.1 0.03 137 / 0.899)); + background-color: var(--intergalactic-control-secondary-neutral, oklch(0.166 0.031 175.8 / 0.097)); &:hover { background-color: var(--intergalactic-control-secondary-neutral-hover, - oklch(0.176 0.033 175.6 / 0.056)); - color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); + oklch(0.151 0.028 176.1 / 0.123)); + color: var(--intergalactic-control-text-primary, oklch(0.1 0.03 137 / 0.899)); } &:active, &[active] { background-color: var(--intergalactic-control-secondary-neutral-active, - oklch(0.176 0.033 175.7 / 0.084)); - color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); - } -} - -SButton[theme='secondary-info'] { - background-color: var(--intergalactic-control-secondary-info, oklch(0.527 0.264 262.9 / 0.039)); - color: var(--intergalactic-text-link, oklch(0.53 0.21 263)); - border-color: var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); - - &:hover { - color: var(--intergalactic-text-link, oklch(0.53 0.21 263)); - background-color: var(--intergalactic-control-secondary-info-hover, oklch(0.525 0.265 263 / 0.077)); - } - - &:active, - &[active] { - color: var(--intergalactic-text-link, oklch(0.53 0.21 263)); - background-color: var(--intergalactic-control-secondary-info-active, oklch(0.524 0.266 263.1 / 0.116)); + oklch(0.145 0.027 176.1 / 0.135)); + color: var(--intergalactic-control-text-primary, oklch(0.1 0.03 137 / 0.899)); } } SButton[theme='secondary-invert'] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - border-color: var(--intergalactic-border-primary-invert, oklch(0.995 0.008 147.4 / 0.391)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); background-color: var(--intergalactic-control-secondary-invert, oklch(0.969 0.057 140 / 0.118)); &:hover { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - background-color: var(--intergalactic-control-secondary-invert-hover, oklch(0.976 0.043 140 / 0.145)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + background-color: var(--intergalactic-control-secondary-invert-hover, oklch(0.98 0.036 140 / 0.164)); } &:active, &[active] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); background-color: var(--intergalactic-control-secondary-invert-active, - oklch(0.983 0.03 140 / 0.183)); + oklch(0.986 0.025 140 / 0.203)); } } SButton[theme='tertiary-info'] { - color: var(--intergalactic-text-link, oklch(0.53 0.21 263)); + color: var(--intergalactic-text-link-accent, oklch(0.6 0.166 277.7)); background-color: var(--intergalactic-control-tertiary-info, transparent); &:hover { - color: var(--intergalactic-text-link, oklch(0.53 0.21 263)); - background-color: var(--intergalactic-control-tertiary-info-hover, oklch(0.525 0.265 263 / 0.077)); + color: var(--intergalactic-text-link-accent, oklch(0.6 0.166 277.7)); + background-color: var(--intergalactic-control-tertiary-info-hover, oklch(0.526 0.264 263 / 0.058)); } &:active, &[active] { - color: var(--intergalactic-text-link, oklch(0.53 0.21 263)); - background-color: var(--intergalactic-control-tertiary-info-active, oklch(0.524 0.266 263.1 / 0.116)); + color: var(--intergalactic-text-link-accent, oklch(0.6 0.166 277.7)); + background-color: var(--intergalactic-control-tertiary-info-active, oklch(0.525 0.265 263 / 0.077)); } } SButton[theme='tertiary-muted'] { - color: var(--intergalactic-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); + color: var(--intergalactic-control-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); background-color: var(--intergalactic-control-tertiary-neutral, transparent); &:hover { - background-color: var(--intergalactic-control-tertiary-neutral-hover, oklch(0.176 0.033 175.6 / 0.056)); - color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); + background-color: var(--intergalactic-control-tertiary-neutral-hover, oklch(0.177 0.033 175.6 / 0.042)); + color: var(--intergalactic-control-text-primary, oklch(0.1 0.03 137 / 0.899)); } &:active, &[active] { background-color: var(--intergalactic-control-tertiary-neutral-active, - oklch(0.176 0.033 175.7 / 0.084)); - color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); + oklch(0.176 0.033 175.6 / 0.056)); + color: var(--intergalactic-control-text-primary, oklch(0.1 0.03 137 / 0.899)); } } SButton[theme='tertiary-invert'] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); background-color: var(--intergalactic-control-tertiary-invert, transparent); &:hover { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - background-color: var(--intergalactic-control-tertiary-invert-hover, oklch(0.976 0.043 140 / 0.145)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + background-color: var(--intergalactic-control-tertiary-invert-hover, oklch(0.98 0.036 140 / 0.164)); } &:active, &[active] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - background-color: var(--intergalactic-control-tertiary-invert-active, oklch(0.983 0.03 140 / 0.183)); + color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + background-color: var(--intergalactic-control-tertiary-invert-active, oklch(0.986 0.025 140 / 0.203)); } } @@ -266,15 +257,11 @@ SButton[neighborLocation='right'] { SButton[neighborLocation='both'] { border-radius: 0; - /* disable-tokens-validator */ - margin-left: -1px; } SButton[neighborLocation='left'] { border-top-left-radius: 0; border-bottom-left-radius: 0; - /* disable-tokens-validator */ - margin-left: -1px; } SButton[neighborLocation='both'], @@ -282,12 +269,12 @@ SButton[neighborLocation='left'] { position: relative; &:after { - background-color: var(--intergalactic-border-primary-invert, oklch(0.995 0.008 147.4 / 0.391)); - } + background-color: var(--intergalactic-border-primary-invert, oklch(0.995 0.009 144.4 / 0.347)); + } /* TODO: need to add a new variables for neighbor location borders based on the final UI */ &[theme='secondary-muted'] { &:after { - background-color: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); + background-color: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); /* TODO: need to add a new variables for neighbor location borders based on the final UI */ } } } @@ -296,10 +283,10 @@ SButton+SButton[neighborLocation='both']:after, SButton+SButton[neighborLocation='left']:after { content: ''; position: absolute; - top: -1px; - left: -1px; + top: 0; + left: 0; width: 1px; - height: calc(100% + 2px); + height: 100%; } SSpin { @@ -328,27 +315,40 @@ SText { } SText[size='m'] { - margin-left: var(--intergalactic-spacing-2x, 8px); - margin-right: var(--intergalactic-spacing-2x, 8px); + margin-left: var(--intergalactic-spacing-content-gap-medium, 6px); + margin-right: var(--intergalactic-spacing-content-gap-medium, 6px); line-height: var(--intergalactic-lh-200, 142%); + + &:only-child { + margin-left: var(--intergalactic-spacing-content-padding-medium, 12px); + margin-right: var(--intergalactic-spacing-content-padding-medium, 12px); + } + + &:first-child { + margin-left: var(--intergalactic-spacing-content-padding-medium, 12px); + } + + &:last-child { + margin-right: var(--intergalactic-spacing-content-padding-medium, 12px); + } } SText[size='l'] { - margin-left: var(--intergalactic-spacing-2x, 8px); - margin-right: var(--intergalactic-spacing-2x, 8px); + margin-left: var(--intergalactic-spacing-content-gap-medium, 6px); + margin-right: var(--intergalactic-spacing-content-gap-medium, 6px); line-height: var(--intergalactic-lh-300, 150%); &:only-child { - margin-left: var(--intergalactic-spacing-3x, 12px); - margin-right: var(--intergalactic-spacing-3x, 12px); + margin-left: var(--intergalactic-spacing-content-padding-medium, 12px); + margin-right: var(--intergalactic-spacing-content-padding-medium, 12px); } &:first-child { - margin-left: var(--intergalactic-spacing-3x, 12px); + margin-left: var(--intergalactic-spacing-content-padding-medium, 12px); } &:last-child { - margin-right: var(--intergalactic-spacing-3x, 12px); + margin-right: var(--intergalactic-spacing-content-padding-medium, 12px); } } @@ -361,38 +361,30 @@ SAddon { SAddon[size='m'] { &:not(:only-child):first-child { - margin-left: calc(var(--intergalactic-spacing-2x, 8px) - 1px); - /* -1px - for border width */ + margin-left: var(--intergalactic-spacing-content-padding-medium, 12px); } &:not(:only-child):last-child { - margin-right: calc(var(--intergalactic-spacing-2x, 8px) - 1px); - /* -1px - for border width */ + margin-right: var(--intergalactic-spacing-content-padding-medium, 12px); } &:only-child { - margin-left: calc(1.5 * var(--intergalactic-spacing-1x, 4px) - 1px); - /* -1px - for border width */ - margin-right: calc(1.5 * var(--intergalactic-spacing-1x, 4px) - 1px); - /* -1px - for border width */ + margin-left: var(--intergalactic-spacing-content-gap-large, 8px); + margin-right: var(--intergalactic-spacing-content-gap-large, 8px); } } SAddon[size='l'] { &:not(:only-child):first-child { - margin-left: calc(var(--intergalactic-spacing-3x, 12px) - 1px); - /* -1px - for border width */ + margin-left: var(--intergalactic-spacing-content-padding-medium, 12px); } &:not(:only-child):last-child { - margin-right: calc(var(--intergalactic-spacing-3x, 12px) - 1px); - /* -1px - for border width */ + margin-right: var(--intergalactic-spacing-content-padding-medium, 12px); } &:only-child { - margin-left: calc(3 * var(--intergalactic-spacing-1x, 4px) - 1px); - /* -1px - for border width */ - margin-right: calc(3 * var(--intergalactic-spacing-1x, 4px) - 1px); - /* -1px - for border width */ + margin-left: var(--intergalactic-spacing-content-padding-medium, 12px); + margin-right: var(--intergalactic-spacing-content-padding-medium, 12px); } } diff --git a/semcore/button/src/component/ButtonLink/ButtonLink.tsx b/semcore/button/src/component/ButtonLink/ButtonLink.tsx index 8881a8f7de..9073af3502 100644 --- a/semcore/button/src/component/ButtonLink/ButtonLink.tsx +++ b/semcore/button/src/component/ButtonLink/ButtonLink.tsx @@ -1,4 +1,4 @@ -import type { Intergalactic } from '@semcore/core'; +import type { Intergalactic, IRootComponentProps } from '@semcore/core'; import { createComponent, sstyled, Root, Component } from '@semcore/core'; import Link from '@semcore/link'; import React from 'react'; @@ -37,6 +37,12 @@ class RootButtonLink extends Component< } } +function Text(props: IRootComponentProps) { + const SText = Root; + const { styles } = props; + return sstyled(styles)(); +} + /** * ButtonLink * @@ -45,7 +51,7 @@ class RootButtonLink extends Component< export const ButtonLink = createComponent( RootButtonLink, { - Text: Link.Text, + Text, Addon: Link.Addon, }, { diff --git a/semcore/button/src/component/ButtonLink/buttonLink.shadow.css b/semcore/button/src/component/ButtonLink/buttonLink.shadow.css index 37e85010d8..1519838023 100644 --- a/semcore/button/src/component/ButtonLink/buttonLink.shadow.css +++ b/semcore/button/src/component/ButtonLink/buttonLink.shadow.css @@ -3,13 +3,25 @@ SButtonLink { font-family: inherit; } -SButtonLink[use='primary']:not([color]) { - color: var(--intergalactic-text-link, oklch(0.53 0.21 263)); +SButtonLink[use='primary'] { + &:not([color]) { + color: var(--intergalactic-text-link-primary, oklch(0.1 0.03 137 / 0.899)); + } + + SText { + text-decoration-color: transparent; + } &[active], &:active, &:hover { - color: var(--intergalactic-text-link-hover-active, oklch(0.51 0.202 263)); + &:not([color]) { + color: var(--intergalactic-text-link-primary-hover-active, oklch(0.1 0.03 137 / 0.899)); + } + + SText { + text-decoration-color: currentColor; + } } } @@ -19,11 +31,11 @@ SButtonLink[use='secondary']:not([color]) { &[active], &:active, &:hover { - color: var(--intergalactic-text-hint-hover-active, oklch(0.086 0.026 145.8 / 0.605)); + color: var(--intergalactic-text-link-primary, oklch(0.1 0.03 137 / 0.899)); } } SButtonLink[use='secondary'] SText { - text-decoration-style: dashed; + text-decoration-style: dotted; text-decoration-color: currentColor; } diff --git a/semcore/card/__tests__/card.browser-test.tsx b/semcore/card/__tests__/card.browser-test.tsx index 1a6f8d3699..94e9e57092 100644 --- a/semcore/card/__tests__/card.browser-test.tsx +++ b/semcore/card/__tests__/card.browser-test.tsx @@ -44,18 +44,18 @@ test.describe(`${TAG.VISUAL} `, () => { await test.step('Verify header paddings', async () => { await expect(header).toHaveCSS('padding-left', '20px'); await expect(header).toHaveCSS('padding-right', '20px'); - await expect(header).toHaveCSS('padding-top', '8px'); - await expect(header).toHaveCSS('padding-bottom', '8px'); + await expect(header).toHaveCSS('padding-top', '20px'); + await expect(header).toHaveCSS('padding-bottom', '12px'); }); await test.step('Verify title styles', async () => { await expect(title).toHaveCSS('margin-right', '4px'); - await expect(title).toHaveCSS('font-size', '16px'); - await expect(title).toHaveCSS('font-weight', '700'); + await expect(title).toHaveCSS('font-size', '18px'); + await expect(title).toHaveCSS('font-weight', '600'); }); await test.step('Verify description margin', async () => { - await expect(description).toHaveCSS('margin-top', '8px'); + await expect(description).toHaveCSS('margin-top', '0px'); }); await test.step('Verify body padding', async () => { diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-1-chromium-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-1-chromium-linux.png index 57b4eff02d..f89b60238a 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-1-chromium-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-1-chromium-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-1-firefox-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-1-firefox-linux.png index e2411b89c2..f4244476db 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-1-firefox-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-1-firefox-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-1-webkit-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-1-webkit-linux.png index 2be9cdf1ad..04024d2221 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-1-webkit-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-1-webkit-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-2-chromium-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-2-chromium-linux.png index ede7f2a7fd..792890afc5 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-2-chromium-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-2-chromium-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-2-firefox-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-2-firefox-linux.png index 8d155b09e7..aa7b9a309b 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-2-firefox-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-2-firefox-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-2-webkit-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-2-webkit-linux.png index 8e538d3da4..fbcedcc4a0 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-2-webkit-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-2-webkit-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-3-chromium-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-3-chromium-linux.png index 46ad51542f..7733d3ae6b 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-3-chromium-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-3-chromium-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-3-firefox-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-3-firefox-linux.png index f9e55116a8..11833f832f 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-3-firefox-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-3-firefox-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-3-webkit-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-3-webkit-linux.png index 3e52a9bc24..e603ab5f65 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-3-webkit-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-3-webkit-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-4-chromium-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-4-chromium-linux.png index 725b06eec2..7cb8cffac2 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-4-chromium-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-4-chromium-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-4-firefox-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-4-firefox-linux.png index dfc7d060d3..0f8e0be838 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-4-firefox-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-4-firefox-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-4-webkit-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-4-webkit-linux.png index a9d0c17861..c1bf37aae7 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-4-webkit-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-Base-example-margins-and-paddings-4-webkit-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-1-chromium-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-1-chromium-linux.png index 68b187dbad..fffe89ab43 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-1-chromium-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-1-chromium-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-1-firefox-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-1-firefox-linux.png index 5c9fa1063c..64203aa9dc 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-1-firefox-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-1-firefox-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-1-webkit-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-1-webkit-linux.png index 2e24a1a2b0..dbeb8a8b84 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-1-webkit-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-1-webkit-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-2-chromium-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-2-chromium-linux.png index 5d71136dc0..260e224a37 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-2-chromium-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-2-chromium-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-2-firefox-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-2-firefox-linux.png index 9d728e52a2..d078458e9a 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-2-firefox-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-2-firefox-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-2-webkit-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-2-webkit-linux.png index d2dfaf5a43..9f2e85714a 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-2-webkit-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-2-webkit-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-3-chromium-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-3-chromium-linux.png index d6d102945b..a3ccec5915 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-3-chromium-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-3-chromium-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-3-firefox-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-3-firefox-linux.png index d03ffd4fbb..b3d729d32d 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-3-firefox-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-3-firefox-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-3-webkit-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-3-webkit-linux.png index 2bdd9ee6fa..6f948d9f0e 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-3-webkit-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-3-webkit-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-4-chromium-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-4-chromium-linux.png index 98cea7b8bc..0ee5a4a37a 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-4-chromium-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-4-chromium-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-4-firefox-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-4-firefox-linux.png index 9c87d9b882..a0683bbb6e 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-4-firefox-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-4-firefox-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-4-webkit-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-4-webkit-linux.png index 94e3e8c11e..72ac30dadf 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-4-webkit-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-4-webkit-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-5-chromium-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-5-chromium-linux.png index eb84ca01b3..d64745e74b 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-5-chromium-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-5-chromium-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-5-firefox-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-5-firefox-linux.png index 5d7b6b06a2..e9b8f722ab 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-5-firefox-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-5-firefox-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-5-webkit-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-5-webkit-linux.png index 85df9c80c1..965cb1406f 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-5-webkit-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-5-webkit-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-6-chromium-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-6-chromium-linux.png index 16d9ab6694..20dfc1a097 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-6-chromium-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-6-chromium-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-6-firefox-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-6-firefox-linux.png index 57caf2a9df..02ebc74b17 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-6-firefox-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-6-firefox-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-6-webkit-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-6-webkit-linux.png index 63eb3e4e09..24bffec876 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-6-webkit-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-6-webkit-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-7-chromium-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-7-chromium-linux.png index 7cb0885ad2..564c3faada 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-7-chromium-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-7-chromium-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-7-firefox-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-7-firefox-linux.png index c7d9a32360..7a6c54ba5b 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-7-firefox-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-7-firefox-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-7-webkit-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-7-webkit-linux.png index ad8fd06b22..cd1c39185c 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-7-webkit-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-7-webkit-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-8-chromium-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-8-chromium-linux.png index b6f9ba8aba..d898b01261 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-8-chromium-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-8-chromium-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-8-firefox-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-8-firefox-linux.png index f2e15c2dac..86fb705890 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-8-firefox-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-8-firefox-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-8-webkit-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-8-webkit-linux.png index e6a6b69f68..63f60425c3 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-8-webkit-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-8-webkit-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-9-chromium-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-9-chromium-linux.png index e0d40db0e0..3ef89bfb31 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-9-chromium-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-9-chromium-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-9-firefox-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-9-firefox-linux.png index 554afdb78e..0655383897 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-9-firefox-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-9-firefox-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-9-webkit-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-9-webkit-linux.png index da88eb2d48..10194d854f 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-9-webkit-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-different-card-componens-styles-9-webkit-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-1-chromium-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-1-chromium-linux.png index ead4a726de..60320356e8 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-1-chromium-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-1-chromium-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-1-firefox-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-1-firefox-linux.png index 5818f58b1b..5efd228a66 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-1-firefox-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-1-firefox-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-1-webkit-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-1-webkit-linux.png index e62f7a3b12..613d572fb8 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-1-webkit-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-1-webkit-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-2-chromium-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-2-chromium-linux.png index 3abb7215a2..661fa6efe2 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-2-chromium-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-2-chromium-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-2-firefox-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-2-firefox-linux.png index 973634a619..e91def3eb3 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-2-firefox-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-2-firefox-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-2-webkit-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-2-webkit-linux.png index 16cf3910ac..afd56445a0 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-2-webkit-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-card-with-ellipsis-width-768-height-800-2-webkit-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-complex-card-styles-1-chromium-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-complex-card-styles-1-chromium-linux.png index f89dd64c4a..69e41c302d 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-complex-card-styles-1-chromium-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-complex-card-styles-1-chromium-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-complex-card-styles-1-firefox-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-complex-card-styles-1-firefox-linux.png index 04535a42cc..6917699e76 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-complex-card-styles-1-firefox-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-complex-card-styles-1-firefox-linux.png differ diff --git a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-complex-card-styles-1-webkit-linux.png b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-complex-card-styles-1-webkit-linux.png index c09159eaeb..a9374049e9 100644 Binary files a/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-complex-card-styles-1-webkit-linux.png and b/semcore/card/__tests__/card.browser-test.tsx-snapshots/-visual-Verify-complex-card-styles-1-webkit-linux.png differ diff --git a/semcore/card/src/Card.tsx b/semcore/card/src/Card.tsx index 1150e062a2..9f41076c31 100644 --- a/semcore/card/src/Card.tsx +++ b/semcore/card/src/Card.tsx @@ -51,7 +51,7 @@ function Title( return sstyled(styles)( <> - + {innerHint && ( diff --git a/semcore/card/src/style/card.shadow.css b/semcore/card/src/style/card.shadow.css index 02bbbda157..fe563e60ef 100644 --- a/semcore/card/src/style/card.shadow.css +++ b/semcore/card/src/style/card.shadow.css @@ -2,19 +2,11 @@ SCard { box-sizing: border-box; background: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); padding: 0; - border: none; border-radius: var(--intergalactic-surface-rounded, 8px); - box-shadow: var( - --intergalactic-box-shadow-card, - 0px 0px 1px 0px oklch(0.176 0.033 175.7 / 0.07), 0px 1px 3px 0px oklch(0.176 0.033 175.7 / 0.07) - ); + border: 1px solid var(--intergalactic-border-secondary, oklch(0.176 0.033 175.7 / 0.07)); STitle { - color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); - font-size: var(--intergalactic-fs-300, 16px); - line-height: var(--intergalactic-lh-300, 150%); - font-weight: var(--intergalactic-bold, 700); - margin-right: var(--intergalactic-spacing-1x, 4px); + margin: 0 var(--intergalactic-spacing-1x, 4px) var(--intergalactic-spacing-1x, 4px) 0; } SInfoTrigger { @@ -25,26 +17,21 @@ SCard { SDescription { display: block; - margin-bottom: 0; - margin-top: var(--intergalactic-spacing-2x, 8px); + margin: 0 0 var(--intergalactic-spacing-1x, 4px) 0; font-size: var(--intergalactic-fs-200, 14px); line-height: var(--intergalactic-lh-200, 142%); color: var(--intergalactic-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); } SHeader { - padding-top: var(--intergalactic-spacing-2x, 8px); - padding-bottom: var(--intergalactic-spacing-2x, 8px); - padding-left: var(--intergalactic-spacing-5x, 20px); - padding-right: var(--intergalactic-spacing-5x, 20px); - box-shadow: inset 0 -1px 0 var(--intergalactic-border-secondary, oklch(0.176 0.033 175.7 / 0.07)); + padding-top: var(--intergalactic-spacing-content-padding-xlarge, 20px); + padding-bottom: var(--intergalactic-spacing-content-padding-medium, 12px); + padding-left: var(--intergalactic-spacing-content-padding-xlarge, 20px); + padding-right: var(--intergalactic-spacing-content-padding-xlarge, 20px); } SBody { color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); - padding-bottom: var(--intergalactic-spacing-5x, 20px); - padding-left: var(--intergalactic-spacing-5x, 20px); - padding-right: var(--intergalactic-spacing-5x, 20px); - padding-top: var(--intergalactic-spacing-5x, 20px); + padding: var(--intergalactic-spacing-content-padding-xlarge, 20px); } } diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-1-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-1-chromium-linux.png index 0faf3725d6..8f3448c757 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-1-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-1-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-1-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-1-firefox-linux.png index 0d4d0c7151..e304045cd6 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-1-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-1-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-1-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-1-webkit-linux.png index f35f6ab403..e7de41315a 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-1-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-1-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-2-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-2-chromium-linux.png index c15c47f461..c071148826 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-2-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-2-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-2-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-2-firefox-linux.png index dfec1d17a6..42f54e01fb 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-2-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-2-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-2-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-2-webkit-linux.png index 20bca6ea68..1b8deae59a 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-2-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-default-bounded-true-2-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-1-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-1-chromium-linux.png index 64fea3b078..01a36aaca7 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-1-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-1-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-1-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-1-firefox-linux.png index b7327a2cde..905803645d 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-1-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-1-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-1-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-1-webkit-linux.png index f7b6733eee..8d8a2d61ee 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-1-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-1-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-2-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-2-chromium-linux.png index 86a6513fd2..2834614308 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-2-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-2-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-2-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-2-firefox-linux.png index 91668fd3a8..42ef7f47e6 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-2-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-2-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-2-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-2-webkit-linux.png index d74d9b7c16..e123ca03f8 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-2-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-2-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-chromium-linux.png index e65f8c66bd..6998f6029b 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-firefox-linux.png index 84477a7710..aee26ac9f7 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-webkit-linux.png index bc88a7460b..94ba4a20a8 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-4727c--defaultIndex-undefined-or-index-undefined-6-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-4727c--defaultIndex-undefined-or-index-undefined-6-chromium-linux.png index f734ca50a6..eb9190e60c 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-4727c--defaultIndex-undefined-or-index-undefined-6-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-4727c--defaultIndex-undefined-or-index-undefined-6-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-4727c--defaultIndex-undefined-or-index-undefined-6-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-4727c--defaultIndex-undefined-or-index-undefined-6-firefox-linux.png index 328dee2cbc..e39d0b0999 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-4727c--defaultIndex-undefined-or-index-undefined-6-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-4727c--defaultIndex-undefined-or-index-undefined-6-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-4727c--defaultIndex-undefined-or-index-undefined-6-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-4727c--defaultIndex-undefined-or-index-undefined-6-webkit-linux.png index 27400dd6d1..69f35350cd 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-4727c--defaultIndex-undefined-or-index-undefined-6-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-4727c--defaultIndex-undefined-or-index-undefined-6-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-chromium-linux.png index 039ffd5b54..20f25921af 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-firefox-linux.png index 16805a9688..f089fea0a9 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-webkit-linux.png index 1f865ed63d..cf4e4903b8 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-6499d--defaultIndex-undefined-or-index-undefined-3-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-6499d--defaultIndex-undefined-or-index-undefined-3-chromium-linux.png index fe047fa92d..9cf39bc547 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-6499d--defaultIndex-undefined-or-index-undefined-3-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-6499d--defaultIndex-undefined-or-index-undefined-3-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-6499d--defaultIndex-undefined-or-index-undefined-3-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-6499d--defaultIndex-undefined-or-index-undefined-3-firefox-linux.png index 5dca331e6f..a4f21d737a 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-6499d--defaultIndex-undefined-or-index-undefined-3-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-6499d--defaultIndex-undefined-or-index-undefined-3-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-6499d--defaultIndex-undefined-or-index-undefined-3-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-6499d--defaultIndex-undefined-or-index-undefined-3-webkit-linux.png index 91e864f9c9..cca327741d 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-6499d--defaultIndex-undefined-or-index-undefined-3-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-6499d--defaultIndex-undefined-or-index-undefined-3-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-chromium-linux.png index 00424ecd93..fddb2c34fa 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-firefox-linux.png index a2be0076c6..bdf7555bde 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-webkit-linux.png index 9e5e560eea..937f49aae4 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-b6de1--defaultIndex-undefined-or-index-undefined-4-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-b6de1--defaultIndex-undefined-or-index-undefined-4-chromium-linux.png index 413e5d15af..3db442a2e7 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-b6de1--defaultIndex-undefined-or-index-undefined-4-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-b6de1--defaultIndex-undefined-or-index-undefined-4-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-b6de1--defaultIndex-undefined-or-index-undefined-4-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-b6de1--defaultIndex-undefined-or-index-undefined-4-firefox-linux.png index 1c8318dca0..3f151097c9 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-b6de1--defaultIndex-undefined-or-index-undefined-4-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-b6de1--defaultIndex-undefined-or-index-undefined-4-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-b6de1--defaultIndex-undefined-or-index-undefined-4-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-b6de1--defaultIndex-undefined-or-index-undefined-4-webkit-linux.png index b97f4bbe71..1bad65c5cd 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-b6de1--defaultIndex-undefined-or-index-undefined-4-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-b6de1--defaultIndex-undefined-or-index-undefined-4-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-chromium-linux.png index 88164aa59d..a1d9d113cc 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-firefox-linux.png index 15c3455b1d..af0f120fdb 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-webkit-linux.png index 9b1a7e59d1..d2b6394228 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-57de8--300-and-defaultIndex-undefined-or-index-1-5-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-57de8--300-and-defaultIndex-undefined-or-index-1-5-chromium-linux.png index b7cb08a1c5..405f7a6fc3 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-57de8--300-and-defaultIndex-undefined-or-index-1-5-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-57de8--300-and-defaultIndex-undefined-or-index-1-5-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-57de8--300-and-defaultIndex-undefined-or-index-1-5-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-57de8--300-and-defaultIndex-undefined-or-index-1-5-firefox-linux.png index 40c6ea8442..2db88a5ae8 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-57de8--300-and-defaultIndex-undefined-or-index-1-5-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-57de8--300-and-defaultIndex-undefined-or-index-1-5-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-57de8--300-and-defaultIndex-undefined-or-index-1-5-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-57de8--300-and-defaultIndex-undefined-or-index-1-5-webkit-linux.png index 8446589473..fb262c1f68 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-57de8--300-and-defaultIndex-undefined-or-index-1-5-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-57de8--300-and-defaultIndex-undefined-or-index-1-5-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-chromium-linux.png index b7413fcf0b..fecdf28c53 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-firefox-linux.png index 3cb285ff49..a481e82ab6 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-webkit-linux.png index 2fa60cc1c0..7492969022 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-chromium-linux.png index 651ae42032..49adffce44 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-firefox-linux.png index c0642b56ec..35cc208f57 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-webkit-linux.png index 7e1414a278..122fb55301 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-a98e7--300-and-defaultIndex-undefined-or-index-1-3-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-a98e7--300-and-defaultIndex-undefined-or-index-1-3-chromium-linux.png index 40cf86da71..5cb21bd4f5 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-a98e7--300-and-defaultIndex-undefined-or-index-1-3-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-a98e7--300-and-defaultIndex-undefined-or-index-1-3-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-a98e7--300-and-defaultIndex-undefined-or-index-1-3-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-a98e7--300-and-defaultIndex-undefined-or-index-1-3-firefox-linux.png index e8398c9909..93ad6256fb 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-a98e7--300-and-defaultIndex-undefined-or-index-1-3-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-a98e7--300-and-defaultIndex-undefined-or-index-1-3-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-a98e7--300-and-defaultIndex-undefined-or-index-1-3-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-a98e7--300-and-defaultIndex-undefined-or-index-1-3-webkit-linux.png index 6c24160a7a..f7ed44a049 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-a98e7--300-and-defaultIndex-undefined-or-index-1-3-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-a98e7--300-and-defaultIndex-undefined-or-index-1-3-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-14412--500-and-defaultIndex-2-or-index-undefined-4-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-14412--500-and-defaultIndex-2-or-index-undefined-4-chromium-linux.png index 015371af88..bbac237893 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-14412--500-and-defaultIndex-2-or-index-undefined-4-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-14412--500-and-defaultIndex-2-or-index-undefined-4-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-14412--500-and-defaultIndex-2-or-index-undefined-4-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-14412--500-and-defaultIndex-2-or-index-undefined-4-firefox-linux.png index 556b03b0cb..13e5c986f5 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-14412--500-and-defaultIndex-2-or-index-undefined-4-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-14412--500-and-defaultIndex-2-or-index-undefined-4-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-14412--500-and-defaultIndex-2-or-index-undefined-4-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-14412--500-and-defaultIndex-2-or-index-undefined-4-webkit-linux.png index c978c9f475..9a7ba78b58 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-14412--500-and-defaultIndex-2-or-index-undefined-4-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-14412--500-and-defaultIndex-2-or-index-undefined-4-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-42424--500-and-defaultIndex-2-or-index-undefined-3-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-42424--500-and-defaultIndex-2-or-index-undefined-3-chromium-linux.png index 14d960fe8e..6b8adc0044 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-42424--500-and-defaultIndex-2-or-index-undefined-3-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-42424--500-and-defaultIndex-2-or-index-undefined-3-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-42424--500-and-defaultIndex-2-or-index-undefined-3-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-42424--500-and-defaultIndex-2-or-index-undefined-3-firefox-linux.png index f9dcdc474d..f1a517ca83 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-42424--500-and-defaultIndex-2-or-index-undefined-3-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-42424--500-and-defaultIndex-2-or-index-undefined-3-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-42424--500-and-defaultIndex-2-or-index-undefined-3-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-42424--500-and-defaultIndex-2-or-index-undefined-3-webkit-linux.png index 6df4dfce0d..8d9e55ccd5 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-42424--500-and-defaultIndex-2-or-index-undefined-3-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-42424--500-and-defaultIndex-2-or-index-undefined-3-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-chromium-linux.png index f0a2554cc0..bab7b436d7 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-firefox-linux.png index e41b167820..88ef0b1bed 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-webkit-linux.png index d8d64ecdab..f0f7ed6c50 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-8b027--500-and-defaultIndex-2-or-index-undefined-6-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-8b027--500-and-defaultIndex-2-or-index-undefined-6-chromium-linux.png index f6b0b3568b..3abfb39e4d 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-8b027--500-and-defaultIndex-2-or-index-undefined-6-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-8b027--500-and-defaultIndex-2-or-index-undefined-6-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-8b027--500-and-defaultIndex-2-or-index-undefined-6-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-8b027--500-and-defaultIndex-2-or-index-undefined-6-firefox-linux.png index 9593846eb8..e705ec27ba 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-8b027--500-and-defaultIndex-2-or-index-undefined-6-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-8b027--500-and-defaultIndex-2-or-index-undefined-6-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-8b027--500-and-defaultIndex-2-or-index-undefined-6-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-8b027--500-and-defaultIndex-2-or-index-undefined-6-webkit-linux.png index 6fcac40f37..c903bb1e01 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-8b027--500-and-defaultIndex-2-or-index-undefined-6-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-8b027--500-and-defaultIndex-2-or-index-undefined-6-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-chromium-linux.png index 05fc7dee23..499670a581 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-firefox-linux.png index 0dc6f18b12..15d39d3db1 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-webkit-linux.png index b7c0f7f3a2..3f3e3eac9a 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-chromium-linux.png index f57fda2aec..7f10a71052 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-firefox-linux.png index 087a78528e..01ad9a85a0 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-webkit-linux.png index d0980a23b1..b68b2e3b4a 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-custom-Prev-and-Next-1-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-custom-Prev-and-Next-1-chromium-linux.png index a7a36cf6ee..5a66584c3f 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-custom-Prev-and-Next-1-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-custom-Prev-and-Next-1-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-custom-Prev-and-Next-1-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-custom-Prev-and-Next-1-firefox-linux.png index 112a68c931..6742203057 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-custom-Prev-and-Next-1-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-custom-Prev-and-Next-1-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-custom-Prev-and-Next-1-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-custom-Prev-and-Next-1-webkit-linux.png index b6ed6a3b41..6980cb4d34 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-custom-Prev-and-Next-1-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-custom-Prev-and-Next-1-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/index.test.tsx b/semcore/carousel/__tests__/index.test.tsx index a4eee3ad0d..890335bb61 100644 --- a/semcore/carousel/__tests__/index.test.tsx +++ b/semcore/carousel/__tests__/index.test.tsx @@ -139,7 +139,7 @@ describe('Carousel.Indicators', () => { expect(spy).toHaveBeenCalledWith(0); }); - test.concurrent('Verify right change index with Next button', async () => { + test('Verify right change index with Next button', async () => { const spy = vi.fn(); const { rerender, getByLabelText, getByRole } = render( diff --git a/semcore/carousel/src/style/carousel.shadow.css b/semcore/carousel/src/style/carousel.shadow.css index c1c2498d92..4f738c481a 100644 --- a/semcore/carousel/src/style/carousel.shadow.css +++ b/semcore/carousel/src/style/carousel.shadow.css @@ -87,7 +87,7 @@ SIndicator { display: block; width: 12px; height: 12px; - background-color: var(--intergalactic-icon-secondary-neutral, oklch(0.104 0.023 162.3 / 0.385)); + background-color: var(--intergalactic-icon-secondary-neutral, oklch(0.118 0.023 170.1 / 0.262)); opacity: var(--intergalactic-disabled-opacity, 0.4); object-fit: cover; transition: ease-in-out opacity 0.1s; diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx b/semcore/checkbox/__tests__/checkbox.browser-test.tsx index b5e02947ac..ecb0020d18 100644 --- a/semcore/checkbox/__tests__/checkbox.browser-test.tsx +++ b/semcore/checkbox/__tests__/checkbox.browser-test.tsx @@ -56,7 +56,7 @@ test.describe(`${TAG.VISUAL}`, () => { variables.forEach((item) => { test(`Verify size=${item.size} state=${item.state} theme=${item.theme} color=${item.color} disabled=${item.disabled} checked=${item.checked} indeterminate=${item.indeterminate}`, { tag: [TAG.PRIORITY_HIGH, - '@checkbox'], + '@checkbox', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/checkbox/tests/examples/states.tsx', 'en', item); @@ -89,7 +89,7 @@ test.describe(`${TAG.VISUAL}`, () => { ); await expect(locators.checkboxText(page)).toHaveCSS( 'margin-left', - '8px', + '6px', ); await expect(locators.checkboxText(page)).toHaveCSS( 'font-size', @@ -103,7 +103,7 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify checkbox group styles', { tag: [TAG.PRIORITY_HIGH, - '@checkbox'], + '@checkbox', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/checkbox/tests/examples/groups.tsx', 'en'); @@ -127,7 +127,7 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify Partial selection mouse interactions', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@checkbox'], + '@checkbox', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/checkbox/docs/examples/partial_selection.tsx', 'en'); @@ -145,7 +145,7 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify Partial selection keyboard interactions', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@checkbox'], + '@checkbox', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/checkbox/docs/examples/partial_selection.tsx', 'en'); @@ -162,7 +162,7 @@ test.describe(`${TAG.VISUAL}`, () => { TAG.KEYBOARD, '@checkbox', '@link', - '@tooltip'], + '@tooltip', '@base-components', '@flex-box', '@button-link'], }, async ({ page }) => { await loadPage(page, 'stories/components/checkbox/docs/examples/checkbox_with_other_components.tsx', 'en'); @@ -202,7 +202,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify Checkbox group mouse interactions', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@checkbox'], + '@checkbox', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/checkbox/docs/examples/basic_usage.tsx', 'en'); @@ -247,7 +247,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify Checkbox group keyboard interactions', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@checkbox'], + '@checkbox', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/checkbox/docs/examples/basic_usage.tsx', 'en'); @@ -301,7 +301,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify Partial selection mouse interactions', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@checkbox'], + '@checkbox', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/checkbox/docs/examples/partial_selection.tsx', 'en'); @@ -366,7 +366,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify Partial selection keyboard interactions', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@checkbox'], + '@checkbox', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/checkbox/docs/examples/partial_selection.tsx', 'en'); @@ -438,7 +438,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { TAG.KEYBOARD, '@checkbox', '@link', - '@tooltip'], + '@tooltip', '@base-components', '@flex-box', '@button-link'], }, async ({ page }) => { await loadPage(page, 'stories/components/checkbox/docs/examples/checkbox_with_other_components.tsx', 'en'); @@ -487,7 +487,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { TAG.MOUSE, '@checkbox', '@link', - '@tooltip'], + '@tooltip', '@base-components', '@flex-box', '@button-link'], }, async ({ page }) => { await loadPage(page, 'stories/components/checkbox/docs/examples/checkbox_with_other_components.tsx', 'en'); diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Checkbox-with-onther-elements-keyboard-interactions-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Checkbox-with-onther-elements-keyboard-interactions-1-chromium-linux.png index 416dbb4cea..103edeb26e 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Checkbox-with-onther-elements-keyboard-interactions-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Checkbox-with-onther-elements-keyboard-interactions-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Checkbox-with-onther-elements-keyboard-interactions-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Checkbox-with-onther-elements-keyboard-interactions-1-firefox-linux.png index 4c0826175e..f1f0e7c97e 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Checkbox-with-onther-elements-keyboard-interactions-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Checkbox-with-onther-elements-keyboard-interactions-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Checkbox-with-onther-elements-keyboard-interactions-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Checkbox-with-onther-elements-keyboard-interactions-1-webkit-linux.png index c091a4819c..8805f2ff55 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Checkbox-with-onther-elements-keyboard-interactions-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Checkbox-with-onther-elements-keyboard-interactions-1-webkit-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-keyboard-interactions-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-keyboard-interactions-1-chromium-linux.png index 2fe12a1b7f..a20502ed7d 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-keyboard-interactions-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-keyboard-interactions-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-keyboard-interactions-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-keyboard-interactions-1-firefox-linux.png index d4b3fc219f..0744e11389 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-keyboard-interactions-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-keyboard-interactions-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-keyboard-interactions-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-keyboard-interactions-1-webkit-linux.png index 259a511b2d..b73884217b 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-keyboard-interactions-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-keyboard-interactions-1-webkit-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-mouse-interactions-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-mouse-interactions-1-chromium-linux.png index 1780e9f706..ab03f54242 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-mouse-interactions-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-mouse-interactions-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-mouse-interactions-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-mouse-interactions-1-firefox-linux.png index 18d2e1bb0b..11f1a87c79 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-mouse-interactions-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-mouse-interactions-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-mouse-interactions-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-mouse-interactions-1-webkit-linux.png index f0c80287a9..2fcc4196b5 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-mouse-interactions-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-Partial-selection-mouse-interactions-1-webkit-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-94b8b-sabled-false-checked-true-indeterminate-false-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-94b8b-sabled-false-checked-true-indeterminate-false-1-chromium-linux.png index 175acba213..165fc16cb0 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-94b8b-sabled-false-checked-true-indeterminate-false-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-94b8b-sabled-false-checked-true-indeterminate-false-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-94b8b-sabled-false-checked-true-indeterminate-false-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-94b8b-sabled-false-checked-true-indeterminate-false-1-firefox-linux.png index 9c8f440e16..39ce3b685b 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-94b8b-sabled-false-checked-true-indeterminate-false-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-94b8b-sabled-false-checked-true-indeterminate-false-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-94b8b-sabled-false-checked-true-indeterminate-false-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-94b8b-sabled-false-checked-true-indeterminate-false-1-webkit-linux.png index 91f528aded..1b1f3a1381 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-94b8b-sabled-false-checked-true-indeterminate-false-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-94b8b-sabled-false-checked-true-indeterminate-false-1-webkit-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-d065d-abled-false-checked-false-indeterminate-false-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-d065d-abled-false-checked-false-indeterminate-false-1-chromium-linux.png index d66f87b08e..ab4e7f326a 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-d065d-abled-false-checked-false-indeterminate-false-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-d065d-abled-false-checked-false-indeterminate-false-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-d065d-abled-false-checked-false-indeterminate-false-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-d065d-abled-false-checked-false-indeterminate-false-1-webkit-linux.png index 6a8dea41d3..9ded6532aa 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-d065d-abled-false-checked-false-indeterminate-false-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-d065d-abled-false-checked-false-indeterminate-false-1-webkit-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-pink--943a1-abled-false-checked-false-indeterminate-false-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-pink--943a1-abled-false-checked-false-indeterminate-false-1-chromium-linux.png index 24e9f8887b..3e77004d9f 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-pink--943a1-abled-false-checked-false-indeterminate-false-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-pink--943a1-abled-false-checked-false-indeterminate-false-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-91171-abled-false-checked-false-indeterminate-false-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-91171-abled-false-checked-false-indeterminate-false-1-chromium-linux.png index ee9f99e287..794fc5dbc5 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-91171-abled-false-checked-false-indeterminate-false-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-91171-abled-false-checked-false-indeterminate-false-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-92cd8-sabled-false-checked-true-indeterminate-false-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-92cd8-sabled-false-checked-true-indeterminate-false-1-chromium-linux.png index 1d9ab111f4..83ffbc17f3 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-92cd8-sabled-false-checked-true-indeterminate-false-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-92cd8-sabled-false-checked-true-indeterminate-false-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-92cd8-sabled-false-checked-true-indeterminate-false-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-92cd8-sabled-false-checked-true-indeterminate-false-1-firefox-linux.png index d2046f7757..90b552cedf 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-92cd8-sabled-false-checked-true-indeterminate-false-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-92cd8-sabled-false-checked-true-indeterminate-false-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-92cd8-sabled-false-checked-true-indeterminate-false-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-92cd8-sabled-false-checked-true-indeterminate-false-1-webkit-linux.png index c8a2f5d1a8..00347971b6 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-92cd8-sabled-false-checked-true-indeterminate-false-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-92cd8-sabled-false-checked-true-indeterminate-false-1-webkit-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-9d855-isabled-true-checked-true-indeterminate-false-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-9d855-isabled-true-checked-true-indeterminate-false-1-chromium-linux.png index 7914ca0f4a..de08d6ff4c 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-9d855-isabled-true-checked-true-indeterminate-false-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-9d855-isabled-true-checked-true-indeterminate-false-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-9d855-isabled-true-checked-true-indeterminate-false-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-9d855-isabled-true-checked-true-indeterminate-false-1-firefox-linux.png index ef58781bad..dffa580fca 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-9d855-isabled-true-checked-true-indeterminate-false-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-9d855-isabled-true-checked-true-indeterminate-false-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-9d855-isabled-true-checked-true-indeterminate-false-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-9d855-isabled-true-checked-true-indeterminate-false-1-webkit-linux.png index 9d0e797ab0..a7e5bbc99d 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-9d855-isabled-true-checked-true-indeterminate-false-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-9d855-isabled-true-checked-true-indeterminate-false-1-webkit-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-db120-abled-false-checked-false-indeterminate-false-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-db120-abled-false-checked-false-indeterminate-false-1-chromium-linux.png index 24e9f8887b..3e77004d9f 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-db120-abled-false-checked-false-indeterminate-false-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-db120-abled-false-checked-false-indeterminate-false-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-e9f72-sabled-false-checked-false-indeterminate-true-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-e9f72-sabled-false-checked-false-indeterminate-true-1-chromium-linux.png index 7001763990..eb86fb8070 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-e9f72-sabled-false-checked-false-indeterminate-true-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-e9f72-sabled-false-checked-false-indeterminate-true-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-e9f72-sabled-false-checked-false-indeterminate-true-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-e9f72-sabled-false-checked-false-indeterminate-true-1-firefox-linux.png index c59bd16712..1a430be027 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-e9f72-sabled-false-checked-false-indeterminate-true-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-normal-theme-undef-e9f72-sabled-false-checked-false-indeterminate-true-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-invalid-theme-unde-d2fa7-abled-false-checked-false-indeterminate-false-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-invalid-theme-unde-d2fa7-abled-false-checked-false-indeterminate-false-1-chromium-linux.png index de5a55618b..64527a2dc5 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-invalid-theme-unde-d2fa7-abled-false-checked-false-indeterminate-false-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-invalid-theme-unde-d2fa7-abled-false-checked-false-indeterminate-false-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-invalid-theme-unde-d2fa7-abled-false-checked-false-indeterminate-false-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-invalid-theme-unde-d2fa7-abled-false-checked-false-indeterminate-false-1-firefox-linux.png index 8a3519aced..20d9014a66 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-invalid-theme-unde-d2fa7-abled-false-checked-false-indeterminate-false-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-invalid-theme-unde-d2fa7-abled-false-checked-false-indeterminate-false-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-invalid-theme-unde-d2fa7-abled-false-checked-false-indeterminate-false-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-invalid-theme-unde-d2fa7-abled-false-checked-false-indeterminate-false-1-webkit-linux.png index 7866edc4e7..760e0e50b9 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-invalid-theme-unde-d2fa7-abled-false-checked-false-indeterminate-false-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-invalid-theme-unde-d2fa7-abled-false-checked-false-indeterminate-false-1-webkit-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--0c71a-sabled-false-checked-true-indeterminate-false-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--0c71a-sabled-false-checked-true-indeterminate-false-1-chromium-linux.png index 1a0ff30a7b..411ef5ebeb 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--0c71a-sabled-false-checked-true-indeterminate-false-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--0c71a-sabled-false-checked-true-indeterminate-false-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--0c71a-sabled-false-checked-true-indeterminate-false-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--0c71a-sabled-false-checked-true-indeterminate-false-1-firefox-linux.png index 82964c0c94..efbd127c7c 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--0c71a-sabled-false-checked-true-indeterminate-false-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--0c71a-sabled-false-checked-true-indeterminate-false-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--0c71a-sabled-false-checked-true-indeterminate-false-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--0c71a-sabled-false-checked-true-indeterminate-false-1-webkit-linux.png index 89a9947d96..11a880d740 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--0c71a-sabled-false-checked-true-indeterminate-false-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--0c71a-sabled-false-checked-true-indeterminate-false-1-webkit-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--20a5d-abled-false-checked-false-indeterminate-false-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--20a5d-abled-false-checked-false-indeterminate-false-1-chromium-linux.png index 8cba02799e..f253d892bd 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--20a5d-abled-false-checked-false-indeterminate-false-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--20a5d-abled-false-checked-false-indeterminate-false-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--20a5d-abled-false-checked-false-indeterminate-false-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--20a5d-abled-false-checked-false-indeterminate-false-1-firefox-linux.png index c60db733d8..34985bbbe8 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--20a5d-abled-false-checked-false-indeterminate-false-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--20a5d-abled-false-checked-false-indeterminate-false-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--20a5d-abled-false-checked-false-indeterminate-false-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--20a5d-abled-false-checked-false-indeterminate-false-1-webkit-linux.png index 93720c9d5c..f5f047db7e 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--20a5d-abled-false-checked-false-indeterminate-false-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--20a5d-abled-false-checked-false-indeterminate-false-1-webkit-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--69a82-sabled-false-checked-false-indeterminate-true-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--69a82-sabled-false-checked-false-indeterminate-true-1-chromium-linux.png index de9787d7f2..6fef8b1f7a 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--69a82-sabled-false-checked-false-indeterminate-true-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--69a82-sabled-false-checked-false-indeterminate-true-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--69a82-sabled-false-checked-false-indeterminate-true-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--69a82-sabled-false-checked-false-indeterminate-true-1-firefox-linux.png index 84c3292444..1ef766f824 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--69a82-sabled-false-checked-false-indeterminate-true-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--69a82-sabled-false-checked-false-indeterminate-true-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--69a82-sabled-false-checked-false-indeterminate-true-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--69a82-sabled-false-checked-false-indeterminate-true-1-webkit-linux.png index 2c579436d9..4db8842222 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--69a82-sabled-false-checked-false-indeterminate-true-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--69a82-sabled-false-checked-false-indeterminate-true-1-webkit-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--cc4e6-isabled-true-checked-true-indeterminate-false-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--cc4e6-isabled-true-checked-true-indeterminate-false-1-chromium-linux.png index 387a3fb691..1e42a9a1de 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--cc4e6-isabled-true-checked-true-indeterminate-false-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--cc4e6-isabled-true-checked-true-indeterminate-false-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--cc4e6-isabled-true-checked-true-indeterminate-false-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--cc4e6-isabled-true-checked-true-indeterminate-false-1-firefox-linux.png index 8e89bf81f0..b81dbe908d 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--cc4e6-isabled-true-checked-true-indeterminate-false-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--cc4e6-isabled-true-checked-true-indeterminate-false-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--cc4e6-isabled-true-checked-true-indeterminate-false-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--cc4e6-isabled-true-checked-true-indeterminate-false-1-webkit-linux.png index 3627e7c372..a772b702f9 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--cc4e6-isabled-true-checked-true-indeterminate-false-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-pink--cc4e6-isabled-true-checked-true-indeterminate-false-1-webkit-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-1b697-sabled-false-checked-true-indeterminate-false-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-1b697-sabled-false-checked-true-indeterminate-false-1-chromium-linux.png index 64fd32930d..28ff22d291 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-1b697-sabled-false-checked-true-indeterminate-false-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-1b697-sabled-false-checked-true-indeterminate-false-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-1b697-sabled-false-checked-true-indeterminate-false-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-1b697-sabled-false-checked-true-indeterminate-false-1-firefox-linux.png index 41b84a7ad8..662d69de6c 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-1b697-sabled-false-checked-true-indeterminate-false-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-1b697-sabled-false-checked-true-indeterminate-false-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-1b697-sabled-false-checked-true-indeterminate-false-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-1b697-sabled-false-checked-true-indeterminate-false-1-webkit-linux.png index 0b20bfa6ef..91f1942cd6 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-1b697-sabled-false-checked-true-indeterminate-false-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-1b697-sabled-false-checked-true-indeterminate-false-1-webkit-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-27ffc-abled-false-checked-false-indeterminate-false-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-27ffc-abled-false-checked-false-indeterminate-false-1-chromium-linux.png index 06dba70b0d..4a20e93e4b 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-27ffc-abled-false-checked-false-indeterminate-false-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-27ffc-abled-false-checked-false-indeterminate-false-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-27ffc-abled-false-checked-false-indeterminate-false-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-27ffc-abled-false-checked-false-indeterminate-false-1-firefox-linux.png index 5ce33713a6..4f88d3787a 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-27ffc-abled-false-checked-false-indeterminate-false-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-27ffc-abled-false-checked-false-indeterminate-false-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-27ffc-abled-false-checked-false-indeterminate-false-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-27ffc-abled-false-checked-false-indeterminate-false-1-webkit-linux.png index 5de42cc8c9..00bfd1c1c0 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-27ffc-abled-false-checked-false-indeterminate-false-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-27ffc-abled-false-checked-false-indeterminate-false-1-webkit-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-da929-isabled-true-checked-true-indeterminate-false-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-da929-isabled-true-checked-true-indeterminate-false-1-chromium-linux.png index c1a3587e6b..778998b6c5 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-da929-isabled-true-checked-true-indeterminate-false-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-da929-isabled-true-checked-true-indeterminate-false-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-da929-isabled-true-checked-true-indeterminate-false-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-da929-isabled-true-checked-true-indeterminate-false-1-firefox-linux.png index 05965c38be..1b262c0959 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-da929-isabled-true-checked-true-indeterminate-false-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-da929-isabled-true-checked-true-indeterminate-false-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-da929-isabled-true-checked-true-indeterminate-false-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-da929-isabled-true-checked-true-indeterminate-false-1-webkit-linux.png index 964277f9bc..7a96311e22 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-da929-isabled-true-checked-true-indeterminate-false-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-da929-isabled-true-checked-true-indeterminate-false-1-webkit-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-dd92e-abled-false-checked-false-indeterminate-false-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-dd92e-abled-false-checked-false-indeterminate-false-1-chromium-linux.png index 8cba02799e..f253d892bd 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-dd92e-abled-false-checked-false-indeterminate-false-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-dd92e-abled-false-checked-false-indeterminate-false-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-dd92e-abled-false-checked-false-indeterminate-false-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-dd92e-abled-false-checked-false-indeterminate-false-1-firefox-linux.png index c60db733d8..34985bbbe8 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-dd92e-abled-false-checked-false-indeterminate-false-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-dd92e-abled-false-checked-false-indeterminate-false-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-dd92e-abled-false-checked-false-indeterminate-false-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-dd92e-abled-false-checked-false-indeterminate-false-1-webkit-linux.png index 93720c9d5c..f5f047db7e 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-dd92e-abled-false-checked-false-indeterminate-false-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-dd92e-abled-false-checked-false-indeterminate-false-1-webkit-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-e2bf0-isabled-true-checked-false-indeterminate-true-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-e2bf0-isabled-true-checked-false-indeterminate-true-1-chromium-linux.png index 9a961ce7c9..1eaa11418a 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-e2bf0-isabled-true-checked-false-indeterminate-true-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-e2bf0-isabled-true-checked-false-indeterminate-true-1-chromium-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-e2bf0-isabled-true-checked-false-indeterminate-true-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-e2bf0-isabled-true-checked-false-indeterminate-true-1-firefox-linux.png index 17b37ada11..1e6d4e8c2b 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-e2bf0-isabled-true-checked-false-indeterminate-true-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-e2bf0-isabled-true-checked-false-indeterminate-true-1-firefox-linux.png differ diff --git a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-e2bf0-isabled-true-checked-false-indeterminate-true-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-e2bf0-isabled-true-checked-false-indeterminate-true-1-webkit-linux.png index 8223cd19e3..805fad1da0 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-e2bf0-isabled-true-checked-false-indeterminate-true-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-m-state-normal-theme-undef-e2bf0-isabled-true-checked-false-indeterminate-true-1-webkit-linux.png differ diff --git a/semcore/checkbox/src/style/checkbox.shadow.css b/semcore/checkbox/src/style/checkbox.shadow.css index 2cc6c1746f..e6b543b410 100644 --- a/semcore/checkbox/src/style/checkbox.shadow.css +++ b/semcore/checkbox/src/style/checkbox.shadow.css @@ -9,7 +9,7 @@ SLabel { } SText { - margin-left: var(--intergalactic-spacing-2x, 8px); + margin-left: var(--intergalactic-spacing-content-gap-medium, 6px); color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); &[disabled] { @@ -17,6 +17,10 @@ SLabel { } } + SText[size='l'] { + margin-left: var(--intergalactic-spacing-content-gap-large, 8px); + } + SText[color] { color: var(--color); } @@ -44,9 +48,9 @@ SCheckbox { left: 0; right: 0; bottom: 0; - background: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); + background: var(--intergalactic-control-checkbox-bg-normal, oklch(1 0 0)); border: 1px solid; - border-radius: var(--intergalactic-addon-rounded, 4px); + border-radius: var(--intergalactic-checkbox-rounded, 4px); transition: calc(var(--intergalactic-duration-control, 200) * 1ms) all ease-in-out; outline-color: transparent; } @@ -54,7 +58,7 @@ SCheckbox { &::after { content: ''; position: absolute; - top: 1px; + top: 0; left: 0; right: 0; bottom: 0; @@ -64,31 +68,27 @@ SCheckbox { } &[state='normal']:before { - border-color: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); - } - - &[state='normal']:focus-visible:before { - border-color: var(--intergalactic-border-info-active, oklch(0.7 0.131 275.2)); + border-color: var(--intergalactic-control-checkbox-border, oklch(0.137 0.026 175.7 / 0.161)); } } SCheckbox[size='l'] { margin-top: var(--intergalactic-spacing-05x, 2px); - width: 20px; - height: 20px; + width: var(--intergalactic-spacing-5x, 20px); + height: var(--intergalactic-spacing-5x, 20px); &[checked]::after { - background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDEyIDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMSAxLjVMNC43NSA3Ljc1TDEgNCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg=='); + background-image: var(--intergalactic-assets-checkmark-l, url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxNCAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTIuNCAyLjQ1MjIxTDUuMzA0NCA5LjU0NzgyTDEuNjAwMDEgNS44NDM0MyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==")); } } SCheckbox[size='m'] { margin-top: var(--intergalactic-spacing-05x, 2px); - width: 16px; - height: 16px; + width: var(--intergalactic-spacing-4x, 16px); + height: var(--intergalactic-spacing-4x, 16px); &[checked]::after { - background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEwIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik04LjI1IDFMNCA1LjI1TDEuNzUgMyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg=='); + background-image: var(--intergalactic-assets-checkmark-m, url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMiAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAuMzEwNyAyLjE2NzkxTDQuNjQ2NDUgNy44MzIxMkwxLjY4OTM0IDQuODc1MDEiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZT0id2hpdGUiLz48L3N2Zz4=")); } } @@ -103,16 +103,15 @@ SText[size='m'] { line-height: var(--intergalactic-lh-200, 142%); } - SControl[checked]~SCheckbox[state='normal']:before, SControl[checked]~SCheckbox[state='invalid']:before { - background-color: var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); - border-color: var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); + background-color: var(--intergalactic-control-checkbox-bg-selected, oklch(0.23 0.01 140)); + border-color: var(--intergalactic-control-checkbox-bg-selected, oklch(0.23 0.01 140)); } SControl[indeterminate]~SCheckbox[state='normal']:before { - background-color: var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); - border-color: var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); + background-color: var(--intergalactic-control-checkbox-bg-selected, oklch(0.23 0.01 140)); + border-color: var(--intergalactic-control-checkbox-bg-selected, oklch(0.23 0.01 140)); } SCheckbox[state='invalid'], @@ -137,15 +136,14 @@ SControl[disabled] ~ SCheckbox[state='invalid'] > SInvalidPattern { cursor: default; } -SControl[checked]~SCheckbox { - &[state='invalid']:before { - background-color: var(--intergalactic-control-primary-critical, oklch(0.64 0.226 24.5)); - border-color: var(--intergalactic-control-primary-critical, oklch(0.64 0.226 24.5)); - } +SControl[checked]~SCheckbox[state='invalid']:before, +SControl[indeterminate]~SCheckbox[state='invalid']:before { + background-color: var(--intergalactic-control-primary-critical, oklch(0.64 0.226 24.5)); + border-color: var(--intergalactic-control-primary-critical, oklch(0.64 0.226 24.5)); } SControl[indeterminate]~SCheckbox:after { - background-color: #ffffff; + background-color: var(--intergalactic-control-checkbox-checkmark, oklch(1 0 0)); margin: auto; /* disable-tokens-validator */ border-radius: 1px; @@ -153,17 +151,14 @@ SControl[indeterminate]~SCheckbox:after { SControl[indeterminate]~SCheckbox[size='l']:after { width: 12px; - height: 2px; + /* disable-tokens-validator */ + height: 1.5px; } SControl[indeterminate]~SCheckbox[size='m']:after { width: 8px; - height: 2px; -} - -SControl[indeterminate]~SCheckbox[state='invalid']:before { - background-color: var(--intergalactic-control-primary-critical, oklch(0.64 0.226 24.5)); - border-color: var(--intergalactic-control-primary-critical, oklch(0.64 0.226 24.5)); + /* disable-tokens-validator */ + height: 1.5px; } SCheckbox[checked][theme][state='normal']:before { @@ -186,7 +181,8 @@ SControl[indeterminate]~SCheckbox[theme][state='normal']:before { } SInvalidPattern { - height: calc(100% - 2px); + height: calc(100% - var(--intergalactic-spacing-05x, 2px)); + /* disable-tokens-validator */ margin: 1px 0 1px 1px; border-bottom-left-radius: var(--intergalactic-rounded-small, 4px); border-top-left-radius: var(--intergalactic-rounded-small, 4px); diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Colors-1-chromium-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Colors-1-chromium-linux.png index 30996b9389..7a2e2e0db7 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Colors-1-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Colors-1-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Colors-1-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Colors-1-firefox-linux.png index 7c5a233f53..3acca07bf2 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Colors-1-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Colors-1-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Colors-1-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Colors-1-webkit-linux.png index 583b606b08..8ab8783b53 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Colors-1-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Colors-1-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-chromium-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-chromium-linux.png index 7e4587403d..2a57f81b55 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-firefox-linux.png index cde8df8213..710143c591 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-webkit-linux.png index 3c05b165d8..aa47fe7501 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-chromium-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-chromium-linux.png index ec0f2031ce..010f8bb7e7 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-firefox-linux.png index 32c8996f1b..dd137f5b0d 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-webkit-linux.png index 7e6245d121..37282fc6e9 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-1-chromium-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-1-chromium-linux.png index ed0e3ab381..0126bab129 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-1-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-1-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-chromium-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-chromium-linux.png index 9cdc859b1b..7679a72857 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-firefox-linux.png index 1a52ebd8f2..1446d80f4f 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-webkit-linux.png index df1dfdc90a..4f9d636464 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-1-chromium-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-1-chromium-linux.png index e8c023a545..9022df9dff 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-1-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-1-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-1-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-1-firefox-linux.png index b183680b7f..b32b71c283 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-1-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-1-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-1-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-1-webkit-linux.png index bd2e12b5be..2f47c2ae1c 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-1-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-1-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-chromium-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-chromium-linux.png index d4d5191731..edb834c911 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-firefox-linux.png index 2f62ef09e3..dacd83cdea 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-webkit-linux.png index 6424b118d9..3fe2ee09a0 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-chromium-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-chromium-linux.png index 8fdaa9ffdf..0f0debcfb4 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-firefox-linux.png index 56a3716e1b..1c5fcae3a4 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-webkit-linux.png index b3e682deed..8a3e369bd8 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-4-chromium-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-4-chromium-linux.png index a9bc7e94af..7cfc6018fc 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-4-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-4-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-4-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-4-firefox-linux.png index b183680b7f..b32b71c283 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-4-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-4-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-4-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-4-webkit-linux.png index 91ef01b41a..f1ec4214ca 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-4-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-4-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-input-validation-in-palette-manager-1-chromium-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-input-validation-in-palette-manager-1-chromium-linux.png index ceddd9b77a..4f50a3d51d 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-input-validation-in-palette-manager-1-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-input-validation-in-palette-manager-1-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-input-validation-in-palette-manager-1-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-input-validation-in-palette-manager-1-firefox-linux.png index de65afba6d..65b953217e 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-input-validation-in-palette-manager-1-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-input-validation-in-palette-manager-1-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-input-validation-in-palette-manager-1-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-input-validation-in-palette-manager-1-webkit-linux.png index 43da3728a0..b8bfa4cd21 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-input-validation-in-palette-manager-1-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-input-validation-in-palette-manager-1-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-chromium-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-chromium-linux.png index 44716df36b..08ff5aa409 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-firefox-linux.png index ef02d8b7f0..4198c53d0c 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-webkit-linux.png index 61beb1a1f8..941c7a1339 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-2-chromium-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-2-chromium-linux.png index e5e43ecabd..78774f55b7 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-2-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-2-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-2-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-2-firefox-linux.png index 2320704ab0..a952ef9bc1 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-2-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-2-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-2-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-2-webkit-linux.png index dd63e2df76..17974f21b1 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-2-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-2-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-3-chromium-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-3-chromium-linux.png index 96b42c2402..cb3a2f4a92 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-3-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-3-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-3-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-3-firefox-linux.png index 55b3abffd8..7c503f6461 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-3-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-3-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-3-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-3-webkit-linux.png index f46622a724..42b0f791bc 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-3-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-3-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-trigger-variations-keyboards-interactions-1-chromium-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-trigger-variations-keyboards-interactions-1-chromium-linux.png index 6332f2cada..ac46152482 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-trigger-variations-keyboards-interactions-1-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-trigger-variations-keyboards-interactions-1-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-trigger-variations-keyboards-interactions-1-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-trigger-variations-keyboards-interactions-1-firefox-linux.png index 6a5f6c76ff..7f2aa1f2ac 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-trigger-variations-keyboards-interactions-1-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-trigger-variations-keyboards-interactions-1-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-trigger-variations-keyboards-interactions-1-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-trigger-variations-keyboards-interactions-1-webkit-linux.png index 8d8736fdf0..78c8595c8b 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-trigger-variations-keyboards-interactions-1-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-trigger-variations-keyboards-interactions-1-webkit-linux.png differ diff --git a/semcore/color-picker/src/style/color-picker.shadow.css b/semcore/color-picker/src/style/color-picker.shadow.css index 02932ae50e..11efc8b36b 100644 --- a/semcore/color-picker/src/style/color-picker.shadow.css +++ b/semcore/color-picker/src/style/color-picker.shadow.css @@ -88,17 +88,17 @@ SPlusButton { display: flex; align-items: center; justify-content: center; - width: 28px; - height: 28px; + width: var(--intergalactic-form-control-m, 32px); + height: var(--intergalactic-form-control-m, 32px); border-radius: 50%; cursor: pointer; &:hover { - background-color: var(--intergalactic-control-tertiary-neutral-hover, oklch(0.176 0.033 175.6 / 0.056)); + background-color: var(--intergalactic-control-tertiary-neutral-hover, oklch(0.177 0.033 175.6 / 0.042)); } &:active { - background-color: var(--intergalactic-control-tertiary-neutral-active, oklch(0.176 0.033 175.7 / 0.084)); + background-color: var(--intergalactic-control-tertiary-neutral-active, oklch(0.176 0.033 175.6 / 0.056)); } } diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-buttons-1-chromium-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-buttons-1-chromium-linux.png index 7b42cb3322..0f42f27a69 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-buttons-1-chromium-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-buttons-1-chromium-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-buttons-1-firefox-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-buttons-1-firefox-linux.png index df873fd903..7f43359150 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-buttons-1-firefox-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-buttons-1-firefox-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-buttons-1-webkit-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-buttons-1-webkit-linux.png index 8c6871202c..c36dec7a62 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-buttons-1-webkit-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-buttons-1-webkit-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-dots-1-chromium-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-dots-1-chromium-linux.png index 68d10cda9c..4983882147 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-dots-1-chromium-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-dots-1-chromium-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-dots-1-firefox-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-dots-1-firefox-linux.png index 290b3ea753..bafc2f1f9d 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-dots-1-firefox-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-dots-1-firefox-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-dots-1-webkit-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-dots-1-webkit-linux.png index aecd91a0b6..3e7d873161 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-dots-1-webkit-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-dots-1-webkit-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-1-chromium-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-1-chromium-linux.png index 32d1891bf9..a35fbce8d8 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-1-chromium-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-1-chromium-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-1-firefox-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-1-firefox-linux.png index fb35a4e5de..a84d79d85f 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-1-firefox-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-1-firefox-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-1-webkit-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-1-webkit-linux.png index f5c504de45..a7f88e85a0 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-1-webkit-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-1-webkit-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-2-chromium-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-2-chromium-linux.png index 2e386ee59c..4e3e552cdb 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-2-chromium-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-2-chromium-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-2-firefox-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-2-firefox-linux.png index 5d056e24de..34f6c6d063 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-2-firefox-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-2-firefox-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-2-webkit-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-2-webkit-linux.png index 707241b690..323a8af40c 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-2-webkit-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-filters-2-webkit-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-1-chromium-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-1-chromium-linux.png index 6c3123e7d6..c12d841095 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-1-chromium-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-1-chromium-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-1-firefox-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-1-firefox-linux.png index ce8bd652c1..9bc9d14b35 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-1-firefox-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-1-firefox-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-1-webkit-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-1-webkit-linux.png index 3ba2159390..695328269e 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-1-webkit-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-1-webkit-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-2-chromium-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-2-chromium-linux.png index b6406d4b58..90c0c52d16 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-2-chromium-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-2-chromium-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-2-firefox-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-2-firefox-linux.png index 1a9e806b55..c93323c177 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-2-firefox-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-2-firefox-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-2-webkit-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-2-webkit-linux.png index 6559095546..5eb90c7d92 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-2-webkit-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-2-webkit-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-3-chromium-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-3-chromium-linux.png index 448f811491..b6dac310c2 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-3-chromium-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-3-chromium-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-3-firefox-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-3-firefox-linux.png index a0dc0014ff..b93fadbbe1 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-3-firefox-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-3-firefox-linux.png differ diff --git a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-3-webkit-linux.png b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-3-webkit-linux.png index 551e6133cb..7a34807ede 100644 Binary files a/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-3-webkit-linux.png and b/semcore/counter/__tests__/counter.browser-test.tsx-snapshots/-visual-Verify-counter-in-forms-3-webkit-linux.png differ diff --git a/semcore/counter/src/style/counter.shadow.css b/semcore/counter/src/style/counter.shadow.css index 135d38a708..e89e13a2b8 100644 --- a/semcore/counter/src/style/counter.shadow.css +++ b/semcore/counter/src/style/counter.shadow.css @@ -18,21 +18,21 @@ SCounter[size='s'] { height: 16px; min-width: 16px; font-size: var(--intergalactic-fs-50, 10px); - padding: var(--intergalactic-spacing-1x, 4px); + padding: var(--intergalactic-spacing-content-padding-xsmall, 4px); } SCounter[size='m'] { height: 20px; min-width: 20px; font-size: var(--intergalactic-fs-100, 12px); - padding: var(--intergalactic-spacing-05x, 2px) calc(var(--intergalactic-spacing-05x, 2px) + var(--intergalactic-spacing-1x, 4px)); + padding: var(--intergalactic-spacing-content-padding-xxsmall, 2px) var(--intergalactic-spacing-content-padding-xsmall-extended, 6px); } SCounter[size='l'] { height: 24px; min-width: 24px; font-size: var(--intergalactic-fs-200, 14px); - padding: var(--intergalactic-spacing-05x, 2px) calc(var(--intergalactic-spacing-05x, 2px) + var(--intergalactic-spacing-1x, 4px)); + padding: var(--intergalactic-spacing-content-padding-xxsmall, 2px) var(--intergalactic-spacing-content-padding-xsmall-extended, 6px); } SCounter[theme] { diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx index 7bb502c840..a0ca5c8aaa 100644 --- a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx +++ b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx @@ -94,7 +94,7 @@ test.describe(`${TAG.VISUAL}`, () => { variables.forEach((vars, index) => { test(`Verify area chart ${vars.description}`, { - tag: [TAG.PRIORITY_HIGH, '@area-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@area-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -145,7 +145,7 @@ test.describe(`${TAG.VISUAL}`, () => { dataVariations.forEach((dataVariant) => { test(`Verify area chart ${dataVariant.description}`, { - tag: [TAG.PRIORITY_MEDIUM, '@area-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, '@area-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -179,7 +179,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify chart with no data and single data', { - tag: [TAG.PRIORITY_MEDIUM, '@area-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, '@area-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/docs/examples/area-chart/edge-cases.tsx', 'en'); @@ -218,7 +218,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify stacked area when part of the chart has no data or only one value', { - tag: [TAG.PRIORITY_HIGH, '@stacked-area-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@stacked-area-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/docs/examples/stacked-area-chart/edge-cases.tsx', 'en'); @@ -236,7 +236,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify stacked area chart rendering', { - tag: [TAG.PRIORITY_MEDIUM, '@stacked-area-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, '@stacked-area-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/docs/examples/stacked-area-chart/stacked-area.tsx', 'en'); @@ -248,7 +248,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify legend and pattern fill hover and focus styles', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, TAG.KEYBOARD, '@area-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, TAG.KEYBOARD, '@area-chart', '@d3-chart', '@chart-legend'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/docs/examples/area-chart/legend-and-pattern-fill.tsx', 'en'); @@ -274,7 +274,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify stacked area chart legend hover styles', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@stacked-area-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@stacked-area-chart', '@d3-chart', '@base-components', '@flex-box', '@chart-legend', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/docs/examples/stacked-area-chart/legend-and-pattern-fill.tsx', 'en'); @@ -294,7 +294,7 @@ We verify states, visibility, and attributes. ===================================================== */ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify props configurations behavior', { - tag: [TAG.PRIORITY_HIGH, '@area-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@area-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -392,7 +392,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify click handler (onClickArea)', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@area-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@area-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { const consoleMessages: string[] = []; @@ -422,7 +422,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify legend checkbox attributes', { - tag: [TAG.PRIORITY_MEDIUM, '@area-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, '@area-chart', '@d3-chart', '@chart-legend'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/docs/examples/area-chart/legend-and-pattern-fill.tsx', 'en'); diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Stacked-patterns-enabled-minimal-UI-1-chromium-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Stacked-patterns-enabled-minimal-UI-1-chromium-linux.png index 0cabfac56b..18f68af914 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Stacked-patterns-enabled-minimal-UI-1-chromium-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Stacked-patterns-enabled-minimal-UI-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Stacked-patterns-enabled-minimal-UI-1-firefox-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Stacked-patterns-enabled-minimal-UI-1-firefox-linux.png index f2f31bf2ee..74789f61c5 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Stacked-patterns-enabled-minimal-UI-1-firefox-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Stacked-patterns-enabled-minimal-UI-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Stacked-patterns-enabled-minimal-UI-1-webkit-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Stacked-patterns-enabled-minimal-UI-1-webkit-linux.png index 44856b5a8b..e017fbd70e 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Stacked-patterns-enabled-minimal-UI-1-webkit-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Stacked-patterns-enabled-minimal-UI-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Standard-all-features-medium-size-1-chromium-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Standard-all-features-medium-size-1-chromium-linux.png index dac099c5ce..5f9508ecc5 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Standard-all-features-medium-size-1-chromium-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Standard-all-features-medium-size-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Standard-all-features-medium-size-1-firefox-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Standard-all-features-medium-size-1-firefox-linux.png index 78c5a53d89..c6db99c8c5 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Standard-all-features-medium-size-1-firefox-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Standard-all-features-medium-size-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Standard-all-features-medium-size-1-webkit-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Standard-all-features-medium-size-1-webkit-linux.png index 2572664d0b..d3773f6271 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Standard-all-features-medium-size-1-webkit-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Standard-all-features-medium-size-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-null-undefined-and-negative-values-1-chromium-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-null-undefined-and-negative-values-1-chromium-linux.png index 36a415fcf1..cf30d1f14e 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-null-undefined-and-negative-values-1-chromium-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-null-undefined-and-negative-values-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-null-undefined-and-negative-values-1-firefox-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-null-undefined-and-negative-values-1-firefox-linux.png index 42f28f9c1a..3749e32ff0 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-null-undefined-and-negative-values-1-firefox-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-null-undefined-and-negative-values-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-null-undefined-and-negative-values-1-webkit-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-null-undefined-and-negative-values-1-webkit-linux.png index 4e4af941ee..443b2911a4 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-null-undefined-and-negative-values-1-webkit-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-null-undefined-and-negative-values-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-single-data-point-1-chromium-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-single-data-point-1-chromium-linux.png index fe6d2add8e..ad45461432 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-single-data-point-1-chromium-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-single-data-point-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-single-data-point-1-firefox-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-single-data-point-1-firefox-linux.png index 00d6ff0f6f..1e7dc9b478 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-single-data-point-1-firefox-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-single-data-point-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-single-data-point-1-webkit-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-single-data-point-1-webkit-linux.png index 125b059bd2..480f2acc58 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-single-data-point-1-webkit-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-with-single-data-point-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-chart-with-no-data-and-single-data-1-chromium-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-chart-with-no-data-and-single-data-1-chromium-linux.png index 7b9e05d6cf..df8e56874a 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-chart-with-no-data-and-single-data-1-chromium-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-chart-with-no-data-and-single-data-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-1-chromium-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-1-chromium-linux.png index 55aea27169..41555dbbe6 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-1-chromium-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-1-firefox-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-1-firefox-linux.png index a9140a93bd..d6b526df34 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-1-firefox-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-1-webkit-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-1-webkit-linux.png index 95b209cd2d..724744973a 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-1-webkit-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-2-chromium-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-2-chromium-linux.png index 117a8eaf7e..266771ef8f 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-2-chromium-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-2-firefox-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-2-firefox-linux.png index c1d42f3cb6..5db5598a79 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-2-firefox-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-2-webkit-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-2-webkit-linux.png index 57139ee25c..4e8bd2f40f 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-2-webkit-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-3-chromium-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-3-chromium-linux.png index 35df4761c9..ae2814e013 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-3-chromium-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-3-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-3-firefox-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-3-firefox-linux.png index 8e0c3dd763..44d876e2d2 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-3-firefox-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-3-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-3-webkit-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-3-webkit-linux.png index 72c82c2f01..d7ceb9fa25 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-3-webkit-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-and-focus-styles-3-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-legend-hover-styles-1-chromium-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-legend-hover-styles-1-chromium-linux.png index d40dfb6d37..6f1366624c 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-legend-hover-styles-1-chromium-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-legend-hover-styles-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-legend-hover-styles-1-firefox-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-legend-hover-styles-1-firefox-linux.png index c2b7327cd1..c81c979930 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-legend-hover-styles-1-firefox-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-legend-hover-styles-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-legend-hover-styles-1-webkit-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-legend-hover-styles-1-webkit-linux.png index 1091062241..b68013894e 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-legend-hover-styles-1-webkit-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-legend-hover-styles-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx index 34585d1e0d..2f0f2f1b61 100644 --- a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx +++ b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx @@ -114,7 +114,7 @@ test.describe(`${TAG.VISUAL}`, () => { variables.forEach((vars) => { test(`Verify bar chart ${vars.description}`, { - tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -159,7 +159,7 @@ test.describe(`${TAG.VISUAL}`, () => { variablesTrend.forEach((vars) => { test(`Verify trend for chart ${vars.description}`, { - tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -250,7 +250,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify negative values look good on bar charts', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -382,7 +382,7 @@ test.describe(`${TAG.VISUAL}`, () => { groupedStackedVariations.forEach((variant) => { test(`Verify bar chart ${variant.name}`, { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bar-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -429,7 +429,7 @@ test.describe(`${TAG.VISUAL}`, () => { test.describe('Bar chart - Legend and interactions', () => { test('Verify bar legend and pattern fill mouse interaction', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@chart-legend', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -473,7 +473,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify bar legend and pattern fill keyboard interaction', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@chart-legend', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -567,7 +567,7 @@ test.describe(`${TAG.VISUAL}`, () => { dataVariations.forEach((dataVariant) => { test(`Verify bar chart ${dataVariant.name}`, { - tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -592,7 +592,7 @@ test.describe(`${TAG.VISUAL}`, () => { test.describe('Horizontal bars', () => { test('Verify HorizontalBar implementation', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@horizontal-bar-chart', '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@horizontal-bar-chart', '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -628,7 +628,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify horizontal bar with background', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@horizontal-bar-chart', '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@horizontal-bar-chart', '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -652,7 +652,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify grouped horizontal bars', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@horizontal-bar-chart', '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@horizontal-bar-chart', '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -727,7 +727,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify horizontal bar legend and pattern fill mouse interaction', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@horizontal-bar-chart', '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@horizontal-bar-chart', '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@chart-legend', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -756,7 +756,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify horizontal bar legend and pattern fill keyboard interaction', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@horizontal-bar-chart', '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@horizontal-bar-chart', '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@chart-legend', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -827,7 +827,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify stacked grouped bars', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -853,7 +853,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify stacked bar legend and pattern fill mouse interaction', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@card', '@chart-legend'], }, async ({ page }) => { await loadPage( page, @@ -887,7 +887,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify stacked bar legend and pattern fill keyboard interaction', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@card', '@chart-legend'], }, async ({ page }) => { await loadPage( page, @@ -915,7 +915,7 @@ test.describe(`${TAG.VISUAL}`, () => { test.describe('Stacked horizontal bars', () => { test('Verify stacked horizontal bar chart with HoverRect tooltip', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -935,7 +935,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify stacked horizontal bar chart with negative values', { - tag: [TAG.PRIORITY_MEDIUM, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -952,7 +952,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify stacked horizontal bar legend and pattern fill mouse interaction', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@card', '@chart-legend'], }, async ({ page }) => { await loadPage( page, @@ -986,7 +986,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify stacked horizontal bar legend and pattern fill keyboard interaction', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@card', '@chart-legend'], }, async ({ page }) => { await loadPage( page, @@ -1081,7 +1081,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { ariaHiddenVariations.forEach((variant) => { test(`Verify bars aria-hidden attribute for ${variant.name}`, { - tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -1139,7 +1139,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify negative values bars attributes', { - tag: [TAG.PRIORITY_MEDIUM, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -1191,7 +1191,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify grouped bars count and attributes', { - tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -1234,7 +1234,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify HorizontalBar aria-hidden attributes', { - tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -1255,7 +1255,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify HorizontalBar.Background aria-hidden attributes', { - tag: [TAG.PRIORITY_MEDIUM, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -1276,7 +1276,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify StackBar.Bar aria-hidden attributes', { - tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -1297,7 +1297,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify StackGroupBar.Bar aria-hidden attributes', { - tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -1318,7 +1318,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify StackBar.HorizontalBar aria-hidden attributes', { - tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@bar-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-222bf--legend-and-pattern-fill-keyboard-interaction-2-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-222bf--legend-and-pattern-fill-keyboard-interaction-2-chromium-linux.png index edc03ad9cb..39afb7ea96 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-222bf--legend-and-pattern-fill-keyboard-interaction-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-222bf--legend-and-pattern-fill-keyboard-interaction-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-222bf--legend-and-pattern-fill-keyboard-interaction-2-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-222bf--legend-and-pattern-fill-keyboard-interaction-2-firefox-linux.png index ec60686aa0..121d90e467 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-222bf--legend-and-pattern-fill-keyboard-interaction-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-222bf--legend-and-pattern-fill-keyboard-interaction-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-222bf--legend-and-pattern-fill-keyboard-interaction-2-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-222bf--legend-and-pattern-fill-keyboard-interaction-2-webkit-linux.png index 200e912b4a..4a45d0c4af 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-222bf--legend-and-pattern-fill-keyboard-interaction-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-222bf--legend-and-pattern-fill-keyboard-interaction-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-e8cb8--legend-and-pattern-fill-keyboard-interaction-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-e8cb8--legend-and-pattern-fill-keyboard-interaction-1-chromium-linux.png index c261e1e234..679fc8dd77 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-e8cb8--legend-and-pattern-fill-keyboard-interaction-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-e8cb8--legend-and-pattern-fill-keyboard-interaction-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-e8cb8--legend-and-pattern-fill-keyboard-interaction-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-e8cb8--legend-and-pattern-fill-keyboard-interaction-1-firefox-linux.png index a9d659f94c..4c5b7d6ae2 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-e8cb8--legend-and-pattern-fill-keyboard-interaction-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-e8cb8--legend-and-pattern-fill-keyboard-interaction-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-e8cb8--legend-and-pattern-fill-keyboard-interaction-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-e8cb8--legend-and-pattern-fill-keyboard-interaction-1-webkit-linux.png index b390dbb39e..63f35b6f67 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-e8cb8--legend-and-pattern-fill-keyboard-interaction-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Ve-e8cb8--legend-and-pattern-fill-keyboard-interaction-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-1-chromium-linux.png index 5fdeaab5f0..eb0644302d 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-1-firefox-linux.png index 739d5b648c..274d07783f 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-1-webkit-linux.png index 8332a260a9..e45405c274 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-2-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-2-chromium-linux.png index 2a694b76bb..cee1128fe4 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-2-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-2-firefox-linux.png index a30ba8d776..a0958b5372 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-2-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-2-webkit-linux.png index 21df220d19..6ae524a0c0 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-chart---Legend-and-interactions-Verify-bar-legend-and-pattern-fill-mouse-interaction-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Patterns-minimal-axes-and-UI-multiline-ticks-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Patterns-minimal-axes-and-UI-multiline-ticks-1-chromium-linux.png index 78e774fcbe..d1b088ac61 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Patterns-minimal-axes-and-UI-multiline-ticks-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Patterns-minimal-axes-and-UI-multiline-ticks-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Patterns-minimal-axes-and-UI-multiline-ticks-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Patterns-minimal-axes-and-UI-multiline-ticks-1-firefox-linux.png index 6f169f5b5e..c7a89df57d 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Patterns-minimal-axes-and-UI-multiline-ticks-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Patterns-minimal-axes-and-UI-multiline-ticks-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Patterns-minimal-axes-and-UI-multiline-ticks-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Patterns-minimal-axes-and-UI-multiline-ticks-1-webkit-linux.png index d0ce9756f2..727a8eb7a9 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Patterns-minimal-axes-and-UI-multiline-ticks-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Patterns-minimal-axes-and-UI-multiline-ticks-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Standard-all-features-enabled-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Standard-all-features-enabled-1-chromium-linux.png index 8fae086f58..0f1458af36 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Standard-all-features-enabled-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Standard-all-features-enabled-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Standard-all-features-enabled-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Standard-all-features-enabled-1-firefox-linux.png index 2b11045678..ba3e202de0 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Standard-all-features-enabled-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Standard-all-features-enabled-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Standard-all-features-enabled-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Standard-all-features-enabled-1-webkit-linux.png index 8412b21d80..0d3e56adca 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Standard-all-features-enabled-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Standard-all-features-enabled-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-1-chromium-linux.png index 5f67c70792..18d98a75a6 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-1-firefox-linux.png index 62133fab0a..268f1509da 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-1-webkit-linux.png index cdffc55505..06da1e57e4 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-2-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-2-chromium-linux.png index 9e106a2737..34f9133fc9 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-2-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-2-firefox-linux.png index 1bedac84b7..ebd673e414 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-2-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-2-webkit-linux.png index 828b0f86ea..e6992c7133 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Horizontal-with-trend-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-1-chromium-linux.png index 838fe0efe5..419ff7838e 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-1-firefox-linux.png index 51f1a4ae42..3ffc6bf90b 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-1-webkit-linux.png index a3b9241c0a..0363ad05b4 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-2-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-2-chromium-linux.png index 9f3a0cd9a3..0c736ad850 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-2-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-2-firefox-linux.png index 8889fb392e..43865713ad 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-2-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-2-webkit-linux.png index adc655fa3f..d54ec03a43 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-for-chart-Vertical-with-trend-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-null-and-undefined-values-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-null-and-undefined-values-1-chromium-linux.png index fccb4665b5..bad26bdae5 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-null-and-undefined-values-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-null-and-undefined-values-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-null-and-undefined-values-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-null-and-undefined-values-1-firefox-linux.png index 4ac7b92c70..53032a2f26 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-null-and-undefined-values-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-null-and-undefined-values-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-null-and-undefined-values-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-null-and-undefined-values-1-webkit-linux.png index a703b3198e..d89bbebfcf 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-null-and-undefined-values-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-null-and-undefined-values-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-single-data-point-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-single-data-point-1-chromium-linux.png index 5ed4c62bea..3ea3c672fc 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-single-data-point-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-single-data-point-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-single-data-point-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-single-data-point-1-firefox-linux.png index c1f96e9d72..ee1440c1f4 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-single-data-point-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-single-data-point-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-single-data-point-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-single-data-point-1-webkit-linux.png index 5ce847351a..651f49d951 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-single-data-point-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Data-variations-Verify-bar-chart-with-single-data-point-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-1-chromium-linux.png index e501ea97fb..67152aaa3a 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-1-firefox-linux.png index ca7d619e02..b8666c3788 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-1-webkit-linux.png index 83395d938c..0b4905e1c6 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-2-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-2-chromium-linux.png index 96a2eb516c..ca55bbe915 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-2-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-2-firefox-linux.png index 399d93a626..fc366041e6 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-2-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-2-webkit-linux.png index 1eb4e5d54e..63256e710a 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-horizontal-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-1-chromium-linux.png index a9249214cc..aaa36ffbfb 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-1-firefox-linux.png index 10e7012386..53dee2c031 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-1-webkit-linux.png index e5c47dcbb5..ade90af5bc 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-2-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-2-chromium-linux.png index 393996f516..c6d80cc55f 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-2-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-2-firefox-linux.png index b5561ad5c7..415d48143c 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-2-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-2-webkit-linux.png index 4f625989a7..5e0eb845b2 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-grouped-bars-vertical-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-1-chromium-linux.png index ec4c08d9e5..50c26211d9 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-1-firefox-linux.png index 942b1bf2b3..fa1dd0cc0e 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-1-webkit-linux.png index eb404c87d6..72f4c4faf8 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-2-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-2-chromium-linux.png index a0f4d3ffc0..8d774e13a8 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-2-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-2-firefox-linux.png index 010f992266..8be74f413c 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-2-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-2-webkit-linux.png index 6928eac434..69fcd9cc71 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-horizontal-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-1-chromium-linux.png index 62fb9fc508..073c216d7f 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-1-firefox-linux.png index 9cfcfe0a86..dccd79162a 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-1-webkit-linux.png index 924d0773b5..71cbc7ed18 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-2-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-2-chromium-linux.png index 2fda1a1e42..6b822e4bc7 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-2-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-2-firefox-linux.png index 7190c31d6a..396eefea79 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-2-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-2-webkit-linux.png index cccc50349e..59186765d1 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Grouped-and-stacked-bars-Verify-bar-chart-with-stacked-bars-vertical-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-1-chromium-linux.png index 3c3c1aef38..700c598466 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-1-firefox-linux.png index 498649478c..220b83885b 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-1-webkit-linux.png index bced08f3f7..741f412de6 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-2-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-2-chromium-linux.png index ff234117fd..ee38fa36e4 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-2-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-2-firefox-linux.png index d5fc38ef42..e064a95bd4 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-2-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-2-webkit-linux.png index b45d42c33e..3882f90269 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-keyboard-interaction-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-1-chromium-linux.png index 6e4bb4055e..1ff5610152 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-1-firefox-linux.png index 7b163eefd6..6512b9a235 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-1-webkit-linux.png index c7536ddbba..b8f99a69b4 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-2-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-2-chromium-linux.png index ad8e465caf..17d1aecd00 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-2-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-2-firefox-linux.png index 0558eabe27..b9479ddbfe 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-2-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-2-webkit-linux.png index 5b52a5d6d5..5f6e86703d 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-legend-and-pattern-fill-mouse-interaction-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-1-chromium-linux.png index cedf3a4905..bb6881c730 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-1-firefox-linux.png index 0a3ac4c053..ef6117d940 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-1-webkit-linux.png index c6918674b7..93c0bd5cc0 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-2-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-2-chromium-linux.png index cedf3a4905..bb6881c730 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-2-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-2-firefox-linux.png index 0a3ac4c053..ef6117d940 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-2-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-2-webkit-linux.png index c6918674b7..93c0bd5cc0 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-keyboard-interaction-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-1-chromium-linux.png index c0ef5b8b72..bd117fd696 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-1-firefox-linux.png index 569bc0de9e..ee7b3b2963 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-1-webkit-linux.png index f5db7c589d..0d091c1830 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-2-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-2-chromium-linux.png index 3a2ff78c18..6bad094c2e 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-2-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-2-firefox-linux.png index df48965ddb..75675724d7 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-2-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-2-webkit-linux.png index 5de1319881..c297614333 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-bar-legend-and-pattern-fill-mouse-interaction-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-1acd4-bar-legend-and-pattern-fill-mouse-interaction-2-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-1acd4-bar-legend-and-pattern-fill-mouse-interaction-2-chromium-linux.png index 789088451a..3eb7a73030 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-1acd4-bar-legend-and-pattern-fill-mouse-interaction-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-1acd4-bar-legend-and-pattern-fill-mouse-interaction-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-1acd4-bar-legend-and-pattern-fill-mouse-interaction-2-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-1acd4-bar-legend-and-pattern-fill-mouse-interaction-2-firefox-linux.png index 0d2931eaed..f9d2350bf6 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-1acd4-bar-legend-and-pattern-fill-mouse-interaction-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-1acd4-bar-legend-and-pattern-fill-mouse-interaction-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-1acd4-bar-legend-and-pattern-fill-mouse-interaction-2-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-1acd4-bar-legend-and-pattern-fill-mouse-interaction-2-webkit-linux.png index a1f17eb11b..f7854bc9bb 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-1acd4-bar-legend-and-pattern-fill-mouse-interaction-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-1acd4-bar-legend-and-pattern-fill-mouse-interaction-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-7b1c1--legend-and-pattern-fill-keyboard-interaction-2-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-7b1c1--legend-and-pattern-fill-keyboard-interaction-2-chromium-linux.png index f97af52128..4c3078940d 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-7b1c1--legend-and-pattern-fill-keyboard-interaction-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-7b1c1--legend-and-pattern-fill-keyboard-interaction-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-7b1c1--legend-and-pattern-fill-keyboard-interaction-2-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-7b1c1--legend-and-pattern-fill-keyboard-interaction-2-firefox-linux.png index 48d2d1560f..c0975dbcf0 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-7b1c1--legend-and-pattern-fill-keyboard-interaction-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-7b1c1--legend-and-pattern-fill-keyboard-interaction-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-7b1c1--legend-and-pattern-fill-keyboard-interaction-2-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-7b1c1--legend-and-pattern-fill-keyboard-interaction-2-webkit-linux.png index 84b9a08cee..e7be64c730 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-7b1c1--legend-and-pattern-fill-keyboard-interaction-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-7b1c1--legend-and-pattern-fill-keyboard-interaction-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-a8f18--legend-and-pattern-fill-keyboard-interaction-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-a8f18--legend-and-pattern-fill-keyboard-interaction-1-chromium-linux.png index f094940489..55725b9f5d 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-a8f18--legend-and-pattern-fill-keyboard-interaction-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-a8f18--legend-and-pattern-fill-keyboard-interaction-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-a8f18--legend-and-pattern-fill-keyboard-interaction-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-a8f18--legend-and-pattern-fill-keyboard-interaction-1-firefox-linux.png index 652d06f3aa..23bc6cb2a4 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-a8f18--legend-and-pattern-fill-keyboard-interaction-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-a8f18--legend-and-pattern-fill-keyboard-interaction-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-a8f18--legend-and-pattern-fill-keyboard-interaction-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-a8f18--legend-and-pattern-fill-keyboard-interaction-1-webkit-linux.png index 3448142e44..2d2514ecdd 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-a8f18--legend-and-pattern-fill-keyboard-interaction-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-a8f18--legend-and-pattern-fill-keyboard-interaction-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-db8da-bar-legend-and-pattern-fill-mouse-interaction-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-db8da-bar-legend-and-pattern-fill-mouse-interaction-1-chromium-linux.png index 4428af3641..8729fae9e2 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-db8da-bar-legend-and-pattern-fill-mouse-interaction-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-db8da-bar-legend-and-pattern-fill-mouse-interaction-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-db8da-bar-legend-and-pattern-fill-mouse-interaction-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-db8da-bar-legend-and-pattern-fill-mouse-interaction-1-firefox-linux.png index 57f76a5a29..be3a957abb 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-db8da-bar-legend-and-pattern-fill-mouse-interaction-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-db8da-bar-legend-and-pattern-fill-mouse-interaction-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-db8da-bar-legend-and-pattern-fill-mouse-interaction-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-db8da-bar-legend-and-pattern-fill-mouse-interaction-1-webkit-linux.png index e30ecd17d3..e51fb81cc9 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-db8da-bar-legend-and-pattern-fill-mouse-interaction-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-db8da-bar-legend-and-pattern-fill-mouse-interaction-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx index a36be3a3f5..77287d0501 100644 --- a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx +++ b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx @@ -60,7 +60,7 @@ test.describe(`${TAG.VISUAL}`, () => { variables.forEach((vars, index) => { test(`Verify bar horizontal compact with config ${index + 1} (${vars.description})`, { - tag: [TAG.PRIORITY_HIGH, '@bar-horizontal-compact', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@bar-horizontal-compact', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -87,7 +87,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify advanced usage of bar horizontal compact', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bar-horizontal-compact', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bar-horizontal-compact', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -109,7 +109,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify bar horizontal compact with links', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, TAG.KEYBOARD, '@bar-horizontal-compact', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, TAG.KEYBOARD, '@bar-horizontal-compact', '@d3-chart', '@base-components', '@flex-box', '@link', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -138,7 +138,7 @@ We verify states, visibility, and attributes. ===================================================== */ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify bar elements aria-hidden attributes', { - tag: [TAG.PRIORITY_HIGH, '@bar-horizontal-compact', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@bar-horizontal-compact', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-2dbb9-terns-no-margins-no-axis-patterns-enabled-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-2dbb9-terns-no-margins-no-axis-patterns-enabled-1-chromium-linux.png index 2e8c3199e5..dcf929e808 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-2dbb9-terns-no-margins-no-axis-patterns-enabled-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-2dbb9-terns-no-margins-no-axis-patterns-enabled-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-2dbb9-terns-no-margins-no-axis-patterns-enabled-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-2dbb9-terns-no-margins-no-axis-patterns-enabled-1-firefox-linux.png index 586217438a..986c53b633 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-2dbb9-terns-no-margins-no-axis-patterns-enabled-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-2dbb9-terns-no-margins-no-axis-patterns-enabled-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-2dbb9-terns-no-margins-no-axis-patterns-enabled-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-2dbb9-terns-no-margins-no-axis-patterns-enabled-1-webkit-linux.png index 73fddd33f3..7fde06e290 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-2dbb9-terns-no-margins-no-axis-patterns-enabled-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-2dbb9-terns-no-margins-no-axis-patterns-enabled-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-b1c7d-andard-all-features-medium-size-with-axis-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-b1c7d-andard-all-features-medium-size-with-axis-1-chromium-linux.png index 93ed2c8618..deb5eb2315 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-b1c7d-andard-all-features-medium-size-with-axis-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-b1c7d-andard-all-features-medium-size-with-axis-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-b1c7d-andard-all-features-medium-size-with-axis-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-b1c7d-andard-all-features-medium-size-with-axis-1-firefox-linux.png index 357d766f80..4c9f121c7a 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-b1c7d-andard-all-features-medium-size-with-axis-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-b1c7d-andard-all-features-medium-size-with-axis-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-b1c7d-andard-all-features-medium-size-with-axis-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-b1c7d-andard-all-features-medium-size-with-axis-1-webkit-linux.png index d83948dcd9..a896187b9b 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-b1c7d-andard-all-features-medium-size-with-axis-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-con-b1c7d-andard-all-features-medium-size-with-axis-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-config-3-Standart-No-margins-no-tooltip-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-config-3-Standart-No-margins-no-tooltip-1-chromium-linux.png index c2110206cb..ac4a6cc88d 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-config-3-Standart-No-margins-no-tooltip-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-config-3-Standart-No-margins-no-tooltip-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-config-3-Standart-No-margins-no-tooltip-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-config-3-Standart-No-margins-no-tooltip-1-firefox-linux.png index 65aa6d824a..f61ef20a4e 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-config-3-Standart-No-margins-no-tooltip-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-config-3-Standart-No-margins-no-tooltip-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-config-3-Standart-No-margins-no-tooltip-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-config-3-Standart-No-margins-no-tooltip-1-webkit-linux.png index 2d1b046bd9..08c9c886a5 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-config-3-Standart-No-margins-no-tooltip-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-config-3-Standart-No-margins-no-tooltip-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-links-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-links-1-chromium-linux.png index 3f07d815f1..a1fd3f6f2f 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-links-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-links-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-links-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-links-1-firefox-linux.png index 86d2962407..bad8a442aa 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-links-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-links-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-links-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-links-1-webkit-linux.png index a5bd9c13e5..718f3b9583 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-links-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-bar-horizontal-compact-with-links-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx index 380e8a7ea3..c05014607d 100644 --- a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx +++ b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx @@ -75,7 +75,7 @@ test.describe(`${TAG.VISUAL}`, () => { variables.forEach((vars, index) => { test(`Verify bubble chart ${vars.description}`, { - tag: [TAG.PRIORITY_HIGH, '@bubble-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@bubble-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -104,7 +104,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify bubble chart implementation', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bubble-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bubble-chart', '@d3-chart', '@typography'], }, async ({ page, browserName }) => { await loadPage( page, @@ -128,7 +128,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify color customization', { - tag: [TAG.PRIORITY_MEDIUM, '@bubble-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, '@bubble-chart', '@d3-chart', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -144,7 +144,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify legend and pattern interactions by mouse', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bubble-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bubble-chart', '@d3-chart', '@base-components', '@flex-box', '@chart-legend', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -205,7 +205,7 @@ We verify states, visibility, and attributes. ===================================================== */ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify bubble circles count and attributes', { - tag: [TAG.PRIORITY_HIGH, '@bubble-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@bubble-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await test.step('Verify basic usage example', async () => { await loadPage( @@ -248,7 +248,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify onClick callback in bubble circle', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bubble-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@bubble-chart', '@d3-chart', '@typography'], }, async ({ page }) => { const messages: string[] = []; page.on('console', (msg) => { diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Inverted-yAxis-and-no-tooltip-1-chromium-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Inverted-yAxis-and-no-tooltip-1-chromium-linux.png index 11970ce122..acf2bce292 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Inverted-yAxis-and-no-tooltip-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Inverted-yAxis-and-no-tooltip-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Inverted-yAxis-and-no-tooltip-1-firefox-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Inverted-yAxis-and-no-tooltip-1-firefox-linux.png index 43720529d7..f34f199306 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Inverted-yAxis-and-no-tooltip-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Inverted-yAxis-and-no-tooltip-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Inverted-yAxis-and-no-tooltip-1-webkit-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Inverted-yAxis-and-no-tooltip-1-webkit-linux.png index 3e935cdbd5..260e4a2f16 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Inverted-yAxis-and-no-tooltip-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Inverted-yAxis-and-no-tooltip-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Patterns-no-axes-patterns-enabled-large-size-1-chromium-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Patterns-no-axes-patterns-enabled-large-size-1-chromium-linux.png index b875e780df..56de8fde86 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Patterns-no-axes-patterns-enabled-large-size-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Patterns-no-axes-patterns-enabled-large-size-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Patterns-no-axes-patterns-enabled-large-size-1-firefox-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Patterns-no-axes-patterns-enabled-large-size-1-firefox-linux.png index 896c13c8bc..97f4d10463 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Patterns-no-axes-patterns-enabled-large-size-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Patterns-no-axes-patterns-enabled-large-size-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Patterns-no-axes-patterns-enabled-large-size-1-webkit-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Patterns-no-axes-patterns-enabled-large-size-1-webkit-linux.png index 0a6805220d..3aacf89e09 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Patterns-no-axes-patterns-enabled-large-size-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Patterns-no-axes-patterns-enabled-large-size-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Standard-all-features-enabled-medium-size-1-chromium-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Standard-all-features-enabled-medium-size-1-chromium-linux.png index 2cc02c56ed..a576d89b4e 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Standard-all-features-enabled-medium-size-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Standard-all-features-enabled-medium-size-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Standard-all-features-enabled-medium-size-1-firefox-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Standard-all-features-enabled-medium-size-1-firefox-linux.png index 375fb568ae..de65fc8a5f 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Standard-all-features-enabled-medium-size-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Standard-all-features-enabled-medium-size-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Standard-all-features-enabled-medium-size-1-webkit-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Standard-all-features-enabled-medium-size-1-webkit-linux.png index e350a2225d..4859fec0c8 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Standard-all-features-enabled-medium-size-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-Standard-all-features-enabled-medium-size-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-1-chromium-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-1-chromium-linux.png index cdc52510c7..9ba3741133 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-1-firefox-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-1-firefox-linux.png index 5b08b71c17..ba37ed5db7 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-1-webkit-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-1-webkit-linux.png index 4026f992df..eee41794d9 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-2-chromium-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-2-chromium-linux.png index fb7052d0ae..6f255e5154 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-2-firefox-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-2-firefox-linux.png index 89b94f695a..3a1c9eff1d 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-2-webkit-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-2-webkit-linux.png index ba29d3f1a6..b452d4cf2b 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-interactions-by-mouse-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx index 902541f497..b212937b17 100644 --- a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx +++ b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx @@ -25,7 +25,7 @@ Visual states, hover and focus styles, paddings, margins, and snapshots. ===================================================== */ test.describe(`${TAG.VISUAL}`, () => { test('Verify tooltip shown on hover', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@cigarette-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@cigarette-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -52,7 +52,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify layouts and highlights on hover', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@cigarette-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@cigarette-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -103,7 +103,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify no tooltip when showTooltip=false', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@cigarette-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@cigarette-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -155,7 +155,7 @@ test.describe(`${TAG.VISUAL}`, () => { tooltipViewTypeVariants.forEach((variant) => { test(`Verify tooltipViewType=${variant.name}`, { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@cigarette-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@cigarette-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -225,7 +225,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify tiny value invisible at minimalBarWidth=0', { - tag: [TAG.PRIORITY_HIGH, '@cigarette-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@cigarette-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -243,7 +243,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify tiny value visible at minimalBarWidth=10', { - tag: [TAG.PRIORITY_HIGH, '@cigarette-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@cigarette-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -261,7 +261,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify multiple tiny values get minimalBarWidth from donor', { - tag: [TAG.PRIORITY_HIGH, '@cigarette-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@cigarette-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -281,7 +281,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify equal values have equal width', { - tag: [TAG.PRIORITY_HIGH, '@cigarette-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@cigarette-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -302,7 +302,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify zero value present in DOM but has zero width', { - tag: [TAG.PRIORITY_HIGH, '@cigarette-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@cigarette-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -320,7 +320,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify all tiny values get minimalBarWidth without donors', { - tag: [TAG.PRIORITY_HIGH, '@cigarette-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@cigarette-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-1-chromium-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-1-chromium-linux.png index 6ca9ddc872..f28203873f 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-1-chromium-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-1-firefox-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-1-firefox-linux.png index 7a9ea7cc75..0f24e9b227 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-1-firefox-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-1-webkit-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-1-webkit-linux.png index 4623bb19f8..4f6d309789 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-1-webkit-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-2-chromium-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-2-chromium-linux.png index 14f3d9c779..7c1b3e868d 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-2-chromium-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-2-firefox-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-2-firefox-linux.png index cc0afde840..3604e8f8e9 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-2-firefox-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-2-webkit-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-2-webkit-linux.png index 0534e4a454..c002faf72b 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-2-webkit-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-values-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-1-chromium-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-1-chromium-linux.png index 2127a1b123..a2c1b03439 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-1-chromium-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-1-firefox-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-1-firefox-linux.png index 7ba7f541d4..d35b3cfc15 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-1-firefox-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-1-webkit-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-1-webkit-linux.png index f2b8dcb04c..c06e0791ce 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-1-webkit-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-2-chromium-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-2-chromium-linux.png index c67166483f..baaff58e4d 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-2-chromium-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-2-firefox-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-2-firefox-linux.png index c13cc8a20b..95e9cac6e9 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-2-firefox-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-2-webkit-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-2-webkit-linux.png index 08420b9294..d8233b7414 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-2-webkit-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-layouts-and-highlights-on-hover-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-no-tooltip-when-showTooltip-false-1-chromium-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-no-tooltip-when-showTooltip-false-1-chromium-linux.png index 9d46166a91..82ad249493 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-no-tooltip-when-showTooltip-false-1-chromium-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-no-tooltip-when-showTooltip-false-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-no-tooltip-when-showTooltip-false-1-firefox-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-no-tooltip-when-showTooltip-false-1-firefox-linux.png index 305376abf2..4e4ced4f95 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-no-tooltip-when-showTooltip-false-1-firefox-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-no-tooltip-when-showTooltip-false-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-no-tooltip-when-showTooltip-false-1-webkit-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-no-tooltip-when-showTooltip-false-1-webkit-linux.png index 77a0200457..c653df6a81 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-no-tooltip-when-showTooltip-false-1-webkit-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-no-tooltip-when-showTooltip-false-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-with-percent-and-total-1-chromium-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-with-percent-and-total-1-chromium-linux.png index 25fb9c4978..162128915a 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-with-percent-and-total-1-chromium-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-with-percent-and-total-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-with-percent-and-total-1-firefox-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-with-percent-and-total-1-firefox-linux.png index b218253427..f251cd7a6e 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-with-percent-and-total-1-firefox-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-with-percent-and-total-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-with-percent-and-total-1-webkit-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-with-percent-and-total-1-webkit-linux.png index a7e8ad9309..6c318bfa51 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-with-percent-and-total-1-webkit-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-with-percent-and-total-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-without-percent-1-chromium-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-without-percent-1-chromium-linux.png index cbc066bd44..6ea3726718 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-without-percent-1-chromium-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-without-percent-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-without-percent-1-firefox-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-without-percent-1-firefox-linux.png index d7b625c8a4..f7464bc340 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-without-percent-1-firefox-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-without-percent-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-without-percent-1-webkit-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-without-percent-1-webkit-linux.png index aeb78799fb..2c15bc0bd7 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-without-percent-1-webkit-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-all-without-percent-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-with-percent-1-chromium-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-with-percent-1-chromium-linux.png index f6ec0ebd67..9667739cd1 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-with-percent-1-chromium-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-with-percent-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-with-percent-1-firefox-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-with-percent-1-firefox-linux.png index 50fc948a72..f9db2845da 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-with-percent-1-firefox-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-with-percent-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-with-percent-1-webkit-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-with-percent-1-webkit-linux.png index efe45795de..3445338ab9 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-with-percent-1-webkit-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-with-percent-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-without-percent-1-chromium-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-without-percent-1-chromium-linux.png index 5928e2ffc7..f67c9b57b6 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-without-percent-1-chromium-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-without-percent-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-without-percent-1-firefox-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-without-percent-1-firefox-linux.png index f4c1b95af8..b439ff6377 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-without-percent-1-firefox-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-without-percent-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-without-percent-1-webkit-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-without-percent-1-webkit-linux.png index 8d891d383b..c57741c523 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-without-percent-1-webkit-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltipViewType-single-without-percent-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx index a8a76dd70b..1fa116d87f 100644 --- a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx +++ b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx @@ -243,7 +243,7 @@ test.describe(`${TAG.VISUAL}`, () => { test.describe('Hover Line and Tooltip', () => { test('Verify Tooltip controlled appearing', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/docs/examples/d3-chart/tooltip-control.tsx', 'en'); await page.waitForTimeout(500); // wait for finish animation @@ -367,14 +367,14 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify custom shape as leged item', { - tag: [TAG.PRIORITY_MEDIUM, '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, '@d3-chart', '@chart-legend'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/docs/examples/chart-legend/custom-shape-as-legenditem.tsx', 'en'); await expect(page).toHaveScreenshot(); }); test('Verify leged table view', { - tag: [TAG.PRIORITY_MEDIUM, '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, '@d3-chart', '@chart-legend', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/docs/examples/chart-legend/table-view.tsx', 'en'); @@ -620,7 +620,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test.describe('Dots', () => { test('Verify dots radius', { - tag: [TAG.PRIORITY_MEDIUM, '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/docs/examples/d3-chart/tooltip.tsx', 'en'); @@ -638,7 +638,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test.describe('Chart legend', () => { test('Verify checkbox roles and attributes', { - tag: [TAG.PRIORITY_MEDIUM, '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, '@d3-chart', '@chart-legend'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/tests/examples/chart-legend/customizable_legend.tsx', 'en'); diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-leged-table-view-1-chromium-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-leged-table-view-1-chromium-linux.png index 374fa5007f..2270d09fda 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-leged-table-view-1-chromium-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-leged-table-view-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-leged-table-view-1-firefox-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-leged-table-view-1-firefox-linux.png index dfae5a97c8..8e0d5a19a6 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-leged-table-view-1-firefox-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-leged-table-view-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-leged-table-view-1-webkit-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-leged-table-view-1-webkit-linux.png index f62ce29824..51004e5acb 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-leged-table-view-1-webkit-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-leged-table-view-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Checkbox-shape-1-chromium-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Checkbox-shape-1-chromium-linux.png index 092383636e..d97c0a1344 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Checkbox-shape-1-chromium-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Checkbox-shape-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Checkbox-shape-1-firefox-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Checkbox-shape-1-firefox-linux.png index 0495e49295..520ae35baf 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Checkbox-shape-1-firefox-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Checkbox-shape-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Checkbox-shape-1-webkit-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Checkbox-shape-1-webkit-linux.png index eab2f3f830..0bacaa0d5c 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Checkbox-shape-1-webkit-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Checkbox-shape-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Checkbox-shape-1-chromium-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Checkbox-shape-1-chromium-linux.png index c31b051e2b..dfb27f3f9f 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Checkbox-shape-1-chromium-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Checkbox-shape-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Checkbox-shape-1-firefox-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Checkbox-shape-1-firefox-linux.png index cfa36a473f..cd20af9164 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Checkbox-shape-1-firefox-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Checkbox-shape-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Checkbox-shape-1-webkit-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Checkbox-shape-1-webkit-linux.png index 937ec26253..a8ee071514 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Checkbox-shape-1-webkit-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Checkbox-shape-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Pattern-fills-dots-and-lines-Verify-enforcing-patterns-1-webkit-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Pattern-fills-dots-and-lines-Verify-enforcing-patterns-1-webkit-linux.png index bc8c5869cf..d89037019d 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Pattern-fills-dots-and-lines-Verify-enforcing-patterns-1-webkit-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Pattern-fills-dots-and-lines-Verify-enforcing-patterns-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx index d91d10a648..c6a1d9879a 100644 --- a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx +++ b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx @@ -50,7 +50,7 @@ test.describe(`${TAG.VISUAL}`, () => { variables.forEach((item) => { test(`Verify donut chart ${item.description}`, { - tag: [TAG.PRIORITY_HIGH, '@donut-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@donut-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -108,7 +108,7 @@ test.describe(`${TAG.VISUAL}`, () => { halfsizeVariables.forEach((item, index) => { test(`Verify semi-donut ${item.description}`, { - tag: [TAG.PRIORITY_HIGH, '@donut-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@donut-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -139,7 +139,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify donut controlled highlight interactions', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@donut-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@donut-chart', '@d3-chart', '@base-components', '@flex-box', '@checkbox'], }, async ({ page }) => { await loadPage( page, @@ -162,7 +162,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify donut legend and pattern fill interactions', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, TAG.KEYBOARD, '@donut-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, TAG.KEYBOARD, '@donut-chart', '@d3-chart', '@base-components', '@flex-box', '@chart-legend'], }, async ({ page }) => { await loadPage( page, @@ -206,7 +206,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); }); test('Verify semi-donut with labels', { - tag: [TAG.PRIORITY_MEDIUM, '@donut-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, '@donut-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/docs/examples/donut-chart/semi-donut.tsx', 'en'); @@ -225,7 +225,7 @@ We verify states, visibility, and attributes. ===================================================== */ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify aria-hidden attributes', { - tag: [TAG.PRIORITY_HIGH, '@donut-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@donut-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await test.step('Verify pies have aria-hidden attribute in basic usage', async () => { await loadPage(page, 'stories/components/d3-chart/docs/examples/donut-chart/basic-usage.tsx', 'en'); @@ -303,7 +303,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { showLegendCombinations.forEach((item) => { test(`Verify showLegend prop: ${item.description}`, { - tag: [TAG.PRIORITY_HIGH, '@donut-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@donut-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { const testProps: any = { data: item.data, @@ -330,7 +330,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify onClick callback in donut pie', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@donut-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@donut-chart', '@d3-chart', '@base-components', '@flex-box', '@checkbox'], }, async ({ page }) => { const messages: string[] = []; page.on('console', (msg) => { diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-1-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-1-webkit-linux.png index 91642f2c4d..7689d117e7 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-1-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-2-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-2-webkit-linux.png index 91642f2c4d..7689d117e7 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-2-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-1-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-1-chromium-linux.png index 071b56eab7..3b25333699 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-1-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-1-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-1-firefox-linux.png index 7ede4dc827..c07bca3651 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-1-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-1-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-1-webkit-linux.png index cb058a4e50..3129fbe250 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-1-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-2-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-2-chromium-linux.png index 2845a96db1..6104946a47 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-2-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-2-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-2-firefox-linux.png index b3e361534b..26854fe05a 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-2-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-2-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-2-webkit-linux.png index f6c83f16fc..56f447a6ae 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-2-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-controlled-highlight-interactions-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-1-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-1-chromium-linux.png index 729329262e..8c937832bc 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-1-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-1-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-1-firefox-linux.png index 45e2a8483f..7a8b4bbe76 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-1-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-1-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-1-webkit-linux.png index f257772fbe..3162cac8ab 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-1-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-2-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-2-chromium-linux.png index a0801cc413..33694eaee5 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-2-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-2-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-2-firefox-linux.png index 12f338a68d..12463f3199 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-2-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-2-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-2-webkit-linux.png index e77e537bfc..f9346bbca9 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-2-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-3-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-3-chromium-linux.png index afc2a9946d..a4f5ab725a 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-3-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-3-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-3-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-3-firefox-linux.png index e3a01b7e14..0d3796ffff 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-3-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-3-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-3-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-3-webkit-linux.png index d0fe6df5cd..35cecd9f96 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-3-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-3-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-4-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-4-chromium-linux.png index 9e25ffc5ce..27c0070f4e 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-4-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-4-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-4-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-4-firefox-linux.png index 4ebaf7331d..ad44903679 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-4-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-4-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-4-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-4-webkit-linux.png index 4acc815433..4fb72266fc 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-4-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-legend-and-pattern-fill-interactions-4-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx index d5fffb3ee4..6143c49543 100644 --- a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx +++ b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx @@ -188,7 +188,7 @@ test.describe(`${TAG.VISUAL}`, () => { variables.forEach((vars) => { test(`Verify line chart with config ${vars.name}`, { - tag: [TAG.PRIORITY_HIGH, '@line-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@line-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -272,7 +272,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify curve prop', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@line-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@line-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -319,7 +319,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify time scale with tooltip', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@line-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@line-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -348,7 +348,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify custom tooltip', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@line-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@line-chart', '@d3-chart', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -373,7 +373,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify patterns and symbols for dots mouse interactions', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@line-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@line-chart', '@d3-chart', '@base-components', '@flex-box', '@chart-legend'], }, async ({ page }) => { await loadPage( page, @@ -399,7 +399,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify patterns and symbols for dots keyboard interactions', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@line-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@line-chart', '@d3-chart', '@base-components', '@flex-box', '@chart-legend'], }, async ({ page }) => { await loadPage( page, @@ -489,7 +489,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }; test('Verify chart auto-sizes to its container and aspect derives the height', { - tag: [TAG.PRIORITY_HIGH, '@line-chart', '@d3-chart', '@responsive'], + tag: [TAG.PRIORITY_HIGH, '@line-chart', '@d3-chart', '@responsive', '@base-components', '@flex-box'], }, async ({ page }) => { await test.step('Without plotWidth/plotHeight the Plot renders with a measured (non-zero) size', async () => { // useExplicitPlotWidth is false by default - chart receives no plotWidth/plotHeight. @@ -516,7 +516,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify hMin clamps the aspect-derived height to the minimum', { - tag: [TAG.PRIORITY_HIGH, '@line-chart', '@d3-chart', '@responsive'], + tag: [TAG.PRIORITY_HIGH, '@line-chart', '@d3-chart', '@responsive', '@base-components', '@flex-box'], }, async ({ page }) => { // aspect 10 -> computed height (~width/10) is well below 120, so hMin must clamp it await loadPage(page, STORY, 'en', { aspect: 10, hMin: 120 }); @@ -529,7 +529,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify hMax clamps the aspect-derived height to the maximum', { - tag: [TAG.PRIORITY_MEDIUM, '@line-chart', '@d3-chart', '@responsive'], + tag: [TAG.PRIORITY_MEDIUM, '@line-chart', '@d3-chart', '@responsive', '@base-components', '@flex-box'], }, async ({ page }) => { // aspect 0.5 -> computed height (~2*width) is well above 180, so hMax must clamp it await loadPage(page, STORY, 'en', { aspect: 0.5, hMax: 180 }); @@ -542,7 +542,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify explicit plotWidth takes priority over container measurement', { - tag: [TAG.PRIORITY_HIGH, '@line-chart', '@d3-chart', '@responsive'], + tag: [TAG.PRIORITY_HIGH, '@line-chart', '@d3-chart', '@responsive', '@base-components', '@flex-box'], }, async ({ page }) => { // useExplicitPlotWidth passes plotWidth straight to the chart; the 500px Box is ignored for width await loadPage(page, STORY, 'en', { useExplicitPlotWidth: true, plotWidth: 250 }); diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-All-features-enabled-standard-size-1-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-All-features-enabled-standard-size-1-chromium-linux.png index 02c89494fc..fa9e431a23 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-All-features-enabled-standard-size-1-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-All-features-enabled-standard-size-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-All-features-enabled-standard-size-1-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-All-features-enabled-standard-size-1-firefox-linux.png index 79e0840a40..c23e7ce673 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-All-features-enabled-standard-size-1-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-All-features-enabled-standard-size-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-All-features-enabled-standard-size-1-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-All-features-enabled-standard-size-1-webkit-linux.png index 2a9f774f12..3a3948ea9c 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-All-features-enabled-standard-size-1-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-All-features-enabled-standard-size-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Large-size-minimal-margins-no-axes-1-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Large-size-minimal-margins-no-axes-1-chromium-linux.png index 39be0a57c7..6791da701b 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Large-size-minimal-margins-no-axes-1-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Large-size-minimal-margins-no-axes-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Large-size-minimal-margins-no-axes-1-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Large-size-minimal-margins-no-axes-1-firefox-linux.png index e09f5eb004..e9ba1b239e 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Large-size-minimal-margins-no-axes-1-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Large-size-minimal-margins-no-axes-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Large-size-minimal-margins-no-axes-1-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Large-size-minimal-margins-no-axes-1-webkit-linux.png index 78833417cd..4e438b0d50 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Large-size-minimal-margins-no-axes-1-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Large-size-minimal-margins-no-axes-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Minimal-features-medium-size-1-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Minimal-features-medium-size-1-chromium-linux.png index f11fe89d27..7dc33fd7cb 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Minimal-features-medium-size-1-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Minimal-features-medium-size-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Minimal-features-medium-size-1-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Minimal-features-medium-size-1-firefox-linux.png index fdd4bc72f7..bfa8002af2 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Minimal-features-medium-size-1-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Minimal-features-medium-size-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Minimal-features-medium-size-1-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Minimal-features-medium-size-1-webkit-linux.png index 23dda3b3cf..d46e7390a8 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Minimal-features-medium-size-1-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Minimal-features-medium-size-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-1-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-1-chromium-linux.png index 066668c958..5c5913a0fd 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-1-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-1-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-1-firefox-linux.png index 184130754c..d3ba1f0cce 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-1-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-1-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-1-webkit-linux.png index 26bfd3069d..225f60cb83 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-1-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-2-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-2-chromium-linux.png index 947c550a5b..5c5913a0fd 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-2-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-2-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-2-firefox-linux.png index 184130754c..d3ba1f0cce 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-2-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-2-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-2-webkit-linux.png index 26bfd3069d..225f60cb83 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-2-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-3-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-3-chromium-linux.png index 4ac5f7023b..231449c8d6 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-3-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-3-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-3-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-3-firefox-linux.png index 5ea4b06a0c..518513db01 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-3-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-3-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-3-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-3-webkit-linux.png index 37a4da143c..1768c2ff95 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-3-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-keyboard-interactions-3-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-1-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-1-chromium-linux.png index 1897daf0a0..c5c35110f3 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-1-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-1-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-1-firefox-linux.png index fa29e68896..d73986935e 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-1-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-1-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-1-webkit-linux.png index 718fca38c2..6f687a0e04 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-1-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-2-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-2-chromium-linux.png index b3cb17a446..03e6982edb 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-2-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-2-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-2-firefox-linux.png index 1ba46d8179..87e62132a8 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-2-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-2-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-2-webkit-linux.png index 1b86e4566d..8b0f92735e 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-2-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-patterns-and-symbols-for-dots-mouse-interactions-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx index c44f3a6c4c..312dcf204a 100644 --- a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx +++ b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx @@ -68,7 +68,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify scale', { - tag: [TAG.PRIORITY_MEDIUM, '@radar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, '@radar-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/docs/examples/radar-chart/scale.tsx', 'en'); @@ -103,7 +103,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify long label', { - tag: [TAG.PRIORITY_MEDIUM, '@radar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, '@radar-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/docs/examples/radar-chart/label-long.tsx', 'en'); @@ -114,7 +114,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify custom label', { - tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, '@radar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, '@radar-chart', '@d3-chart', '@base-components', '@flex-box', '@tag'], }, async ({ page, browserName }) => { if (browserName === 'webkit') return; @@ -177,7 +177,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify rotation', { - tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, '@radar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, '@radar-chart', '@d3-chart', '@slider'], }, async ({ page, browserName }) => { if (browserName === 'webkit') return; @@ -199,7 +199,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify legend and pattern fill', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@radar-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@radar-chart', '@d3-chart', '@chart-legend'], }, async ({ page }) => { await loadPage( page, diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-chromium-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-chromium-linux.png index df8b03207b..c9df57b54e 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-chromium-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-firefox-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-firefox-linux.png index 06f9125747..6caa5994d8 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-firefox-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-webkit-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-webkit-linux.png index bb0d8a7be6..7a12bb1869 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-webkit-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-2-chromium-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-2-chromium-linux.png index 649abf07a0..aa7ae0f2e0 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-2-chromium-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-2-firefox-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-2-firefox-linux.png index 9b18b25312..7d66143e99 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-2-firefox-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-1-chromium-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-1-chromium-linux.png index a57fcf6dc7..d32d4c21e4 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-1-chromium-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-1-firefox-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-1-firefox-linux.png index ccef0b903d..dffcffe55d 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-1-firefox-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-1-webkit-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-1-webkit-linux.png index 0ed263be95..24d5b524e7 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-1-webkit-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-rotation-1-chromium-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-rotation-1-chromium-linux.png index 65cf0d263e..94060cc86a 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-rotation-1-chromium-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-rotation-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx b/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx index 406c0414af..2b192c9c6f 100644 --- a/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx +++ b/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx @@ -97,7 +97,7 @@ We verify states, visibility, and attributes. ===================================================== */ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify aria-hidden attributes', { - tag: [TAG.PRIORITY_HIGH, '@radial-tree-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@radial-tree-chart', '@d3-chart', '@base-components', '@flex-box', '@select'], }, async ({ page }) => { await loadPage( page, diff --git a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx index 8372b4fdb2..1adc42b4df 100644 --- a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx +++ b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx @@ -70,7 +70,7 @@ test.describe(`${TAG.VISUAL}`, () => { variables.forEach((vars, index) => { test(`Verify scatterplot chart with config ${index + 1} (${vars.description})`, { - tag: [TAG.PRIORITY_HIGH, '@scatterplot-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@scatterplot-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage( page, @@ -99,7 +99,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify scatterplot with colors and numbers', { - tag: [TAG.PRIORITY_MEDIUM, '@scatterplot-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, '@scatterplot-chart', '@d3-chart', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -115,7 +115,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify legend and pattern fill focus styles', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@scatterplot-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@scatterplot-chart', '@d3-chart', '@chart-legend'], }, async ({ page, browserName }) => { if (browserName === 'webkit') return; @@ -142,7 +142,7 @@ We verify states, visibility, and attributes. ===================================================== */ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify onClickScatterItem callback', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@scatterplot-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@scatterplot-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { const messages: string[] = []; page.on('console', (msg) => { diff --git a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-chromium-linux.png b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-chromium-linux.png index a33021623b..aecc900312 100644 Binary files a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-chromium-linux.png and b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-firefox-linux.png b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-firefox-linux.png index 728c11c1a5..32a31aaca3 100644 Binary files a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-firefox-linux.png and b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-1-Standard-all-features-enabled-medium-size-1-chromium-linux.png b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-1-Standard-all-features-enabled-medium-size-1-chromium-linux.png index f510aa5e66..4047c1a532 100644 Binary files a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-1-Standard-all-features-enabled-medium-size-1-chromium-linux.png and b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-1-Standard-all-features-enabled-medium-size-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-1-Standard-all-features-enabled-medium-size-1-firefox-linux.png b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-1-Standard-all-features-enabled-medium-size-1-firefox-linux.png index 39511cee75..36645fb39d 100644 Binary files a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-1-Standard-all-features-enabled-medium-size-1-firefox-linux.png and b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-1-Standard-all-features-enabled-medium-size-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-1-Standard-all-features-enabled-medium-size-1-webkit-linux.png b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-1-Standard-all-features-enabled-medium-size-1-webkit-linux.png index c4f99a11b3..5f053da2bd 100644 Binary files a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-1-Standard-all-features-enabled-medium-size-1-webkit-linux.png and b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-1-Standard-all-features-enabled-medium-size-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-2-Patterns-no-axes-patterns-enabled-large-size-1-chromium-linux.png b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-2-Patterns-no-axes-patterns-enabled-large-size-1-chromium-linux.png index 5423477cc3..091aa37421 100644 Binary files a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-2-Patterns-no-axes-patterns-enabled-large-size-1-chromium-linux.png and b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-2-Patterns-no-axes-patterns-enabled-large-size-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-2-Patterns-no-axes-patterns-enabled-large-size-1-firefox-linux.png b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-2-Patterns-no-axes-patterns-enabled-large-size-1-firefox-linux.png index b1680e8490..ecb6ddf063 100644 Binary files a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-2-Patterns-no-axes-patterns-enabled-large-size-1-firefox-linux.png and b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-2-Patterns-no-axes-patterns-enabled-large-size-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-2-Patterns-no-axes-patterns-enabled-large-size-1-webkit-linux.png b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-2-Patterns-no-axes-patterns-enabled-large-size-1-webkit-linux.png index 241a91a485..ee60c47ce1 100644 Binary files a/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-2-Patterns-no-axes-patterns-enabled-large-size-1-webkit-linux.png and b/semcore/d3-chart/__tests__/scatterplot-chart.browser-test.tsx-snapshots/-visual-Verify-scatterplot-chart-with-config-2-Patterns-no-axes-patterns-enabled-large-size-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx index d2314e8857..4a9ab92244 100644 --- a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx +++ b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx @@ -28,7 +28,7 @@ Visual states, hover and focus styles, paddings, margins, and snapshots. ===================================================== */ test.describe(`${TAG.VISUAL}`, () => { test('Verify basic usage', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@venn-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@venn-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/docs/examples/venn-chart/basic-usage.tsx', 'en'); @@ -42,7 +42,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify Venn usage', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@venn-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@venn-chart', '@d3-chart', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/docs/examples/venn-chart/venn.tsx', 'en'); @@ -83,7 +83,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify setting orientation', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@venn-chart', '@d3-chart'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@venn-chart', '@d3-chart', '@base-components', '@flex-box', '@button'], }, async ({ page }) => { await loadPage( page, @@ -111,7 +111,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify legend and pattern fill hover styles', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@venn-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@venn-chart', '@d3-chart', '@chart-legend', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -132,7 +132,7 @@ test.describe(`${TAG.VISUAL}`, () => { }); test('Verify legend and pattern fill focus styles', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@venn-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@venn-chart', '@d3-chart', '@chart-legend', '@typography'], }, async ({ page }) => { await loadPage( page, @@ -159,7 +159,7 @@ We verify states, visibility, and attributes. ===================================================== */ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify aria-hidden attributes on venn circles', { - tag: [TAG.PRIORITY_HIGH, '@venn-chart', '@d3-chart'], + tag: [TAG.PRIORITY_HIGH, '@venn-chart', '@d3-chart', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/d3-chart/docs/examples/venn-chart/basic-usage.tsx', 'en'); diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-chromium-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-chromium-linux.png index ebb6c779b4..915736492a 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-chromium-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-firefox-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-firefox-linux.png index baa6b426c3..a47a3ecded 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-firefox-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-webkit-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-webkit-linux.png index b041c8c1b4..d1c0b453e1 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-webkit-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-basic-usage-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-chromium-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-chromium-linux.png index f238835638..ff23b3b596 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-chromium-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-firefox-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-firefox-linux.png index c47430cac0..2b2de11735 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-firefox-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-webkit-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-webkit-linux.png index c9770cf506..e8b5c5bbea 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-webkit-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-focus-styles-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-styles-1-chromium-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-styles-1-chromium-linux.png index 726acd0d2d..39673eccbd 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-styles-1-chromium-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-styles-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-styles-1-firefox-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-styles-1-firefox-linux.png index 95ed3b46c6..9e423c8998 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-styles-1-firefox-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-styles-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-styles-1-webkit-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-styles-1-webkit-linux.png index a07a1bc3fe..2a5c348190 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-styles-1-webkit-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-legend-and-pattern-fill-hover-styles-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-1-chromium-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-1-chromium-linux.png index 1933c514a5..f95127a735 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-1-chromium-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-1-firefox-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-1-firefox-linux.png index a2751551b1..1210057744 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-1-firefox-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-1-webkit-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-1-webkit-linux.png index 4ec14e95cd..dd2a0ebb74 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-1-webkit-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-2-chromium-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-2-chromium-linux.png index b712d8f633..52cf0b985c 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-2-chromium-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-2-firefox-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-2-firefox-linux.png index f8739fce70..ec50a8a089 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-2-firefox-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-2-webkit-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-2-webkit-linux.png index d84e30db19..5e93b44a48 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-2-webkit-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-3-chromium-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-3-chromium-linux.png index 933bd8a0f7..6c1897032c 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-3-chromium-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-3-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-3-firefox-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-3-firefox-linux.png index 244cc7627a..f632e0d581 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-3-firefox-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-3-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-3-webkit-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-3-webkit-linux.png index 80d92e268c..7904df20b3 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-3-webkit-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-setting-orientation-3-webkit-linux.png differ diff --git a/semcore/d3-chart/src/style/bar.shadow.css b/semcore/d3-chart/src/style/bar.shadow.css index 7fb7ee6541..b393437a92 100644 --- a/semcore/d3-chart/src/style/bar.shadow.css +++ b/semcore/d3-chart/src/style/bar.shadow.css @@ -62,5 +62,5 @@ SBarValue { text-align: right; } SCompactHorizontalBarHoverRect { - fill: var(--intergalactic-chart-grid-bar-chart-hover, oklch(0.177 0.033 175.6 / 0.028)); + fill: var(--intergalactic-chart-grid-bar-chart-hover, oklch(0.177 0.033 175.6 / 0.042)); } \ No newline at end of file diff --git a/semcore/d3-chart/src/style/bubble.shadow.css b/semcore/d3-chart/src/style/bubble.shadow.css index a0fc502333..1b9dc48d0f 100644 --- a/semcore/d3-chart/src/style/bubble.shadow.css +++ b/semcore/d3-chart/src/style/bubble.shadow.css @@ -2,7 +2,7 @@ SBubble { fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); - stroke: var(--intergalactic-chart-grid-border, #fff); + stroke: var(--intergalactic-chart-grid-border, #ffffff); stroke-width: 2px; transition-property: cx, cy; transition-duration: var(--duration); diff --git a/semcore/d3-chart/src/style/donut.shadow.css b/semcore/d3-chart/src/style/donut.shadow.css index afddadf31b..2a36c8d566 100644 --- a/semcore/d3-chart/src/style/donut.shadow.css +++ b/semcore/d3-chart/src/style/donut.shadow.css @@ -1,7 +1,7 @@ @import './var.css'; SPie { - stroke: var(--intergalactic-chart-grid-border, #fff); + stroke: var(--intergalactic-chart-grid-border, #ffffff); fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); } diff --git a/semcore/d3-chart/src/style/dot.shadow.css b/semcore/d3-chart/src/style/dot.shadow.css index 18c0d21ae1..ebcb1d42c9 100644 --- a/semcore/d3-chart/src/style/dot.shadow.css +++ b/semcore/d3-chart/src/style/dot.shadow.css @@ -8,7 +8,7 @@ SDots { SDot { stroke-width: 1px; - stroke: var(--intergalactic-chart-grid-border, #fff); + stroke: var(--intergalactic-chart-grid-border, #ffffff); fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); transition-property: cx, cy, x, y; transition-timing-function: ease-in-out; diff --git a/semcore/d3-chart/src/style/hover.shadow.css b/semcore/d3-chart/src/style/hover.shadow.css index ab4a99fa46..ce98501081 100644 --- a/semcore/d3-chart/src/style/hover.shadow.css +++ b/semcore/d3-chart/src/style/hover.shadow.css @@ -5,5 +5,5 @@ SHoverLine, SHoverLine:focus-visible { SHoverRect, SHoverRect:focus-visible { outline: none; - fill: var(--intergalactic-chart-grid-bar-chart-hover, oklch(0.177 0.033 175.6 / 0.028)); + fill: var(--intergalactic-chart-grid-bar-chart-hover, oklch(0.177 0.033 175.6 / 0.042)); } diff --git a/semcore/d3-chart/src/style/radar.shadow.css b/semcore/d3-chart/src/style/radar.shadow.css index 05a7e1bfe8..647d2e275c 100644 --- a/semcore/d3-chart/src/style/radar.shadow.css +++ b/semcore/d3-chart/src/style/radar.shadow.css @@ -47,7 +47,7 @@ SPolygon[pattern][color] { SPolygonDot { stroke-width: 2px; - stroke: var(--intergalactic-chart-grid-border, #fff); + stroke: var(--intergalactic-chart-grid-border, #ffffff); r: 6px; fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); } @@ -76,5 +76,5 @@ SPolygonLine[color] { SPieRect { outline: none; - fill: var(--intergalactic-chart-grid-bar-chart-hover, oklch(0.177 0.033 175.6 / 0.028)); + fill: var(--intergalactic-chart-grid-bar-chart-hover, oklch(0.177 0.033 175.6 / 0.042)); } diff --git a/semcore/d3-chart/src/style/radial-tree.shadow.css b/semcore/d3-chart/src/style/radial-tree.shadow.css index f2fb411b23..ff5590d853 100644 --- a/semcore/d3-chart/src/style/radial-tree.shadow.css +++ b/semcore/d3-chart/src/style/radial-tree.shadow.css @@ -2,11 +2,11 @@ SRadian { cursor: pointer; - fill: var(--intergalactic-text-large-info, oklch(0.53 0.157 279.2)); + fill: var(--intergalactic-text-large-info, oklch(0.6 0.166 277.7)); } SLine { - stroke: var(--intergalactic-text-large-info, oklch(0.53 0.157 279.2)); + stroke: var(--intergalactic-text-large-info, oklch(0.6 0.166 277.7)); } SLine[stroke] { @@ -22,7 +22,7 @@ SCap { } SCap[pattern] { - stroke: var(--intergalactic-chart-grid-border, #fff); + stroke: var(--intergalactic-chart-grid-border, #ffffff); stroke-width: 1px; } diff --git a/semcore/d3-chart/src/style/venn.shadow.css b/semcore/d3-chart/src/style/venn.shadow.css index 7d10e659c5..417b260e2f 100644 --- a/semcore/d3-chart/src/style/venn.shadow.css +++ b/semcore/d3-chart/src/style/venn.shadow.css @@ -2,7 +2,7 @@ SCircle { fill: var(--intergalactic-chart-palette-order-2, oklch(0.82 0.15 170)); - stroke: var(--intergalactic-chart-grid-border, #fff); + stroke: var(--intergalactic-chart-grid-border, #ffffff); stroke-width: 2px; fill-opacity: 0.5; transition-property: cx, cy; @@ -34,7 +34,7 @@ SCircle[transparent] { } SIntersection { - stroke: var(--intergalactic-chart-grid-border, #fff); + stroke: var(--intergalactic-chart-grid-border, #ffffff); stroke-width: 2px; fill-opacity: 0; diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx index 7507be0f5b..3a501ee729 100644 --- a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx +++ b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx @@ -20,7 +20,10 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify accordion with custom component styles', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@button', + '@d3-chart', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/with-component/with-button-not-in-accordion-cell.tsx', 'en'); const cellActiveBg = await getCssVarColor(page, '--intergalactic-table-td-cell-active'); @@ -94,11 +97,16 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify accordion and custom component inside after keyboard interactions ', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@button', + '@d3-chart', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/with-component/with-button-not-in-accordion-cell.tsx', 'en', { h: '100%' }); await page.keyboard.press('Tab'); + await expect(locators.toggle(page).nth(0)).toBeFocused(); + await page.keyboard.press('Enter'); await locators.chart(page, 'Chart').waitFor({ state: 'visible' }); await page.waitForTimeout(500); // for chart animation is finished (webkit needs more time) @@ -107,6 +115,7 @@ test.describe(`${TAG.VISUAL}`, () => { await expect(page).toHaveScreenshot(); await page.keyboard.press('ArrowUp'); + await expect(locators.toggle(page).nth(0)).toBeFocused(); await page.keyboard.press('Enter'); await locators.chart(page, 'Chart').waitFor({ state: 'hidden' }); await expect(page).toHaveScreenshot(); @@ -114,7 +123,9 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify table component inside accordion', { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/table-in-table/with-sorting.tsx', 'en'); @@ -137,7 +148,12 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify accordion with renderCell function for parent', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@button-link', + '@button', + '@d3-chart', + '@widget-empty', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/with-component/with-render-cell.tsx', 'en'); @@ -181,7 +197,9 @@ test.describe(`${TAG.VISUAL}`, () => { variantWithScrollBar.forEach((item) => { test(`Verify accordion with fixed Column withScrollBar=${item.withScrollBar}`, { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@widget-empty', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/with-component/with-fixed-column.tsx', 'en', item); @@ -299,7 +317,11 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify accordion with themed rows', { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@widget-empty', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/with-component/themed-parent-rows.tsx', 'en'); const stylesExpanded = await getStylesExpanded(page); @@ -402,7 +424,10 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify accordion with themed cells', { tag: [TAG.PRIORITY_HIGH, '@data-table', - '@base-components'], + '@base-components', + '@flex-box', + '@widget-empty', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/with-component/colored-parent-cells', 'en'); const stylesActiveHovered = await getStylesActiveHovered(page); @@ -511,7 +536,9 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify table in table with sorting', { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/table-in-table/with-sorting.tsx', 'en'); @@ -575,7 +602,9 @@ test.describe(`${TAG.VISUAL}`, () => { variantJustifyContent.forEach((item) => { test(`Verify accordion with justifyContent=${item.justifyContent}`, { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@typography', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/table-in-table/for-animation-and-justify-content-test', 'en', item); @@ -603,7 +632,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@data-table', - '@ellipsis'], + '@ellipsis', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/table-in-table/with-sorting.tsx', 'en'); @@ -687,7 +718,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@data-table', - '@ellipsis'], + '@ellipsis', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/table-in-table/with-sorting.tsx', 'en'); @@ -755,7 +788,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify base keyboard interactions with accordion ', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@button', + '@d3-chart', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/with-component/with-button-not-in-accordion-cell.tsx', 'en'); @@ -810,7 +846,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify base mouse interactions with accordion', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@data-table'], + '@data-table', + '@button', + '@d3-chart', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/with-component/with-button-not-in-accordion-cell.tsx', 'en'); @@ -865,7 +904,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify accordion attributes', { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@button', + '@d3-chart', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/with-component/with-button-not-in-accordion-cell.tsx', 'en'); @@ -903,7 +945,18 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { TAG.MOUSE, '@data-table', '@select', - '@link'], + '@link', + '@base-components', + '@flex-box', + '@button-link', + '@button', + '@checkbox', + '@inline-edit', + '@inline-input', + '@tooltip', + '@typography', + '@widget-empty', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/with-component/with-interactive-elements-in-cell-with-toggle.tsx', 'en'); @@ -930,7 +983,18 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { TAG.KEYBOARD, '@data-table', '@select', - '@link'], + '@link', + '@base-components', + '@flex-box', + '@button-link', + '@button', + '@checkbox', + '@inline-edit', + '@inline-input', + '@tooltip', + '@typography', + '@widget-empty', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/with-component/with-interactive-elements-in-cell-with-toggle.tsx', 'en'); @@ -1047,7 +1111,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@data-table', - '@ellipsis'], + '@ellipsis', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/table-in-table/with-sorting.tsx', 'en'); @@ -1428,7 +1494,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify accordion toggle mode works correctly with nested tables', { tag: [TAG.PRIORITY_HIGH, TAG.FUNCTIONAL, - '@data-table'], + '@data-table', + '@typography', + '@widget-empty', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/table-in-table/table-in-table-in-table.tsx', 'en', { accordionMode: 'toggle', @@ -1470,7 +1539,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify accordion after skeleton in table cell', { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@typography', + '@widget-empty', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/accordion-tests/table-in-table/table-in-table-in-table.tsx', 'en', { withSkeletonsAndAsyncDataLoading: true, diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-56c5d-component-inside-after-keyboard-interactions-2-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-56c5d-component-inside-after-keyboard-interactions-2-chromium-linux.png index 51c74380c0..81dcd2246d 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-56c5d-component-inside-after-keyboard-interactions-2-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-56c5d-component-inside-after-keyboard-interactions-2-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-56c5d-component-inside-after-keyboard-interactions-2-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-56c5d-component-inside-after-keyboard-interactions-2-firefox-linux.png index a63f382a6b..2abbd3e759 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-56c5d-component-inside-after-keyboard-interactions-2-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-56c5d-component-inside-after-keyboard-interactions-2-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-56c5d-component-inside-after-keyboard-interactions-2-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-56c5d-component-inside-after-keyboard-interactions-2-webkit-linux.png index 76d5507cb5..c2f107aa1c 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-56c5d-component-inside-after-keyboard-interactions-2-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-56c5d-component-inside-after-keyboard-interactions-2-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-c64f1-component-inside-after-keyboard-interactions-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-c64f1-component-inside-after-keyboard-interactions-1-chromium-linux.png index e2243ad689..38ac01cd24 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-c64f1-component-inside-after-keyboard-interactions-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-c64f1-component-inside-after-keyboard-interactions-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-c64f1-component-inside-after-keyboard-interactions-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-c64f1-component-inside-after-keyboard-interactions-1-firefox-linux.png index 4b9fe5b80f..9f7df96075 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-c64f1-component-inside-after-keyboard-interactions-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-c64f1-component-inside-after-keyboard-interactions-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-c64f1-component-inside-after-keyboard-interactions-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-c64f1-component-inside-after-keyboard-interactions-1-webkit-linux.png index 14c0c839a7..6068bced02 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-c64f1-component-inside-after-keyboard-interactions-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-an-c64f1-component-inside-after-keyboard-interactions-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-false-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-false-1-chromium-linux.png index 1118ced150..e9fcdb0bbd 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-false-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-false-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-false-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-false-1-firefox-linux.png index f7d51cdb57..c71049d926 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-false-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-false-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-false-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-false-1-webkit-linux.png index 5e1271a391..48d4e7ea80 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-false-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-false-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-true-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-true-1-chromium-linux.png index fb19cb829b..d36c052f7c 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-true-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-true-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-true-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-true-1-firefox-linux.png index b09ca6fc6a..6d75050af5 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-true-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-true-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-true-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-true-1-webkit-linux.png index 84e7fb921b..76d1e31529 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-true-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-fixed-Column-withScrollBar-true-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-renderCell-function-for-parent-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-renderCell-function-for-parent-1-chromium-linux.png index 16ecb686f7..e1e8535cb1 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-renderCell-function-for-parent-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-renderCell-function-for-parent-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-renderCell-function-for-parent-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-renderCell-function-for-parent-1-firefox-linux.png index 4c8c2c46ff..bea964fdeb 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-renderCell-function-for-parent-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-renderCell-function-for-parent-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-renderCell-function-for-parent-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-renderCell-function-for-parent-1-webkit-linux.png index 1680323574..d625a3a7ad 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-renderCell-function-for-parent-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-accordion-with-renderCell-function-for-parent-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-56d75-ons-when-variant-default-and-sedeIndents-wide-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-56d75-ons-when-variant-default-and-sedeIndents-wide-1-chromium-linux.png index 41fa483eef..0e1523ba8e 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-56d75-ons-when-variant-default-and-sedeIndents-wide-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-56d75-ons-when-variant-default-and-sedeIndents-wide-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-56d75-ons-when-variant-default-and-sedeIndents-wide-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-56d75-ons-when-variant-default-and-sedeIndents-wide-1-firefox-linux.png index 310b1a0fe0..c4923d3686 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-56d75-ons-when-variant-default-and-sedeIndents-wide-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-56d75-ons-when-variant-default-and-sedeIndents-wide-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-56d75-ons-when-variant-default-and-sedeIndents-wide-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-56d75-ons-when-variant-default-and-sedeIndents-wide-1-webkit-linux.png index 2f24101c81..517a47864e 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-56d75-ons-when-variant-default-and-sedeIndents-wide-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-56d75-ons-when-variant-default-and-sedeIndents-wide-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-622a0-n-variant-undefined-and-sedeIndents-undefined-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-622a0-n-variant-undefined-and-sedeIndents-undefined-1-chromium-linux.png index ae5e1891b5..518475337d 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-622a0-n-variant-undefined-and-sedeIndents-undefined-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-622a0-n-variant-undefined-and-sedeIndents-undefined-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-622a0-n-variant-undefined-and-sedeIndents-undefined-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-622a0-n-variant-undefined-and-sedeIndents-undefined-1-firefox-linux.png index 4004992c39..3829e3eebd 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-622a0-n-variant-undefined-and-sedeIndents-undefined-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-622a0-n-variant-undefined-and-sedeIndents-undefined-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-622a0-n-variant-undefined-and-sedeIndents-undefined-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-622a0-n-variant-undefined-and-sedeIndents-undefined-1-webkit-linux.png index 9ccf76c7fc..a515ff8f87 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-622a0-n-variant-undefined-and-sedeIndents-undefined-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-622a0-n-variant-undefined-and-sedeIndents-undefined-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-d9027-hen-variant-default-and-sedeIndents-undefined-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-d9027-hen-variant-default-and-sedeIndents-undefined-1-chromium-linux.png index ae5e1891b5..518475337d 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-d9027-hen-variant-default-and-sedeIndents-undefined-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-d9027-hen-variant-default-and-sedeIndents-undefined-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-d9027-hen-variant-default-and-sedeIndents-undefined-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-d9027-hen-variant-default-and-sedeIndents-undefined-1-firefox-linux.png index 4004992c39..3829e3eebd 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-d9027-hen-variant-default-and-sedeIndents-undefined-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-d9027-hen-variant-default-and-sedeIndents-undefined-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-d9027-hen-variant-default-and-sedeIndents-undefined-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-d9027-hen-variant-default-and-sedeIndents-undefined-1-webkit-linux.png index 9ccf76c7fc..a515ff8f87 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-d9027-hen-variant-default-and-sedeIndents-undefined-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-d9027-hen-variant-default-and-sedeIndents-undefined-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-ddb13-ctions-when-variant-card-and-sedeIndents-wide-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-ddb13-ctions-when-variant-card-and-sedeIndents-wide-1-chromium-linux.png index 41fa483eef..0e1523ba8e 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-ddb13-ctions-when-variant-card-and-sedeIndents-wide-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-ddb13-ctions-when-variant-card-and-sedeIndents-wide-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-ddb13-ctions-when-variant-card-and-sedeIndents-wide-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-ddb13-ctions-when-variant-card-and-sedeIndents-wide-1-firefox-linux.png index 310b1a0fe0..c4923d3686 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-ddb13-ctions-when-variant-card-and-sedeIndents-wide-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-ddb13-ctions-when-variant-card-and-sedeIndents-wide-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-ddb13-ctions-when-variant-card-and-sedeIndents-wide-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-ddb13-ctions-when-variant-card-and-sedeIndents-wide-1-webkit-linux.png index 2f24101c81..517a47864e 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-ddb13-ctions-when-variant-card-and-sedeIndents-wide-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-ddb13-ctions-when-variant-card-and-sedeIndents-wide-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-f3025-s-when-variant-card-and-sedeIndents-undefined-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-f3025-s-when-variant-card-and-sedeIndents-undefined-1-chromium-linux.png index 41fa483eef..0e1523ba8e 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-f3025-s-when-variant-card-and-sedeIndents-undefined-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-f3025-s-when-variant-card-and-sedeIndents-undefined-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-f3025-s-when-variant-card-and-sedeIndents-undefined-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-f3025-s-when-variant-card-and-sedeIndents-undefined-1-firefox-linux.png index 310b1a0fe0..c4923d3686 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-f3025-s-when-variant-card-and-sedeIndents-undefined-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-f3025-s-when-variant-card-and-sedeIndents-undefined-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-f3025-s-when-variant-card-and-sedeIndents-undefined-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-f3025-s-when-variant-card-and-sedeIndents-undefined-1-webkit-linux.png index 2f24101c81..517a47864e 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-f3025-s-when-variant-card-and-sedeIndents-undefined-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-checkbox-and-f3025-s-when-variant-card-and-sedeIndents-undefined-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-with-checkbox-and-accordion-not-in-1st-cell-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-with-checkbox-and-accordion-not-in-1st-cell-1-chromium-linux.png index 470c2beb56..8346cb565d 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-with-checkbox-and-accordion-not-in-1st-cell-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-with-checkbox-and-accordion-not-in-1st-cell-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-with-checkbox-and-accordion-not-in-1st-cell-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-with-checkbox-and-accordion-not-in-1st-cell-1-firefox-linux.png index cdeb48f115..da04b2690f 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-with-checkbox-and-accordion-not-in-1st-cell-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-with-checkbox-and-accordion-not-in-1st-cell-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-with-checkbox-and-accordion-not-in-1st-cell-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-with-checkbox-and-accordion-not-in-1st-cell-1-webkit-linux.png index 18437e5500..c58d5aa9c3 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-with-checkbox-and-accordion-not-in-1st-cell-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-with-checkbox-and-accordion-not-in-1st-cell-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-false-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-false-1-chromium-linux.png index b87cdcc5fc..c00dc846dc 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-false-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-false-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-false-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-false-1-firefox-linux.png index 6ba4093890..b63ea044e5 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-false-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-false-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-false-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-false-1-webkit-linux.png index bae7f78d89..ddf4d6fd1d 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-false-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-false-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-true-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-true-1-chromium-linux.png index 9ff922a186..c3096491c5 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-true-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-true-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-true-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-true-1-firefox-linux.png index 233c7cca4a..f4b830581c 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-true-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-true-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-true-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-true-1-webkit-linux.png index 742c75520d..4f7123d10b 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-true-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-fixed-column-withScrollBar-true-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-center-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-center-1-chromium-linux.png index 33d2c1ca50..6719c9a536 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-center-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-center-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-center-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-center-1-firefox-linux.png index d093b2ec42..6cdbbb5e1c 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-center-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-center-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-center-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-center-1-webkit-linux.png index 8984fa2066..fac47a3a49 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-center-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-center-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-end-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-end-1-chromium-linux.png index 4aa56a3220..9de9254ee7 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-end-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-end-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-end-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-end-1-firefox-linux.png index 016bb029e9..7609efce85 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-end-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-end-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-end-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-end-1-webkit-linux.png index 68071b1274..460993fa7c 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-end-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-end-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-start-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-start-1-chromium-linux.png index 18719955dd..363a42e822 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-start-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-start-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-start-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-start-1-firefox-linux.png index 01b7d737c0..ce19f32ba4 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-start-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-start-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-start-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-start-1-webkit-linux.png index 95e3ce44a8..90a44d2950 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-start-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-accordion-with-justifyContent-flex-start-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-1-chromium-linux.png index ce056c84e8..13faee69d2 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-1-firefox-linux.png index ffebbee169..378ab33a9a 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-1-webkit-linux.png index e39a382067..29765a0656 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-2-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-2-chromium-linux.png index 7f35538bf3..531420e2e2 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-2-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-2-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-2-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-2-firefox-linux.png index 300723ef33..db58ba7519 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-2-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-2-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-2-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-2-webkit-linux.png index 8cb9be695f..eb48689915 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-2-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-2-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-3-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-3-chromium-linux.png index 6da3329993..8b42e987bc 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-3-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-3-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-3-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-3-firefox-linux.png index ec56766d85..1bef1a4de9 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-3-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-3-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-3-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-3-webkit-linux.png index be0bd35d99..da974e3364 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-3-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Table-in-table-Verify-table-in-table-with-sorting-3-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx index c72a546b5c..3562625c71 100644 --- a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx +++ b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx @@ -12,7 +12,13 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify long text in cells and wrap and ellipsis', { tag: [TAG.PRIORITY_HIGH, '@data-table', - '@ellipsis'], + '@ellipsis', + '@base-components', + '@flex-box', + '@button', + '@link', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/long-text-in-cells.tsx', 'en'); @@ -21,7 +27,13 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify overflow=hidden visual finctionality', { tag: [TAG.PRIORITY_LOW, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@ellipsis', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/advanced/examples/overflow_in_cells.tsx', 'en'); await page.setViewportSize({ width: 768, height: 1024 }); @@ -30,7 +42,10 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify colored cells', { tag: [TAG.PRIORITY_MEDIUM, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/advanced/examples/row_cell_states.tsx', 'en'); await page.keyboard.press('Tab'); @@ -60,7 +75,15 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@data-table', - '@tooltip'], + '@tooltip', + '@base-components', + '@flex-box', + '@button-link', + '@button', + '@checkbox', + '@link', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/interactive-elements-in-cells.tsx', 'en'); @@ -136,7 +159,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@select', '@tooltip', '@checkbox', - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button-link', + '@button', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/dd-select-in-cell.tsx', 'en'); @@ -197,7 +226,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@select', '@tooltip', '@checkbox', - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button-link', + '@button', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/dd-select-in-cell.tsx', 'en'); @@ -355,7 +390,8 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@dropdown', - '@spin'], + '@spin', + '@data-table'], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/access-to-set-of-cells.tsx', 'en'); diff --git a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-long-text-in-cells-and-wrap-and-ellipsis-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-long-text-in-cells-and-wrap-and-ellipsis-1-chromium-linux.png index 79502e716a..83ac7363e8 100644 Binary files a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-long-text-in-cells-and-wrap-and-ellipsis-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-long-text-in-cells-and-wrap-and-ellipsis-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-long-text-in-cells-and-wrap-and-ellipsis-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-long-text-in-cells-and-wrap-and-ellipsis-1-firefox-linux.png index 990014f79d..76f4035592 100644 Binary files a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-long-text-in-cells-and-wrap-and-ellipsis-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-long-text-in-cells-and-wrap-and-ellipsis-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-long-text-in-cells-and-wrap-and-ellipsis-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-long-text-in-cells-and-wrap-and-ellipsis-1-webkit-linux.png index a6d55a963e..de44ec8f42 100644 Binary files a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-long-text-in-cells-and-wrap-and-ellipsis-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-long-text-in-cells-and-wrap-and-ellipsis-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-overflow-hidden-visual-finctionality-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-overflow-hidden-visual-finctionality-1-chromium-linux.png index eb5a7bcdec..9faf154e84 100644 Binary files a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-overflow-hidden-visual-finctionality-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-overflow-hidden-visual-finctionality-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-overflow-hidden-visual-finctionality-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-overflow-hidden-visual-finctionality-1-firefox-linux.png index 9b0b6759f4..9052a7986f 100644 Binary files a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-overflow-hidden-visual-finctionality-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-overflow-hidden-visual-finctionality-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-overflow-hidden-visual-finctionality-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-overflow-hidden-visual-finctionality-1-webkit-linux.png index 8162a1ea0e..fa61ae338b 100644 Binary files a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-overflow-hidden-visual-finctionality-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-overflow-hidden-visual-finctionality-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx index 1cdc913894..a5fc5dfacb 100644 --- a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx +++ b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx @@ -92,7 +92,10 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify head column shadow for fixed columns with different screen sizes', { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/advanced/examples/fixed_columns_width_with_shadows.tsx', 'en'); @@ -227,7 +230,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify merged columns and interactive cells', { tag: [TAG.PRIORITY_MEDIUM, '@data-table', - '@link'], + '@link', + '@button-link', + '@button', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/access-to-cells.tsx', 'en'); @@ -245,7 +251,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify column\'s aria-sort and aria-describedby attributes ', { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/sorting.tsx', 'en'); diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx b/semcore/data-table/__tests__/data-table-header.browser-test.tsx index 5ad0401761..656c226a63 100644 --- a/semcore/data-table/__tests__/data-table-header.browser-test.tsx +++ b/semcore/data-table/__tests__/data-table-header.browser-test.tsx @@ -16,7 +16,11 @@ test.describe(`${TAG.VISUAL}`, () => { TAG.KEYBOARD, '@data-table', '@select', - '@tooltip'], + '@tooltip', + '@link-trigger', + '@base-trigger', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/customizing-header.tsx', 'en'); @@ -46,7 +50,11 @@ test.describe(`${TAG.VISUAL}`, () => { test(`Verify styles when long text and icons in header when use=${item.use}`, { tag: [TAG.PRIORITY_HIGH, '@data-table', - '@base-components'], + '@base-components', + '@button-link', + '@button', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/header-tests/long-header-ellipsis.tsx', 'en', item); @@ -118,7 +126,11 @@ test.describe(`${TAG.VISUAL}`, () => { test.describe('Multi level Header', () => { test('Verify border and Long title with and without Ellipsis correctly', { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@button-link', + '@button', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/header-tests/multi-level-borders.tsx', 'en'); @@ -145,7 +157,15 @@ test.describe(`${TAG.VISUAL}`, () => { '@data-table', '@select', '@tooltip', - '@link'], + '@link', + '@base-components', + '@flex-box', + '@link-trigger', + '@base-trigger', + '@button-link', + '@button', + '@checkbox', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/header-tests/multi-level-with-interactive.tsx', 'en'); @@ -158,7 +178,13 @@ test.describe(`${TAG.VISUAL}`, () => { test(`Verify sorting styles`, { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button-link', + '@button', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/header-tests/sorting/multi-level-sorting.tsx', 'en'); @@ -173,7 +199,13 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify mouse interactions with sorting', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button-link', + '@button', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/header-tests/sorting/multi-level-sorting.tsx', 'en'); @@ -203,7 +235,14 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@tooltip', '@checkbox', '@ellipsis', - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button-link', + '@button', + '@link', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/header-tests/one-level-interactive-header.tsx', 'en'); @@ -323,7 +362,14 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@data-table', '@tooltip', '@checkbox', - '@ellipsis'], + '@ellipsis', + '@base-components', + '@flex-box', + '@button-link', + '@button', + '@link', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/header-tests/one-level-interactive-header.tsx', 'en'); @@ -385,7 +431,11 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { TAG.KEYBOARD, '@data-table', '@select', - '@tooltip'], + '@tooltip', + '@link-trigger', + '@base-trigger', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/customizing-header.tsx', 'en'); @@ -434,7 +484,11 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { TAG.MOUSE, '@data-table', '@select', - '@tooltip'], + '@tooltip', + '@link-trigger', + '@base-trigger', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/customizing-header.tsx', 'en'); @@ -459,7 +513,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify keyboard sorting without changing size', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/sorting.tsx', 'en'); @@ -497,7 +553,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, TAG.MOUSE, - '@data-table'], + '@data-table', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/sorting.tsx', 'en'); @@ -521,7 +579,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify mouse sorting without changing size', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@data-table'], + '@data-table', + '@typography', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/docs/examples/sorting.tsx', 'en'); if (browserName === 'firefox') test.skip(); @@ -656,7 +716,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify sorting with undefined as default value by mouse interactions', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@data-table'], + '@data-table', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/header-tests/sorting/sorting-default-undefined.tsx', 'en'); @@ -697,7 +759,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify sorting with undefined as default value by keyboard interactions', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/header-tests/sorting/sorting-default-undefined.tsx', 'en'); @@ -742,7 +806,12 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@data-table', - '@tooltip'], + '@tooltip', + '@button-link', + '@button', + '@link', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/header-tests/sorting/sorting-with-interactive.tsx', 'en'); @@ -777,7 +846,15 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@select', '@tooltip', '@link', - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@link-trigger', + '@base-trigger', + '@button-link', + '@button', + '@checkbox', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/header-tests/multi-level-with-interactive.tsx', 'en'); @@ -880,7 +957,15 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@data-table', '@select', '@tooltip', - '@link'], + '@link', + '@base-components', + '@flex-box', + '@link-trigger', + '@base-trigger', + '@button-link', + '@button', + '@checkbox', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/header-tests/multi-level-with-interactive.tsx', 'en'); @@ -949,7 +1034,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify keyboard interactions with sorting', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button-link', + '@button', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/header-tests/sorting/multi-level-sorting.tsx', 'en'); @@ -992,7 +1083,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, TAG.MOUSE, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button-link', + '@button', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/header-tests/sorting/multi-level-sorting.tsx', 'en'); @@ -1017,7 +1114,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify mouse interactions with sorting', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button-link', + '@button', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/header-tests/sorting/multi-level-sorting.tsx', 'en'); diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-intera-1f131-h-hint-checkbox-description-tooltip-select-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-intera-1f131-h-hint-checkbox-description-tooltip-select-1-chromium-linux.png index 754eb889e6..e4b7cf8545 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-intera-1f131-h-hint-checkbox-description-tooltip-select-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-intera-1f131-h-hint-checkbox-description-tooltip-select-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-intera-1f131-h-hint-checkbox-description-tooltip-select-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-intera-1f131-h-hint-checkbox-description-tooltip-select-1-firefox-linux.png index 73b54e23f9..65e2b3b1ae 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-intera-1f131-h-hint-checkbox-description-tooltip-select-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-intera-1f131-h-hint-checkbox-description-tooltip-select-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-intera-1f131-h-hint-checkbox-description-tooltip-select-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-intera-1f131-h-hint-checkbox-description-tooltip-select-1-webkit-linux.png index c8097c21b6..88322a1eb9 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-intera-1f131-h-hint-checkbox-description-tooltip-select-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-intera-1f131-h-hint-checkbox-description-tooltip-select-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-sorting-styles-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-sorting-styles-1-chromium-linux.png index 86da84de65..98b32a8558 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-sorting-styles-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-sorting-styles-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-sorting-styles-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-sorting-styles-1-firefox-linux.png index be09a86531..a05210f31c 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-sorting-styles-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-sorting-styles-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-sorting-styles-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-sorting-styles-1-webkit-linux.png index 9c33133687..7ba07f7b80 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-sorting-styles-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-sorting-styles-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-1-chromium-linux.png index f056d4184f..da81dc3af1 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-1-firefox-linux.png index 3f663990a0..f732b66848 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-1-webkit-linux.png index 6bcab5d528..1efebc72e8 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-2-chromium-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-2-chromium-linux.png index 7bede093b1..42b6111f44 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-2-chromium-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-2-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-2-firefox-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-2-firefox-linux.png index be5cef0d6b..a9de36f8bf 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-2-firefox-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-2-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-2-webkit-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-2-webkit-linux.png index e75eac1651..346e84d8e0 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-2-webkit-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-interactions-when-Select-and-Tooltip-in-header-2-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-1-chromium-linux.png index 66e5875f5f..20b11a27f9 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-1-firefox-linux.png index 08abf8a9d5..2bfec733c8 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-1-webkit-linux.png index e5969c998a..85f3404750 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-2-chromium-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-2-chromium-linux.png index e48326b3f9..7e0a7ab8a2 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-2-chromium-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-2-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-2-firefox-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-2-firefox-linux.png index 8e5ecad179..e248e61d10 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-2-firefox-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-2-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-2-webkit-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-2-webkit-linux.png index f9b7141ce8..3ed65f16ba 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-2-webkit-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-primary-2-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-1-chromium-linux.png index c8a7942d22..95ed1b648d 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-1-firefox-linux.png index 40de4901a7..d130d81115 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-1-webkit-linux.png index 32224d8483..4d1968cc8f 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-2-chromium-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-2-chromium-linux.png index f29f2c6aae..e50220e6f1 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-2-chromium-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-2-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-2-firefox-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-2-firefox-linux.png index f5633a54a8..d2fce68cdc 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-2-firefox-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-2-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-2-webkit-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-2-webkit-linux.png index ecbc6a2547..51d7a9bd2d 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-2-webkit-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-keyboard-sorting-with-changing-size-when-use-secondary-2-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-1-chromium-linux.png index 66e5875f5f..20b11a27f9 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-1-firefox-linux.png index 08abf8a9d5..2bfec733c8 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-1-webkit-linux.png index e5969c998a..85f3404750 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-2-chromium-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-2-chromium-linux.png index e48326b3f9..7e0a7ab8a2 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-2-chromium-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-2-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-2-firefox-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-2-firefox-linux.png index 8e5ecad179..e248e61d10 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-2-firefox-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-2-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-2-webkit-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-2-webkit-linux.png index f9b7141ce8..3ed65f16ba 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-2-webkit-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-primary-2-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-1-chromium-linux.png index c8a7942d22..95ed1b648d 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-1-firefox-linux.png index 40de4901a7..d130d81115 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-1-webkit-linux.png index 32224d8483..4d1968cc8f 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-2-chromium-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-2-chromium-linux.png index f29f2c6aae..e50220e6f1 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-2-chromium-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-2-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-2-firefox-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-2-firefox-linux.png index f5633a54a8..d2fce68cdc 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-2-firefox-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-2-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-2-webkit-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-2-webkit-linux.png index ecbc6a2547..51d7a9bd2d 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-2-webkit-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-mouse-sorting-with-changing-size-when-use-secondary-2-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-pagination.browser-test.tsx b/semcore/data-table/__tests__/data-table-pagination.browser-test.tsx index c0ca515126..9b7529d8ff 100644 --- a/semcore/data-table/__tests__/data-table-pagination.browser-test.tsx +++ b/semcore/data-table/__tests__/data-table-pagination.browser-test.tsx @@ -14,7 +14,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { TAG.KEYBOARD, '@data-table', '@pagination', - '@select'], + '@select', + '@base-components', + '@flex-box', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/pagination.tsx', 'en'); diff --git a/semcore/data-table/__tests__/data-table-rows.browser-test.tsx b/semcore/data-table/__tests__/data-table-rows.browser-test.tsx index 5054a5ef60..2aec6cc66e 100644 --- a/semcore/data-table/__tests__/data-table-rows.browser-test.tsx +++ b/semcore/data-table/__tests__/data-table-rows.browser-test.tsx @@ -12,7 +12,10 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify colored rows', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/docs/examples/row-themes.tsx', 'en'); const stylesActiveHovered = await getStylesActiveHovered(page); diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx index 8aafcde0c4..c1321cec10 100644 --- a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx +++ b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx @@ -107,7 +107,10 @@ test.describe(`${TAG.VISUAL}`, () => { ]; variantNoFixedColumn.forEach((item) => { test(`Verify keyboard scroll One Level scroll sticky=${item.sticky} withScrollBar=${item.withScrollBar} wMax=${item.wMax}`, { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@data-table'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@data-table', + '@base-components', + '@flex-box', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/scroll-tests/scroll-in-table.tsx', 'en', { ...item, multiLevel: false }); const scrollBar = page.locator('[data-ui-name="ScrollArea.Bar"]'); @@ -159,7 +162,10 @@ test.describe(`${TAG.VISUAL}`, () => { variantNoFixedColumn.forEach((item) => { test(`Verify Mouse scroll Multi Level scroll sticky=${item.sticky} withScrollBar=${item.withScrollBar} wMax=${item.wMax}`, { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@data-table'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@data-table', + '@base-components', + '@flex-box', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/scroll-tests/scroll-in-table.tsx', 'en', { ...item, multiLevel: true }); const scrollBar = page.locator('[data-ui-name="ScrollArea.Bar"]'); diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-chromium-linux.png index 00b7e35192..56ee0979e1 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-firefox-linux.png index b7e50cb7de..6cadc34b5b 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-webkit-linux.png index e665e59bce..786982fa36 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-chromium-linux.png index 5edc1df61c..d5f27556e5 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-firefox-linux.png index 5b902ae6f7..02fd7ad9da 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-webkit-linux.png index c7af9448b6..d4407eaf25 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-Multi-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-chromium-linux.png index 19dde96c05..cb151d1168 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-firefox-linux.png index e4b828b003..e9c5bf9d5d 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-webkit-linux.png index 0b81e06265..d29bbf4769 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-chromium-linux.png index 3744855854..04ca6af28c 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-firefox-linux.png index 361fdec9b3..1187af9376 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-webkit-linux.png index 83c7845e6e..077e6e26de 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-One-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-false-withScrollBar-false-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-false-withScrollBar-false-1-chromium-linux.png index bc10290984..d1fd2231fa 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-false-withScrollBar-false-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-false-withScrollBar-false-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-false-withScrollBar-false-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-false-withScrollBar-false-1-firefox-linux.png index 6009dc86ef..ac62455936 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-false-withScrollBar-false-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-false-withScrollBar-false-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-false-withScrollBar-false-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-false-withScrollBar-false-1-webkit-linux.png index b4ec57621d..152e622812 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-false-withScrollBar-false-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-false-withScrollBar-false-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-chromium-linux.png index 088d5285ca..ebd1ac7c1c 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-firefox-linux.png index 38bdd0df4e..bd7c92c087 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-webkit-linux.png index 62956a6c47..2f5a5e2870 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-false-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-chromium-linux.png index c30e5b55a6..2bb7065a46 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-firefox-linux.png index 6fa8f9089c..09b2963f38 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-webkit-linux.png index 011c847606..6dc3137731 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-Multi-Level-with-Fixed-column-sticky-true-withScrollBar-true-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-chromium-linux.png index 6a1c4e74be..da65543f52 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-firefox-linux.png index ab6be0f095..dca34e52f5 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-webkit-linux.png index 3da166523f..bb785a9ed4 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-false-wMax-300px-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-chromium-linux.png index dba3b84be8..326b64a29d 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-firefox-linux.png index 967f32a365..ca4213d048 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-webkit-linux.png index ffb9f77c05..bef037ad0d 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-scroll-One-Level-scroll-sticky-true-withScrollBar-true-wMax-300px-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx b/semcore/data-table/__tests__/data-table-states.browser-test.tsx index 413eb924f6..77ddead59d 100644 --- a/semcore/data-table/__tests__/data-table-states.browser-test.tsx +++ b/semcore/data-table/__tests__/data-table-states.browser-test.tsx @@ -13,7 +13,10 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify loading state of table', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@base-components', + '@button', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/spin-container-in-table.tsx', 'en'); @@ -33,7 +36,13 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify loading state in with sticky header', { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/checkbox-in-table.tsx', 'en'); @@ -50,7 +59,11 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify skeleton in table', { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@base-components', + '@button', + '@skeleton', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/skeleton-in-table.tsx', 'en'); @@ -75,7 +88,10 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify empty table state', { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@button', + '@widget-empty', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/empty-table.tsx', 'en'); const cellDefaultBg = await getCssVarColor(page, '--intergalactic-bg-primary-neutral'); @@ -121,7 +137,9 @@ test.describe(`${TAG.VISUAL}`, () => { test(`Verify table in table card styles when variant=${item.variant} use=${item.use} and compact=${item.compact}`, { tag: [TAG.PRIORITY_HIGH, '@data-table', - '@card'], + '@card', + '@d3-chart', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/card/tests/examples/table-with-accordions-in-card.tsx', 'en', item); @@ -165,7 +183,9 @@ test.describe(`${TAG.VISUAL}`, () => { test(`Verify table in table card styles when variant=${item.variant} use=${item.use} and compact=${item.compact}`, { tag: [TAG.PRIORITY_HIGH, '@data-table', - '@card'], + '@card', + '@d3-chart', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/card/tests/examples/table-with-accordions-in-card.tsx', 'en', item); @@ -199,7 +219,9 @@ test.describe(`${TAG.VISUAL}`, () => { tag: [TAG.PRIORITY_HIGH, '@data-table', '@ellipsis', - '@base-components'], + '@base-components', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/base-components/ellipsis/docs/examples/multiple_use.tsx', 'en'); @@ -225,7 +247,9 @@ test.describe(`${TAG.VISUAL}`, () => { '@data-table', '@ellipsis', '@link', - '@base-components'], + '@base-components', + '@pagination', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/base-components/ellipsis/tests/examples/in_table_with_link.tsx', 'en'); await page.waitForTimeout(250); // wait for ellipsis apply @@ -234,13 +258,12 @@ test.describe(`${TAG.VISUAL}`, () => { await page.keyboard.press('ArrowRight'); await page.keyboard.press('ArrowRight'); await page.keyboard.press('ArrowRight'); - + await page.keyboard.press('Enter'); await page.locator('[data-ui-name="Hint"]').waitFor({ state: 'visible' }); await expect(page).toHaveScreenshot(); - await page.keyboard.press('ArrowDown'); - await page.keyboard.press('ArrowDown'); - await page.keyboard.press('ArrowDown'); + await page.keyboard.press('Escape'); + await page.keyboard.press('Escape'); await page.locator('[data-ui-name="Hint"]').waitFor({ state: 'hidden' }); await expect(page.locator('[data-ui-name="Hint"]')).toHaveCount(0); }); @@ -250,7 +273,13 @@ test.describe(`${TAG.VISUAL}`, () => { test(`Verify limited state for table with accordion keyboard and mouse interactions`, { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@typography', + '@widget-empty', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/limited-mode/accordion.tsx', 'en', { rowsLimit: 1, columnsLimit: 2 }); @@ -303,7 +332,13 @@ test.describe(`${TAG.VISUAL}`, () => { test(`Verify limited state for checkbox in table `, { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/limited-mode/checkboxes.tsx', 'en', { rowsLimit: 0, columnsLimit: 0 }); @@ -315,7 +350,13 @@ test.describe(`${TAG.VISUAL}`, () => { test.describe('SelectableRows', () => { test('Verify sideIndents=wide and compact', { tag: [TAG.PRIORITY_MEDIUM, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { sideIndents: 'wide', @@ -335,7 +376,13 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify SelectableRows with fixed-left column — checkbox cell positioning', { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { fixedColumns: true, @@ -360,7 +407,13 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify SelectableRows with fixed-left column — checkbox stays pinned on horizontal scroll', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { fixedColumns: true, @@ -392,7 +445,13 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify SelectableRows with fixed-left column — selection persists after scroll', { tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { fixedColumns: true, @@ -418,7 +477,13 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify SelectableRows with fixed-left column and accordion rows', { tag: [TAG.PRIORITY_MEDIUM, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { fixedColumns: true, @@ -484,7 +549,11 @@ test.describe(`${TAG.VISUAL}`, () => { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@data-table', - '@tooltip'], + '@tooltip', + '@button', + '@pagination', + '@typography', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/advanced/examples/selectable_with_merged_rows.tsx', 'en'); const cellSelectedBg = await getCssVarColor(page, '--intergalactic-table-td-cell-selected'); @@ -540,7 +609,13 @@ test.describe(`${TAG.VISUAL}`, () => { test.describe('SelectableRows (legacy API)', () => { test('Verify SelectableRows row highlight on selection', { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { reactive: false }); if (browserName == 'firefox') return; @@ -558,7 +633,13 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify sideIndents=wide and compact', { tag: [TAG.PRIORITY_MEDIUM, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { sideIndents: 'wide', reactive: false, @@ -578,7 +659,13 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify SelectableRows select all rows highlight', { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { reactive: false }); const cellSelectedHoverBg = await getCssVarColor(page, '--intergalactic-table-td-cell-selected-hover'); @@ -601,7 +688,13 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify color on hover when merged rows with SelectableRows', { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page, browserName }) => { if (browserName === 'firefox') test.skip(); @@ -646,7 +739,7 @@ test.describe(`${TAG.VISUAL}`, () => { await firstRowCheckbox.click(); await locators.collapse(page).waitFor({ state: 'visible' }); for (let row = 2; row <= 3; row++) { - await checkStyles(locators.getCell(page, row, 1), { 'background-color': cellSelectedHoverBg }); + await checkStyles(locators.getCell(page, row, 1), { 'background-color': cellSelectedBg }); } }); @@ -683,7 +776,12 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test.describe('Loading states', () => { test('Verify empty table scroll\'s state when column width is defined', { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@widget-empty', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/table-states-tests/nothing-found-with-fixed-column-width.tsx', 'en'); @@ -702,7 +800,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify focus after loading is finished', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@button', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/table-states-tests/loading-in-scroll.tsx', 'en'); const spin = page.locator('svg[data-ui-name="Spin"]'); @@ -746,7 +846,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify table with checkbox attributes and mouse interaction', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/checkbox-in-table.tsx', 'en'); @@ -874,7 +980,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify table with checkbox keyboard interaction', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/docs/examples/checkbox-in-table.tsx', 'en'); @@ -991,6 +1103,17 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { TAG.MOUSE, '@data-table', + + '@base-components', + + '@flex-box', + + '@button', + + '@pagination', + + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en'); @@ -1023,6 +1146,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { TAG.KEYBOARD, TAG.MOUSE, '@data-table', + '@button', + '@pagination', + '@typography', ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/advanced/examples/selectable_with_merged_rows.tsx', 'en'); @@ -1048,7 +1174,11 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@data-table', - '@tooltip'], + '@tooltip', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/advanced/examples/selectable_with_merged_rows.tsx', 'en'); @@ -1101,7 +1231,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify aria-live announcement when all rows selected via header checkbox', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/checkbox-in-table.tsx', 'en'); @@ -1122,7 +1258,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify aria-live announcement on partial row selection', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/checkbox-in-table.tsx', 'en'); @@ -1151,7 +1293,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify SelectableRows checkbox attributes and mouse interaction', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { reactive: false }); @@ -1212,7 +1360,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify SelectableRows keyboard navigation and selection', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { reactive: false }); @@ -1264,7 +1418,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify SelectableRows with pagination mouse interaction', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { reactive: false, pagination: true }); @@ -1359,7 +1519,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify SelectableRows with pagination keyboard interaction', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { reactive: false, pagination: true }); @@ -1434,6 +1600,11 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { TAG.KEYBOARD, TAG.MOUSE, '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { reactive: false }); @@ -1473,6 +1644,11 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { TAG.KEYBOARD, TAG.MOUSE, '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { reactive: false, mergedRows: true }); @@ -1501,7 +1677,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify SelectableRows with merged rows mouse interaction', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { reactive: false, mergedRows: true }); @@ -1550,7 +1732,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify SelectableRows with merged rows keyboard interaction', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { reactive: false, mergedRows: true }); @@ -1588,7 +1776,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify aria-live announcement when all rows selected via header checkbox', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { reactive: false }); @@ -1604,7 +1798,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify aria-live announcement on partial row selection', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/cells-tests/checkbox.tsx', 'en', { reactive: false }); @@ -1629,7 +1829,12 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { variantState.forEach((item) => { test(`Verify limited state for base table when rowsLimit=${item.rowsLimit} columnsLimit=${item.columnsLimit}`, { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@typography', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/docs/examples/limited-mode.tsx', 'en', item); @@ -1710,7 +1915,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test(`Verify limited state for checkbox in table when rowsLimit=${item.rowsLimit} columnsLimit=${item.columnsLimit}`, { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@pagination', + '@typography', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/limited-mode/checkboxes.tsx', 'en', item); @@ -1900,7 +2111,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test(`Verify limited state for accordion in table when rowsLimit=${item.rowsLimit} columnsLimit=${item.columnsLimit}`, { tag: [TAG.PRIORITY_HIGH, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@typography', + '@widget-empty', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/limited-mode/accordion.tsx', 'en', item); @@ -1983,7 +2200,12 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test(`Verify limited state for base table keyboard interactions when overlay has one interactive element`, { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@typography', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/docs/examples/limited-mode.tsx', 'en', { rowsLimit: 2, columnsLimit: 1 }); @@ -2028,7 +2250,12 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test(`Verify limited state for base table keyboard interactions when overlay has few interactive element`, { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@typography', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/limited-mode/sortable-table.tsx', 'en', { rowsLimit: 2, columnsLimit: 1 }); @@ -2065,7 +2292,11 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test(`Verify limited state for table with rows and columns merging keyboard interactions when overlay without interactive element`, { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@typography', + ], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/data-table/tests/examples/limited-mode/row-and-column-merging.tsx', 'en', { rowsLimit: 1, columnsLimit: 2 }); @@ -2101,7 +2332,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test(`Verify limited state for table with accordion keyboard and mouse interactions`, { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@base-components', + '@flex-box', + '@button', + '@typography', + '@widget-empty', + ], }, async ({ page, browserName }) => { test.skip(browserName === 'webkit', 'Flaky focus handling in webkit'); await loadPage(page, 'stories/components/data-table/tests/examples/limited-mode/accordion.tsx', 'en', { rowsLimit: 1, columnsLimit: 2 }); diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-02273-t-defaul-use-secondary-and-compact-undefined-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-02273-t-defaul-use-secondary-and-compact-undefined-1-chromium-linux.png index 48d748e30c..383267eebf 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-02273-t-defaul-use-secondary-and-compact-undefined-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-02273-t-defaul-use-secondary-and-compact-undefined-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-02273-t-defaul-use-secondary-and-compact-undefined-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-02273-t-defaul-use-secondary-and-compact-undefined-1-firefox-linux.png index 58c27a820e..6d919ef150 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-02273-t-defaul-use-secondary-and-compact-undefined-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-02273-t-defaul-use-secondary-and-compact-undefined-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-02273-t-defaul-use-secondary-and-compact-undefined-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-02273-t-defaul-use-secondary-and-compact-undefined-1-webkit-linux.png index cfc265d785..12feb11a8c 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-02273-t-defaul-use-secondary-and-compact-undefined-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-02273-t-defaul-use-secondary-and-compact-undefined-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-07c78-riant-default-use-undefined-and-compact-true-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-07c78-riant-default-use-undefined-and-compact-true-1-chromium-linux.png index 0917ed6041..1d13e644e0 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-07c78-riant-default-use-undefined-and-compact-true-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-07c78-riant-default-use-undefined-and-compact-true-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-07c78-riant-default-use-undefined-and-compact-true-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-07c78-riant-default-use-undefined-and-compact-true-1-firefox-linux.png index aeafe12c5f..87cedc5016 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-07c78-riant-default-use-undefined-and-compact-true-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-07c78-riant-default-use-undefined-and-compact-true-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-07c78-riant-default-use-undefined-and-compact-true-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-07c78-riant-default-use-undefined-and-compact-true-1-webkit-linux.png index f960d2a20a..88e3978797 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-07c78-riant-default-use-undefined-and-compact-true-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-07c78-riant-default-use-undefined-and-compact-true-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-45fa6--default-use-undefined-and-compact-undefined-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-45fa6--default-use-undefined-and-compact-undefined-1-chromium-linux.png index 1d78a28a23..673a3c29db 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-45fa6--default-use-undefined-and-compact-undefined-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-45fa6--default-use-undefined-and-compact-undefined-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-45fa6--default-use-undefined-and-compact-undefined-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-45fa6--default-use-undefined-and-compact-undefined-1-firefox-linux.png index b49a725418..45b8af1ef5 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-45fa6--default-use-undefined-and-compact-undefined-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-45fa6--default-use-undefined-and-compact-undefined-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-45fa6--default-use-undefined-and-compact-undefined-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-45fa6--default-use-undefined-and-compact-undefined-1-webkit-linux.png index f79ffec7b2..cf007d8b6a 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-45fa6--default-use-undefined-and-compact-undefined-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-45fa6--default-use-undefined-and-compact-undefined-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-4b0ca-ant-card-use-undefined-and-compact-undefined-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-4b0ca-ant-card-use-undefined-and-compact-undefined-1-chromium-linux.png index 825c56147e..b1cc01fe68 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-4b0ca-ant-card-use-undefined-and-compact-undefined-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-4b0ca-ant-card-use-undefined-and-compact-undefined-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-4b0ca-ant-card-use-undefined-and-compact-undefined-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-4b0ca-ant-card-use-undefined-and-compact-undefined-1-firefox-linux.png index 273272cba4..1ba98ba7cf 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-4b0ca-ant-card-use-undefined-and-compact-undefined-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-4b0ca-ant-card-use-undefined-and-compact-undefined-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-4b0ca-ant-card-use-undefined-and-compact-undefined-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-4b0ca-ant-card-use-undefined-and-compact-undefined-1-webkit-linux.png index cdaa205a03..efabed12f8 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-4b0ca-ant-card-use-undefined-and-compact-undefined-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-4b0ca-ant-card-use-undefined-and-compact-undefined-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-69235--variant-card-use-undefined-and-compact-true-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-69235--variant-card-use-undefined-and-compact-true-1-chromium-linux.png index 3309c546cb..2e2ae93034 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-69235--variant-card-use-undefined-and-compact-true-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-69235--variant-card-use-undefined-and-compact-true-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-69235--variant-card-use-undefined-and-compact-true-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-69235--variant-card-use-undefined-and-compact-true-1-firefox-linux.png index ed3bd9527b..7d1d6e7bc4 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-69235--variant-card-use-undefined-and-compact-true-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-69235--variant-card-use-undefined-and-compact-true-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-69235--variant-card-use-undefined-and-compact-true-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-69235--variant-card-use-undefined-and-compact-true-1-webkit-linux.png index 73029b0b68..a9c30c6b2b 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-69235--variant-card-use-undefined-and-compact-true-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-69235--variant-card-use-undefined-and-compact-true-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-f4f5e-ant-card-use-secondary-and-compact-undefined-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-f4f5e-ant-card-use-secondary-and-compact-undefined-1-chromium-linux.png index 5765cec1bf..a71b752983 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-f4f5e-ant-card-use-secondary-and-compact-undefined-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-f4f5e-ant-card-use-secondary-and-compact-undefined-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-f4f5e-ant-card-use-secondary-and-compact-undefined-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-f4f5e-ant-card-use-secondary-and-compact-undefined-1-firefox-linux.png index 5516eb75cd..a3bb4052d8 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-f4f5e-ant-card-use-secondary-and-compact-undefined-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-f4f5e-ant-card-use-secondary-and-compact-undefined-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-f4f5e-ant-card-use-secondary-and-compact-undefined-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-f4f5e-ant-card-use-secondary-and-compact-undefined-1-webkit-linux.png index cbf4d868a2..687e6891b3 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-f4f5e-ant-card-use-secondary-and-compact-undefined-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Card-variant-Verify-table-in-table-car-f4f5e-ant-card-use-secondary-and-compact-undefined-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-end-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-end-1-chromium-linux.png index 504f4bf3d4..4bd55bed0c 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-end-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-end-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-end-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-end-1-firefox-linux.png index 54fe8793b0..88c9c5a829 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-end-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-end-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-end-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-end-1-webkit-linux.png index efb6e58a80..85d362c3f6 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-end-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-end-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-middle-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-middle-1-chromium-linux.png index 8cae780ec4..9989051ed5 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-middle-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-middle-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-middle-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-middle-1-firefox-linux.png index bb2f46a131..a690cdea13 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-middle-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-middle-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-middle-1-webkit-linux.png index 41f762fa7d..3d1e249155 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-middle-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-checkbox-in-table-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-checkbox-in-table-1-chromium-linux.png index de5700cd1c..e09735fd7a 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-checkbox-in-table-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-checkbox-in-table-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-checkbox-in-table-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-checkbox-in-table-1-firefox-linux.png index d26cddf1df..4424aa14a0 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-checkbox-in-table-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-checkbox-in-table-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-checkbox-in-table-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-checkbox-in-table-1-webkit-linux.png index ed0657ba2e..0f280b9221 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-checkbox-in-table-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-checkbox-in-table-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-1-chromium-linux.png index 5dc73ba103..52ecf7cbdc 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-1-firefox-linux.png index 029a2d341e..643269ed95 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-1-webkit-linux.png index 9e6490d236..9455cfbbf8 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-2-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-2-chromium-linux.png index 91814dfe07..2b66a23c30 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-2-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-2-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-2-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-2-firefox-linux.png index 3ad455f7f9..27a58f6f38 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-2-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-2-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-2-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-2-webkit-linux.png index 6df789e15e..a57000c32b 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-2-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-2-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-3-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-3-chromium-linux.png index 9b64b87623..404fd09f26 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-3-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-3-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-3-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-3-firefox-linux.png index 06f6d117e1..a82e9a5431 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-3-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-3-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-3-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-3-webkit-linux.png index 7144915d6d..57ca892bc6 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-3-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Limited-mode-Verify-limited-state-for-table-with-accordion-keyboard-and-mouse-interactions-3-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-empty-table-state-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-empty-table-state-1-chromium-linux.png index e097ab09d1..315ed2414f 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-empty-table-state-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-empty-table-state-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-empty-table-state-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-empty-table-state-1-firefox-linux.png index c7d2b0b5a8..972b073f1b 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-empty-table-state-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-empty-table-state-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-empty-table-state-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-empty-table-state-1-webkit-linux.png index 10b76f6de1..0bf831297c 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-empty-table-state-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-empty-table-state-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-1-chromium-linux.png index 4e27261516..c061cfe758 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-1-firefox-linux.png index 6812d9bea1..bf01b04466 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-1-webkit-linux.png index cfc9bea81f..e892425de7 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-2-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-2-chromium-linux.png index 9d41966d14..1a499086b4 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-2-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-2-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-2-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-2-firefox-linux.png index d458112cc5..07abd50f77 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-2-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-2-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-2-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-2-webkit-linux.png index 2f72a55734..44a6647fd5 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-2-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-in-with-sticky-header-2-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-of-table-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-of-table-1-chromium-linux.png index ad62671f4e..6de80dbee5 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-of-table-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-of-table-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-of-table-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-of-table-1-firefox-linux.png index 38347240f8..c7361d3cf6 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-of-table-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-of-table-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-of-table-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-of-table-1-webkit-linux.png index ef99b95c0d..0467d9a9a6 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-of-table-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-loading-state-of-table-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-skeleton-in-table-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-skeleton-in-table-1-chromium-linux.png index b7b8279a3a..5e73f569bb 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-skeleton-in-table-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-skeleton-in-table-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-skeleton-in-table-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-skeleton-in-table-1-firefox-linux.png index 9eaad65994..f5ba86c6a2 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-skeleton-in-table-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-skeleton-in-table-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-skeleton-in-table-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-skeleton-in-table-1-webkit-linux.png index 4ccb1b93c9..efaa473a31 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-skeleton-in-table-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Loading-states-Verify-skeleton-in-table-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-styles-when-checkbox-in-merged-cells-checked-by-keyboard-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-styles-when-checkbox-in-merged-cells-checked-by-keyboard-1-chromium-linux.png index 3bd4d103ac..cab67936ef 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-styles-when-checkbox-in-merged-cells-checked-by-keyboard-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-styles-when-checkbox-in-merged-cells-checked-by-keyboard-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-styles-when-checkbox-in-merged-cells-checked-by-keyboard-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-styles-when-checkbox-in-merged-cells-checked-by-keyboard-1-firefox-linux.png index 33e70bbaf3..d43e3bd47b 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-styles-when-checkbox-in-merged-cells-checked-by-keyboard-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-styles-when-checkbox-in-merged-cells-checked-by-keyboard-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-styles-when-checkbox-in-merged-cells-checked-by-keyboard-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-styles-when-checkbox-in-merged-cells-checked-by-keyboard-1-webkit-linux.png index 2c2a1aebe6..34e7610aa2 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-styles-when-checkbox-in-merged-cells-checked-by-keyboard-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-styles-when-checkbox-in-merged-cells-checked-by-keyboard-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-SelectableRows-row-highlight-on-selection-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-SelectableRows-row-highlight-on-selection-1-chromium-linux.png index b1374d1ad0..fc98eb7db6 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-SelectableRows-row-highlight-on-selection-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-SelectableRows-row-highlight-on-selection-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-SelectableRows-row-highlight-on-selection-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-SelectableRows-row-highlight-on-selection-1-webkit-linux.png index 8b5f305dca..f86a303659 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-SelectableRows-row-highlight-on-selection-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-SelectableRows-row-highlight-on-selection-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx index 1bf1ab46b8..918708d0a3 100644 --- a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx +++ b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx @@ -41,7 +41,11 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify Mouse scroll when cells have different height', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@button-link', + '@button', + '@typography', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/virtualization/header-content.tsx', 'en'); @@ -142,7 +146,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify keyboard interactions with accordion and chart inside', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@data-table'], + '@data-table', + '@d3-chart', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/virtualization/accordion-inside-table.tsx', 'en'); @@ -185,7 +191,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify mouse interactions with accordion and chart inside', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@data-table'], + '@data-table', + '@d3-chart', + ], }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/tests/examples/virtualization/accordion-inside-table.tsx', 'en'); diff --git a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Keyboard-scroll-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Keyboard-scroll-1-chromium-linux.png index 88a871e6dc..a426312a58 100644 Binary files a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Keyboard-scroll-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Keyboard-scroll-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Keyboard-scroll-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Keyboard-scroll-1-firefox-linux.png index afe5507f44..d3dce17a53 100644 Binary files a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Keyboard-scroll-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Keyboard-scroll-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Keyboard-scroll-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Keyboard-scroll-1-webkit-linux.png index 973e8a0d76..8d15d5056d 100644 Binary files a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Keyboard-scroll-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Keyboard-scroll-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-1-chromium-linux.png index 371ad2b8ad..58440895a9 100644 Binary files a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-1-firefox-linux.png index c130faf62c..971fc878f1 100644 Binary files a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-1-webkit-linux.png index e91d79bba3..fdc07cfa60 100644 Binary files a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-when-cells-have-different-height-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-when-cells-have-different-height-1-chromium-linux.png index c90a2c5198..0081fc2e5a 100644 Binary files a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-when-cells-have-different-height-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-when-cells-have-different-height-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-when-cells-have-different-height-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-when-cells-have-different-height-1-firefox-linux.png index 3a0db005bb..767d3c134d 100644 Binary files a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-when-cells-have-different-height-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-when-cells-have-different-height-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-when-cells-have-different-height-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-when-cells-have-different-height-1-webkit-linux.png index a9c8d4394e..7479c01357 100644 Binary files a/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-when-cells-have-different-height-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-virtual-scroll.browser-test.tsx-snapshots/-visual-Verify-Mouse-scroll-when-cells-have-different-height-1-webkit-linux.png differ diff --git a/semcore/data-table/package.json b/semcore/data-table/package.json index 0e08a0d78a..8241b17abe 100644 --- a/semcore/data-table/package.json +++ b/semcore/data-table/package.json @@ -21,6 +21,8 @@ "@semcore/checkbox": "^17.2.1", "@semcore/spin": "^17.2.1", "@semcore/tooltip": "^17.2.1", + "@semcore/link": "^17.2.1", + "@semcore/divider": "^17.2.1", "@semcore/widget-empty": "^17.2.1" }, "devDependencies": { diff --git a/semcore/data-table/src/components/Body/style.shadow.css b/semcore/data-table/src/components/Body/style.shadow.css index 5c38958394..6a50cfb8af 100644 --- a/semcore/data-table/src/components/Body/style.shadow.css +++ b/semcore/data-table/src/components/Body/style.shadow.css @@ -59,7 +59,7 @@ SCollapseRow[gridArea] > SCellWrapper, SRow[isAccordionRow] > SCellWrapper { SCollapseRow[gridArea] > SCellWrapper > SCell:not([withoutBorder]), SAccordionRows > SRow[isAccordionRow]:last-child > SCellWrapper > SCell:not([withoutBorder]) { - border-bottom: 1px solid var(--intergalactic-border-table-accent, oklch(0.137 0.026 175.7 / 0.161)); + border-bottom: 1px solid var(--intergalactic-border-table-accent, oklch(0.137 0.026 175.7 / 0.161)); /* TODO: --intergalactic-table-border-accent */ } SCollapseRow > SCellWrapper > SCell { @@ -68,7 +68,7 @@ SCollapseRow > SCellWrapper > SCell { SRow[accordionType='row'][expanded] > SCellWrapper > SCell:not([theme]), SCell:not([theme])[expanded][withAccordion] { - background-color: var(--intergalactic-table-td-cell-active, oklch(0.97 0.001 180)); + background-color: var(--intergalactic-table-td-cell-active, oklch(0.96 0.001 180)); } SCollapseRow > SCellWrapper > SCell:not([theme]), SRow[isAccordionRow] > SCellWrapper > SCell:not([theme]) { @@ -80,7 +80,7 @@ SCollapseRow > SCellWrapper > SCell:not([theme]), SRow[isAccordionRow] > SCellWr :not(SRowGroup:has([data-row-selector="true"] input:checked)) > SRow:not([accordionType='row'][expanded]):hover:not([isNonInteractive]):not(:has([data-row-selector="true"] input:checked)):not([aria-hidden]):not(:has(SLimitOverlayCellWrapper:hover)) > SCellWrapper > SCell:not([theme]):not([expanded][withAccordion]):not([aria-hidden]), SRowGroup:has(SCell[data-grouped-by='rowgroup']:hover):not(:has([data-row-selector="true"] input:checked)) > SRow:not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell:not([theme]):not([expanded][withAccordion]):not([aria-hidden]), SRowGroup:has(SCell:hover):not(:has([data-row-selector="true"] input:checked)) > SRow:not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell[data-grouped-by='rowgroup']:not([theme]):not([expanded][withAccordion]):not([aria-hidden]) { - background-color: var(--intergalactic-table-td-cell-hover, oklch(0.98 0.001 180)); + background-color: var(--intergalactic-table-td-cell-hover, oklch(0.97 0.001 180)); } /* MUTED THEME */ @@ -90,7 +90,7 @@ SCollapseRow > SCellWrapper > SCell:not([theme]), SRow[isAccordionRow] > SCellWr SRowGroup:has(SCell[data-grouped-by='rowgroup']:hover) > SRow:not([accordionType='row'][expanded])[theme='muted']:not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell:not([theme]):not([aria-hidden]), SRowGroup:has(SCell:hover) > SRow:not([accordionType='row'][expanded]):not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell[data-grouped-by='rowgroup'][theme='muted']:not([aria-hidden]), SRowGroup:has(SCell:hover) > SRow:not([accordionType='row'][expanded])[theme='muted']:not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell[data-grouped-by='rowgroup']:not([theme]):not([aria-hidden]) { - background-color: var(--intergalactic-table-td-cell-active, oklch(0.97 0.001 180)); + background-color: var(--intergalactic-table-td-cell-active, oklch(0.96 0.001 180)); } /* INFO THEME */ @@ -104,7 +104,7 @@ SCollapseRow > SCellWrapper > SCell:not([theme]), SRow[isAccordionRow] > SCellWr SRowGroup:has([data-row-selector="true"] input:checked) > SRow:not([accordionType='row'][expanded]):hover:not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell:not([aria-hidden]), SRowGroup:has(SCell:hover) > SRow:not([accordionType='row'][expanded]):not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell[data-grouped-by='rowgroup'][theme='info']:not([aria-hidden]), SRowGroup:has(SCell:hover) > SRow:not([accordionType='row'][expanded])[theme='info']:not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell[data-grouped-by='rowgroup']:not([theme]):not([aria-hidden]) { - background-color: var(--intergalactic-table-td-cell-selected-hover, oklch(0.959 0.021 267.8)); + background-color: var(--intergalactic-table-td-cell-selected-hover, oklch(0.969 0.016 267.7)); } /* SUCCESS THEME */ @@ -114,7 +114,7 @@ SCollapseRow > SCellWrapper > SCell:not([theme]), SRow[isAccordionRow] > SCellWr SRowGroup:has(SCell[data-grouped-by='rowgroup']:hover) > SRow:not([accordionType='row'][expanded])[theme='success']:not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell:not([theme]):not([aria-hidden]), SRowGroup:has(SCell:hover) > SRow:not([accordionType='row'][expanded]):not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell[data-grouped-by='rowgroup'][theme='success']:not([aria-hidden]), SRowGroup:has(SCell:hover) > SRow:not([accordionType='row'][expanded])[theme='success']:not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell[data-grouped-by='rowgroup']:not([theme]):not([expanded][withAccordion]):not([aria-hidden]) { - background-color: var(--intergalactic-table-td-cell-new-hover, oklch(0.96 0.057 179.7)); + background-color: var(--intergalactic-table-td-cell-new-hover, oklch(0.97 0.048 180.5)); } /* WARNING THEME */ @@ -124,7 +124,7 @@ SCollapseRow > SCellWrapper > SCell:not([theme]), SRow[isAccordionRow] > SCellWr SRowGroup:has(SCell[data-grouped-by='rowgroup']:hover) > SRow[theme='warning']:not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell:not([theme]):not([aria-hidden]), SRowGroup:has(SCell:hover) > SRow:not([accordionType='row'][expanded]):not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell[data-grouped-by='rowgroup'][theme='warning']:not([aria-hidden]), SRowGroup:has(SCell:hover) > SRow:not([accordionType='row'][expanded])[theme='warning']:not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell[data-grouped-by='rowgroup']:not([theme]):not([aria-hidden]) { - background-color: var(--intergalactic-table-td-cell-warning-hover, oklch(0.96 0.05 83.1)); + background-color: var(--intergalactic-table-td-cell-warning-hover, oklch(0.97 0.04 85.2)); } /* DANGER THEME */ @@ -134,7 +134,7 @@ SCollapseRow > SCellWrapper > SCell:not([theme]), SRow[isAccordionRow] > SCellWr SRowGroup:has(SCell[data-grouped-by='rowgroup']:hover) > SRow:not([accordionType='row'][expanded])[theme='danger']:not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell:not([theme]):not([aria-hidden]), SRowGroup:has(SCell:hover) > SRow:not([accordionType='row'][expanded]):not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell[data-grouped-by='rowgroup'][theme='danger']:not([aria-hidden]), SRowGroup:has(SCell:hover) > SRow:not([accordionType='row'][expanded])[theme='danger']:not([isNonInteractive]):not([aria-hidden]) > SCellWrapper > SCell[data-grouped-by='rowgroup']:not([theme]):not([aria-hidden]) { - background-color: var(--intergalactic-table-td-cell-critical-hover, oklch(0.958 0.029 5.7)); + background-color: var(--intergalactic-table-td-cell-critical-hover, oklch(0.967 0.022 4)); } } @@ -143,7 +143,7 @@ SRow:has([data-row-selector="true"] input:checked) > SCellWrapper > SCell { background-color: var(--intergalactic-table-td-cell-selected, oklch(0.98 0.01 267.6)); &[expanded][withAccordion] { - background-color: var(--intergalactic-table-td-cell-selected-active, oklch(0.939 0.032 268)); + background-color: var(--intergalactic-table-td-cell-selected-active, oklch(0.959 0.021 267.8)); } } @@ -204,7 +204,7 @@ SCell { background-color: var(--intergalactic-table-td-cell-unread, oklch(0.98 0.001 180)); &[expanded][withAccordion] { - background-color: var(--intergalactic-table-td-cell-active, oklch(0.97 0.001 180)); + background-color: var(--intergalactic-table-td-cell-active, oklch(0.96 0.001 180)); } } @@ -212,7 +212,7 @@ SCell { background-color: var(--intergalactic-table-td-cell-selected, oklch(0.98 0.01 267.6)); &[expanded][withAccordion] { - background-color: var(--intergalactic-table-td-cell-selected-active, oklch(0.939 0.032 268)); + background-color: var(--intergalactic-table-td-cell-selected-active, oklch(0.959 0.021 267.8)); } } @@ -220,7 +220,7 @@ SCell { background-color: var(--intergalactic-table-td-cell-new, oklch(0.977 0.036 184)); &[expanded][withAccordion] { - background-color: var(--intergalactic-table-td-cell-new-active, oklch(0.94 0.074 178.1)); + background-color: var(--intergalactic-table-td-cell-new-active, oklch(0.96 0.057 179.7)); } } @@ -228,7 +228,7 @@ SCell { background-color: var(--intergalactic-table-td-cell-warning, oklch(0.979 0.03 88.1)); &[expanded][withAccordion] { - background-color: var(--intergalactic-table-td-cell-warning-active, oklch(0.939 0.069 79.8)); + background-color: var(--intergalactic-table-td-cell-warning-active, oklch(0.96 0.05 83.1)); } } @@ -236,7 +236,7 @@ SCell { background-color: var(--intergalactic-table-td-cell-critical, oklch(0.977 0.016 1.8)); &[expanded][withAccordion] { - background-color: var(--intergalactic-table-td-cell-critical-active, oklch(0.938 0.042 8.4)); + background-color: var(--intergalactic-table-td-cell-critical-active, oklch(0.958 0.029 5.7)); } } diff --git a/semcore/data-table/src/components/Head/style.shadow.css b/semcore/data-table/src/components/Head/style.shadow.css index c5340d3492..25fc3d26a1 100644 --- a/semcore/data-table/src/components/Head/style.shadow.css +++ b/semcore/data-table/src/components/Head/style.shadow.css @@ -68,7 +68,7 @@ SGroup[use='primary'] { padding: var(--intergalactic-spacing-3x, 12px); &:has(~ SColumn[visibleSort]) { - background-color: var(--intergalactic-table-th-primary-cell-hover, oklch(0.94 0.002 180)); + background-color: var(--intergalactic-table-th-primary-cell-hover, oklch(0.96 0.001 180)); } } SGroup[use='secondary'] { @@ -91,13 +91,13 @@ SColumn[use='primary'] { SSortWrapper::before { background: linear-gradient( 270deg, - var(--intergalactic-table-th-primary-cell-hover, oklch(0.94 0.002 180)) 67.5%, + var(--intergalactic-table-th-primary-cell-hover, oklch(0.96 0.001 180)) 67.5%, rgba(224, 225, 233, 0) 105% ); } &[visibleSort] { - background-color: var(--intergalactic-table-th-primary-cell-hover, oklch(0.94 0.002 180)); + background-color: var(--intergalactic-table-th-primary-cell-hover, oklch(0.96 0.001 180)); SSortWrapper { flex-basis: calc(var(--intergalactic-spacing-1x, 4px) + 16px); @@ -130,7 +130,7 @@ SColumn[use='primary'] { SColumn[use='secondary'] { padding: var(--intergalactic-spacing-2x, 8px); - border-bottom: 1px solid var(--intergalactic-border-table-accent, oklch(0.137 0.026 175.7 / 0.161)); + border-bottom: 1px solid var(--intergalactic-border-table-accent, oklch(0.137 0.026 175.7 / 0.161)); /* TODO: --intergalactic-table-border-accent */ background-color: var(--intergalactic-table-th-secondary-cell, oklch(1 0 0)); SSortWrapper::before { diff --git a/semcore/data-table/src/components/LinkAction/LinkAction.tsx b/semcore/data-table/src/components/LinkAction/LinkAction.tsx new file mode 100644 index 0000000000..22f649c636 --- /dev/null +++ b/semcore/data-table/src/components/LinkAction/LinkAction.tsx @@ -0,0 +1,21 @@ +import type { NSButtonLink } from '@semcore/button'; +import Divider from '@semcore/divider'; +import type { NSLink } from '@semcore/link'; +import React from 'react'; + +interface IProps { + children: [ReturnType, ...Array | ReturnType>]; +} + +export class LinkAction extends React.PureComponent { + render(): React.ReactNode { + const { children: [Link, ...Actions] } = this.props; + return ( + <> + {Link} + + {Actions} + + ); + } +} diff --git a/semcore/data-table/src/index.ts b/semcore/data-table/src/index.ts index b12cd90ef1..0b00d16866 100644 --- a/semcore/data-table/src/index.ts +++ b/semcore/data-table/src/index.ts @@ -13,6 +13,7 @@ import type { ColumnGroupConfig, ColumnItemConfig, } from './components/DataTable/DataTable.types'; +import { LinkAction } from './components/LinkAction/LinkAction'; import { SelectableRows } from './store/SelectableRows'; const wrapDataTable = ( @@ -32,6 +33,7 @@ export { ROW_GROUP, wrapDataTable, SelectableRows, + LinkAction, }; export type { DataTableSort, diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx b/semcore/date-picker/__tests__/date-picker.browser-test.tsx index 26ea1fbd0b..e9743404a2 100644 --- a/semcore/date-picker/__tests__/date-picker.browser-test.tsx +++ b/semcore/date-picker/__tests__/date-picker.browser-test.tsx @@ -146,14 +146,14 @@ test.describe(`${TAG.VISUAL}`, () => { await test.step('Verify disabled date styles', async () => { await checkStyle(locators.cells(page, 0), { ...defaultCellStyles, - margin: '4px 0px 0px', + margin: '0px', }); }); await test.step('Verify style of available date', async () => { await checkStyle(locators.cells(page, 2), { ...defaultCellStyles, - margin: '4px 0px 0px', + margin: '0px', }); }); @@ -165,7 +165,7 @@ test.describe(`${TAG.VISUAL}`, () => { await test.step('Verify style of selected date', async () => { await checkStyle(selectedCell, { ...selectedCellStyles, - margin: '4px 0px 0px', + margin: '0px', width: '32px', height: '32px', }); @@ -206,14 +206,14 @@ test.describe(`${TAG.VISUAL}`, () => { await test.step('Verify hover disabled date', async () => { await checkStyle(locators.cells(page, 0), { ...defaultCellStyles, - margin: '4px 0px 0px', + margin: '0px', }); }); await test.step('Verify style of available date', async () => { await checkStyle(locators.cells(page, 10), { ...defaultCellStyles, - margin: '4px 0px 0px', + margin: '0px', }); }); @@ -229,7 +229,7 @@ test.describe(`${TAG.VISUAL}`, () => { await test.step('Verify style of selected date', async () => { await checkStyle(selectedCell, { ...selectedCellStyles, - margin: '4px 0px 0px', + margin: '0px', width: '32px', }); }); diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-calendar-props-work-good-1-chromium-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-calendar-props-work-good-1-chromium-linux.png index 70d5f60c61..0bb31b86a8 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-calendar-props-work-good-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-calendar-props-work-good-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-calendar-props-work-good-1-firefox-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-calendar-props-work-good-1-firefox-linux.png index 5888d4fbe9..b124432d50 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-calendar-props-work-good-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-calendar-props-work-good-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-calendar-props-work-good-1-webkit-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-calendar-props-work-good-1-webkit-linux.png index caac9204cc..d880566661 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-calendar-props-work-good-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-calendar-props-work-good-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-date-picker-props-work-good-1-chromium-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-date-picker-props-work-good-1-chromium-linux.png index 2ffb54165d..e376245325 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-date-picker-props-work-good-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-date-picker-props-work-good-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-date-picker-props-work-good-1-firefox-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-date-picker-props-work-good-1-firefox-linux.png index 9b9b3ed32e..334b882767 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-date-picker-props-work-good-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-date-picker-props-work-good-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-date-picker-props-work-good-1-webkit-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-date-picker-props-work-good-1-webkit-linux.png index d7e598763d..57d2acfbf2 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-date-picker-props-work-good-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Calendar-props-and-date-picker-Verify-all-date-picker-props-work-good-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-chromium-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-chromium-linux.png index ea3bd00ae0..d14edf469b 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-firefox-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-firefox-linux.png index 48706e8eb8..653213d43e 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-webkit-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-webkit-linux.png index c4f456aa54..49fb65cc64 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-4ee61--normal-disabled-false-neighborLocation-right-1-chromium-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-4ee61--normal-disabled-false-neighborLocation-right-1-chromium-linux.png index 4009e2b448..2b949c9508 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-4ee61--normal-disabled-false-neighborLocation-right-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-4ee61--normal-disabled-false-neighborLocation-right-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-4ee61--normal-disabled-false-neighborLocation-right-1-firefox-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-4ee61--normal-disabled-false-neighborLocation-right-1-firefox-linux.png index 1cc104053f..5987058ff2 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-4ee61--normal-disabled-false-neighborLocation-right-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-4ee61--normal-disabled-false-neighborLocation-right-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-4ee61--normal-disabled-false-neighborLocation-right-1-webkit-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-4ee61--normal-disabled-false-neighborLocation-right-1-webkit-linux.png index f467541a4e..7c26f94230 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-4ee61--normal-disabled-false-neighborLocation-right-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-4ee61--normal-disabled-false-neighborLocation-right-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-59ce5-invalid-disabled-false-neighborLocation-right-1-chromium-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-59ce5-invalid-disabled-false-neighborLocation-right-1-chromium-linux.png index c9cdb6e67c..12e3aa9545 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-59ce5-invalid-disabled-false-neighborLocation-right-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-59ce5-invalid-disabled-false-neighborLocation-right-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-59ce5-invalid-disabled-false-neighborLocation-right-1-firefox-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-59ce5-invalid-disabled-false-neighborLocation-right-1-firefox-linux.png index 59bd1e4df8..bf0112c41a 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-59ce5-invalid-disabled-false-neighborLocation-right-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-59ce5-invalid-disabled-false-neighborLocation-right-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-59ce5-invalid-disabled-false-neighborLocation-right-1-webkit-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-59ce5-invalid-disabled-false-neighborLocation-right-1-webkit-linux.png index bf07c4f168..47ee0c1fdc 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-59ce5-invalid-disabled-false-neighborLocation-right-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-59ce5-invalid-disabled-false-neighborLocation-right-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-92a58--normal-disabled-false-neighborLocation-right-1-chromium-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-92a58--normal-disabled-false-neighborLocation-right-1-chromium-linux.png index 19e711911b..0a368a1965 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-92a58--normal-disabled-false-neighborLocation-right-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-92a58--normal-disabled-false-neighborLocation-right-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-92a58--normal-disabled-false-neighborLocation-right-1-firefox-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-92a58--normal-disabled-false-neighborLocation-right-1-firefox-linux.png index ab657dde32..d26e27f42a 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-92a58--normal-disabled-false-neighborLocation-right-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-92a58--normal-disabled-false-neighborLocation-right-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-92a58--normal-disabled-false-neighborLocation-right-1-webkit-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-92a58--normal-disabled-false-neighborLocation-right-1-webkit-linux.png index c0b6478cd8..fb79e1587b 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-92a58--normal-disabled-false-neighborLocation-right-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-siz-92a58--normal-disabled-false-neighborLocation-right-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-chromium-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-chromium-linux.png index 1f90731adb..d7ee289a5f 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-firefox-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-firefox-linux.png index d8ccd2c4f3..6b36601cb2 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-webkit-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-webkit-linux.png index a15e715883..6ef311ea39 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-chromium-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-chromium-linux.png index ddc3e596d9..a6bd8bdec3 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-firefox-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-firefox-linux.png index c3e79d9fa2..0f18b540a6 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-webkit-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-webkit-linux.png index 1617eef4b0..e9dea33878 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-1-chromium-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-1-chromium-linux.png index c65204220e..6afd04ea15 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-1-firefox-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-1-firefox-linux.png index 9787b910cd..a918e63ab6 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-1-webkit-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-1-webkit-linux.png index 8b78602245..4d14d40c11 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-2-chromium-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-2-chromium-linux.png index f8e468c88f..f89d2f22cb 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-2-chromium-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-2-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-2-firefox-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-2-firefox-linux.png index da4d7264ef..3189d32a9b 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-2-firefox-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-2-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-2-webkit-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-2-webkit-linux.png index dbdbb83938..309b0c6e3b 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-2-webkit-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-2-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-3-chromium-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-3-chromium-linux.png index c65204220e..8802cf4f9f 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-3-chromium-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-3-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-3-firefox-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-3-firefox-linux.png index 9787b910cd..a918e63ab6 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-3-firefox-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-3-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-3-webkit-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-3-webkit-linux.png index 8b78602245..4d14d40c11 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-3-webkit-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-Date-Picker-Trigger-Verify-trigger-states-when-entering-date-manually-3-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-1-chromium-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-1-chromium-linux.png index b904e5cfd8..3fad3ab1a7 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-1-firefox-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-1-firefox-linux.png index e0f8414c85..74d153136f 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-1-webkit-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-1-webkit-linux.png index b3fa8414f5..e088cb6915 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-2-chromium-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-2-chromium-linux.png index 080dcd8cd4..5b6ef75318 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-2-chromium-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-2-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-2-firefox-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-2-firefox-linux.png index e0f8414c85..74d153136f 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-2-firefox-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-2-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-2-webkit-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-2-webkit-linux.png index 78b7f65f49..773de576ac 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-2-webkit-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-2-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-3-chromium-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-3-chromium-linux.png index a04e551940..7753d33afc 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-3-chromium-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-3-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-3-firefox-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-3-firefox-linux.png index e0f8414c85..74d153136f 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-3-firefox-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-3-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-3-webkit-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-3-webkit-linux.png index a1117bf05a..ef4b80e1ab 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-3-webkit-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-3-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-4-chromium-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-4-chromium-linux.png index dc2d91dd0e..82919abb88 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-4-chromium-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-4-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-4-firefox-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-4-firefox-linux.png index e0f8414c85..74d153136f 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-4-firefox-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-4-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-4-webkit-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-4-webkit-linux.png index d5ad47bdad..e0295c5c07 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-4-webkit-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPicker-with-today-button-Verify-datepicker-with-Today-button-styles-4-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPikcer-trigger-and-popper-Verify-mo-ed14f-en-component-uses-expanded-trigger-and-popper-1-chromium-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPikcer-trigger-and-popper-Verify-mo-ed14f-en-component-uses-expanded-trigger-and-popper-1-chromium-linux.png index ea4696c597..d230fe171d 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPikcer-trigger-and-popper-Verify-mo-ed14f-en-component-uses-expanded-trigger-and-popper-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPikcer-trigger-and-popper-Verify-mo-ed14f-en-component-uses-expanded-trigger-and-popper-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPikcer-trigger-and-popper-Verify-mo-ed14f-en-component-uses-expanded-trigger-and-popper-1-firefox-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPikcer-trigger-and-popper-Verify-mo-ed14f-en-component-uses-expanded-trigger-and-popper-1-firefox-linux.png index 1543bb17d2..0215ea4879 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPikcer-trigger-and-popper-Verify-mo-ed14f-en-component-uses-expanded-trigger-and-popper-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPikcer-trigger-and-popper-Verify-mo-ed14f-en-component-uses-expanded-trigger-and-popper-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPikcer-trigger-and-popper-Verify-mo-ed14f-en-component-uses-expanded-trigger-and-popper-1-webkit-linux.png b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPikcer-trigger-and-popper-Verify-mo-ed14f-en-component-uses-expanded-trigger-and-popper-1-webkit-linux.png index f36d2b772d..83d0b06147 100644 Binary files a/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPikcer-trigger-and-popper-Verify-mo-ed14f-en-component-uses-expanded-trigger-and-popper-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-picker.browser-test.tsx-snapshots/-visual-DayPikcer-trigger-and-popper-Verify-mo-ed14f-en-component-uses-expanded-trigger-and-popper-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx index 352c7ae510..4522512ef0 100644 --- a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx +++ b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx @@ -73,8 +73,8 @@ test.describe(`${TAG.VISUAL}`, () => { await expect(calendar).toHaveAttribute('width', '16'); await expect(calendar).toHaveAttribute('height', '16'); await checkStyle(calendar, { - paddingLeft: '8px', - paddingRight: '8px', + paddingLeft: '12px', + paddingRight: '6px', }); } }); @@ -82,7 +82,7 @@ test.describe(`${TAG.VISUAL}`, () => { await test.step('Verify style of available date', async () => { await checkStyle(locators.cells(page, 2), { ...defaultCellStyles, - margin: '4px 0px 0px', + margin: '0px', }); }); @@ -98,7 +98,7 @@ test.describe(`${TAG.VISUAL}`, () => { await test.step('Verify style of selected date', async () => { await checkStyle(selectedCell.nth(0), { - margin: '4px 0px 0px', + margin: '0px', width: '32px', height: '32px', }); diff --git a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-Range-comparator-with-advanced-us-f1256-mouse-intearctions-and-styles-of-advanced-use-1-chromium-linux.png b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-Range-comparator-with-advanced-us-f1256-mouse-intearctions-and-styles-of-advanced-use-1-chromium-linux.png index 44c258e2d3..8aaae36f87 100644 Binary files a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-Range-comparator-with-advanced-us-f1256-mouse-intearctions-and-styles-of-advanced-use-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-Range-comparator-with-advanced-us-f1256-mouse-intearctions-and-styles-of-advanced-use-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-Range-comparator-with-advanced-us-f1256-mouse-intearctions-and-styles-of-advanced-use-1-firefox-linux.png b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-Range-comparator-with-advanced-us-f1256-mouse-intearctions-and-styles-of-advanced-use-1-firefox-linux.png index ad433d6b37..b6d7aed67c 100644 Binary files a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-Range-comparator-with-advanced-us-f1256-mouse-intearctions-and-styles-of-advanced-use-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-Range-comparator-with-advanced-us-f1256-mouse-intearctions-and-styles-of-advanced-use-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-Range-comparator-with-advanced-us-f1256-mouse-intearctions-and-styles-of-advanced-use-1-webkit-linux.png b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-Range-comparator-with-advanced-us-f1256-mouse-intearctions-and-styles-of-advanced-use-1-webkit-linux.png index ac7d81355c..e110ae7dba 100644 Binary files a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-Range-comparator-with-advanced-us-f1256-mouse-intearctions-and-styles-of-advanced-use-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-Range-comparator-with-advanced-us-f1256-mouse-intearctions-and-styles-of-advanced-use-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-1-chromium-linux.png b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-1-chromium-linux.png index 516c8eff26..755c3e45d4 100644 Binary files a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-1-firefox-linux.png b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-1-firefox-linux.png index 9866aea9b6..591f0670d5 100644 Binary files a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-1-webkit-linux.png b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-1-webkit-linux.png index b12c5cfe56..eec24f59be 100644 Binary files a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-2-chromium-linux.png b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-2-chromium-linux.png index 4123af066a..b8e7db896c 100644 Binary files a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-2-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-2-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-2-firefox-linux.png b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-2-firefox-linux.png index 9866aea9b6..591f0670d5 100644 Binary files a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-2-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-2-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-2-webkit-linux.png b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-2-webkit-linux.png index a7aae01c65..a34e2cda28 100644 Binary files a/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-2-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-comparator.browser-test.tsx-snapshots/-visual-Date-range-comparator-props-Verify-all-date-range-comparator-props-work-2-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx index dfb2151d17..9db5a9ee94 100644 --- a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx +++ b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx @@ -155,14 +155,14 @@ test.describe(`${TAG.VISUAL}`, () => { await test.step('Verify svg dimensions', async () => { const svg = locators.dateRangePickerTrigger(page, 4).locator('svg'); - await checkStyle(svg, { paddingLeft: '8px', paddingRight: '8px' }); + await checkStyle(svg, { paddingLeft: '12px', paddingRight: '6px' }); await expect(svg).toHaveAttribute('width', '16'); await expect(svg).toHaveAttribute('height', '16'); }); await test.step('Verify trigger separator padding', async () => { const separator = page.locator('[data-ui-name="DateRange.RangeSep"]').nth(1); - await checkStyle(separator, { paddingRight: '8px' }); + await checkStyle(separator, { paddingRight: '12px' }); }); await test.step('Enter dates and open popper', async () => { @@ -179,14 +179,14 @@ test.describe(`${TAG.VISUAL}`, () => { locator: locators.cells(page, 0), expectedStyles: { ...defaultCellStyles, - margin: '4px 0px 0px', + margin: '0px', }, }, { locator: locators.cells(page, 10), expectedStyles: { ...defaultCellStyles, - margin: '4px 0px 0px', + margin: '0px', }, }, ]; @@ -208,7 +208,7 @@ test.describe(`${TAG.VISUAL}`, () => { await locators.button(page, 'Apply').waitFor({ state: 'visible' }); const cell = page.locator('[data-ui-name="CalendarDays.Unit"][class*="Selected"]'); - await checkStyle(cell.nth(1), { margin: '4px 0px 0px', width: '32px', height: '32px' }); + await checkStyle(cell.nth(1), { margin: '0px', width: '32px', height: '32px' }); }); await test.step('Verify style for Apply picker button', async () => { diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-chromium-linux.png index 50b1687b4a..2d9fc6234d 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-firefox-linux.png index 1c2e68bbc7..e3a9d6f32b 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-webkit-linux.png index 7fbdb4a817..ced9a1845c 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-input-width-grows-after-entering-date-with-locale-pt-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-5004d--normal-disabled-false-neighborLocation-right-1-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-5004d--normal-disabled-false-neighborLocation-right-1-chromium-linux.png index c464c5d01d..1269554bb3 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-5004d--normal-disabled-false-neighborLocation-right-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-5004d--normal-disabled-false-neighborLocation-right-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-5004d--normal-disabled-false-neighborLocation-right-1-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-5004d--normal-disabled-false-neighborLocation-right-1-firefox-linux.png index 3d3ec44266..842e892cdc 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-5004d--normal-disabled-false-neighborLocation-right-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-5004d--normal-disabled-false-neighborLocation-right-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-5004d--normal-disabled-false-neighborLocation-right-1-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-5004d--normal-disabled-false-neighborLocation-right-1-webkit-linux.png index 8640577b44..f67aa11120 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-5004d--normal-disabled-false-neighborLocation-right-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-5004d--normal-disabled-false-neighborLocation-right-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-8f018-invalid-disabled-false-neighborLocation-right-1-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-8f018-invalid-disabled-false-neighborLocation-right-1-chromium-linux.png index fc885f34bf..ea5632d6fc 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-8f018-invalid-disabled-false-neighborLocation-right-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-8f018-invalid-disabled-false-neighborLocation-right-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-8f018-invalid-disabled-false-neighborLocation-right-1-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-8f018-invalid-disabled-false-neighborLocation-right-1-firefox-linux.png index 4809fd31c3..24826e388c 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-8f018-invalid-disabled-false-neighborLocation-right-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-8f018-invalid-disabled-false-neighborLocation-right-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-8f018-invalid-disabled-false-neighborLocation-right-1-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-8f018-invalid-disabled-false-neighborLocation-right-1-webkit-linux.png index a35a01e885..6be282ad6e 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-8f018-invalid-disabled-false-neighborLocation-right-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-8f018-invalid-disabled-false-neighborLocation-right-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-caba6--normal-disabled-false-neighborLocation-right-1-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-caba6--normal-disabled-false-neighborLocation-right-1-chromium-linux.png index 7126923302..92f902f616 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-caba6--normal-disabled-false-neighborLocation-right-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-caba6--normal-disabled-false-neighborLocation-right-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-caba6--normal-disabled-false-neighborLocation-right-1-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-caba6--normal-disabled-false-neighborLocation-right-1-firefox-linux.png index a21898d78f..eb864fd049 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-caba6--normal-disabled-false-neighborLocation-right-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-caba6--normal-disabled-false-neighborLocation-right-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-caba6--normal-disabled-false-neighborLocation-right-1-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-caba6--normal-disabled-false-neighborLocation-right-1-webkit-linux.png index 7971c73560..6f864ddbb6 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-caba6--normal-disabled-false-neighborLocation-right-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-caba6--normal-disabled-false-neighborLocation-right-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-chromium-linux.png index 75f53d7ac0..46b0b050ed 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-firefox-linux.png index 007388fd37..8cba03f24a 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-webkit-linux.png index 171f514c83..60858fc213 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-chromium-linux.png index 0b8d596801..0da7929707 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-firefox-linux.png index 77fd0519a8..869b4d040b 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-webkit-linux.png index 6fd15c842b..629a9936e3 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-1-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-1-chromium-linux.png index d0fc63143f..622dfb0b51 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-1-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-1-firefox-linux.png index 85f491eef7..fa47143a11 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-1-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-1-webkit-linux.png index 82ef87f8e6..1cff161ea4 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-2-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-2-chromium-linux.png index ad799e6630..5a41fbdc1a 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-2-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-2-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-2-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-2-firefox-linux.png index e4744f88dc..a8df016a91 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-2-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-2-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-2-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-2-webkit-linux.png index 49cbf1852f..2190b5beb1 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-2-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-2-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-3-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-3-chromium-linux.png index bd4d8bbdec..d368a430e9 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-3-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-3-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-3-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-3-firefox-linux.png index a7dc839aca..186f3eca71 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-3-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-3-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-3-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-3-webkit-linux.png index cb2018f09c..c9a29fbff2 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-3-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-Range-Trigger-Verify-trigger-states-when-entering-sate-manually-3-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-1-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-1-chromium-linux.png index 26e0d35cd0..55c35291fd 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-1-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-1-firefox-linux.png index f56f93d28f..7fc144392d 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-1-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-1-webkit-linux.png index 5876c0cd0d..e68c50ed6d 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-2-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-2-chromium-linux.png index 1e02389f4e..09da51db12 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-2-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-2-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-2-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-2-firefox-linux.png index d52f640d3d..7379f6c82b 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-2-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-2-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-2-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-2-webkit-linux.png index d1f691f62b..156da334a0 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-2-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-2-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-3-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-3-chromium-linux.png index 2c13f31001..669cd13efa 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-3-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-3-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-3-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-3-firefox-linux.png index d963185195..4e924f8830 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-3-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-3-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-3-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-3-webkit-linux.png index 386701bacf..046149ebb4 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-3-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-all-date-range-picker-props-work-good-3-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-date-range-picker-period-work-good-1-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-date-range-picker-period-work-good-1-chromium-linux.png index 376df8bb74..aca2e9d9b7 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-date-range-picker-period-work-good-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-date-range-picker-period-work-good-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-date-range-picker-period-work-good-1-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-date-range-picker-period-work-good-1-firefox-linux.png index 40b9b277a5..e399ea7820 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-date-range-picker-period-work-good-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-date-range-picker-period-work-good-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-date-range-picker-period-work-good-1-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-date-range-picker-period-work-good-1-webkit-linux.png index c8de4a7cd9..d7d4b97588 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-date-range-picker-period-work-good-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-picker-props-Verify-date-range-picker-period-work-good-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-with-standart-ranges-Verify-date-range-picker-opened-by-keyboard-1-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-with-standart-ranges-Verify-date-range-picker-opened-by-keyboard-1-chromium-linux.png index 1f31ecb5f2..eed4c38631 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-with-standart-ranges-Verify-date-range-picker-opened-by-keyboard-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-with-standart-ranges-Verify-date-range-picker-opened-by-keyboard-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-with-standart-ranges-Verify-date-range-picker-opened-by-keyboard-1-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-with-standart-ranges-Verify-date-range-picker-opened-by-keyboard-1-firefox-linux.png index 3af59e066b..558d9efcfd 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-with-standart-ranges-Verify-date-range-picker-opened-by-keyboard-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-with-standart-ranges-Verify-date-range-picker-opened-by-keyboard-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-with-standart-ranges-Verify-date-range-picker-opened-by-keyboard-1-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-with-standart-ranges-Verify-date-range-picker-opened-by-keyboard-1-webkit-linux.png index 4b6fe56267..21f05a5848 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-with-standart-ranges-Verify-date-range-picker-opened-by-keyboard-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Date-range-with-standart-ranges-Verify-date-range-picker-opened-by-keyboard-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-1-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-1-chromium-linux.png index 5b3ac3ec34..e572193694 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-1-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-1-firefox-linux.png index 72892a7807..971f793f80 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-1-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-1-webkit-linux.png index e8dfa39ade..0aff798b43 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-2-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-2-chromium-linux.png index da0cdafd46..7130ec34b1 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-2-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-2-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-2-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-2-firefox-linux.png index 72892a7807..971f793f80 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-2-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-2-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-2-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-2-webkit-linux.png index be6ec6e146..f643696c85 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-2-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-Week-picker-trigger-when-entering-date-manually-2-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-week-picker-interacting-by-mouse-1-chromium-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-week-picker-interacting-by-mouse-1-chromium-linux.png index 881add74cc..f14f1e0fdd 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-week-picker-interacting-by-mouse-1-chromium-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-week-picker-interacting-by-mouse-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-week-picker-interacting-by-mouse-1-firefox-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-week-picker-interacting-by-mouse-1-firefox-linux.png index af2c0101db..93e6413e4d 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-week-picker-interacting-by-mouse-1-firefox-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-week-picker-interacting-by-mouse-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-week-picker-interacting-by-mouse-1-webkit-linux.png b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-week-picker-interacting-by-mouse-1-webkit-linux.png index d587f2a705..bcff1a0a6e 100644 Binary files a/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-week-picker-interacting-by-mouse-1-webkit-linux.png and b/semcore/date-picker/__tests__/date-range-picker.browser-test.tsx-snapshots/-visual-Week-picker-Verify-week-picker-interacting-by-mouse-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx b/semcore/date-picker/__tests__/month-picker.browser-test.tsx index 965e4ae533..394357d94b 100644 --- a/semcore/date-picker/__tests__/month-picker.browser-test.tsx +++ b/semcore/date-picker/__tests__/month-picker.browser-test.tsx @@ -113,14 +113,14 @@ test.describe(`${TAG.VISUAL}`, () => { const nonSelectedCell = page.locator('[data-ui-name="CalendarMonths.Unit"]:not([class*="Selected"])').first(); await checkStyle(nonSelectedCell, { ...defaultCellStyles, - margin: '4px 0px 0px', + margin: '0px', }); }); await test.step('Verify style of selected date', async () => { await checkStyle(selectedCell, { ...selectedCellStyles, - margin: '4px 0px 0px', + margin: '0px', width: '60px', height: '32px', }); diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-1-chromium-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-1-chromium-linux.png index 9fef405a9d..c04e81be31 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-1-chromium-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-1-firefox-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-1-firefox-linux.png index 70a861a365..8fc9a705eb 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-1-firefox-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-1-webkit-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-1-webkit-linux.png index a2d0e2540a..287accbcfe 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-1-webkit-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-2-chromium-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-2-chromium-linux.png index 161e901dd1..c029876913 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-2-chromium-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-2-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-2-firefox-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-2-firefox-linux.png index 42a24b92a4..7ae7a67aec 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-2-firefox-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-2-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-2-webkit-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-2-webkit-linux.png index 85b74f1fbd..eb2eceded7 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-2-webkit-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-2-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-3-chromium-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-3-chromium-linux.png index 9ff7e22761..20e0ccbaa3 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-3-chromium-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-3-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-3-firefox-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-3-firefox-linux.png index 17fed3981b..99169d7f71 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-3-firefox-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-3-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-3-webkit-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-3-webkit-linux.png index 6cf8766f7d..b026c237fd 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-3-webkit-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-entering-date-manually-3-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-a11fd-te-normal-disabled-true-neighborLocation-both-1-chromium-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-a11fd-te-normal-disabled-true-neighborLocation-both-1-chromium-linux.png index 3fe6dcb538..4d9dd226ad 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-a11fd-te-normal-disabled-true-neighborLocation-both-1-chromium-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-a11fd-te-normal-disabled-true-neighborLocation-both-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-a11fd-te-normal-disabled-true-neighborLocation-both-1-firefox-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-a11fd-te-normal-disabled-true-neighborLocation-both-1-firefox-linux.png index e3d4fddd31..592c15da4e 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-a11fd-te-normal-disabled-true-neighborLocation-both-1-firefox-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-a11fd-te-normal-disabled-true-neighborLocation-both-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-a11fd-te-normal-disabled-true-neighborLocation-both-1-webkit-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-a11fd-te-normal-disabled-true-neighborLocation-both-1-webkit-linux.png index 391b693c8c..fcf3e0f187 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-a11fd-te-normal-disabled-true-neighborLocation-both-1-webkit-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-a11fd-te-normal-disabled-true-neighborLocation-both-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-beaa7--normal-disabled-false-neighborLocation-right-1-chromium-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-beaa7--normal-disabled-false-neighborLocation-right-1-chromium-linux.png index 6f3fc4d982..8418b89ebc 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-beaa7--normal-disabled-false-neighborLocation-right-1-chromium-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-beaa7--normal-disabled-false-neighborLocation-right-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-beaa7--normal-disabled-false-neighborLocation-right-1-firefox-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-beaa7--normal-disabled-false-neighborLocation-right-1-firefox-linux.png index ed29e7358e..8dd26b211c 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-beaa7--normal-disabled-false-neighborLocation-right-1-firefox-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-beaa7--normal-disabled-false-neighborLocation-right-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-beaa7--normal-disabled-false-neighborLocation-right-1-webkit-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-beaa7--normal-disabled-false-neighborLocation-right-1-webkit-linux.png index bb8465f70d..020c86cbae 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-beaa7--normal-disabled-false-neighborLocation-right-1-webkit-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-beaa7--normal-disabled-false-neighborLocation-right-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e104c--normal-disabled-false-neighborLocation-right-1-chromium-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e104c--normal-disabled-false-neighborLocation-right-1-chromium-linux.png index 7ec643fc9e..5bfb6f9a22 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e104c--normal-disabled-false-neighborLocation-right-1-chromium-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e104c--normal-disabled-false-neighborLocation-right-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e104c--normal-disabled-false-neighborLocation-right-1-firefox-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e104c--normal-disabled-false-neighborLocation-right-1-firefox-linux.png index 8b618bbd53..3e893823ad 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e104c--normal-disabled-false-neighborLocation-right-1-firefox-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e104c--normal-disabled-false-neighborLocation-right-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e104c--normal-disabled-false-neighborLocation-right-1-webkit-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e104c--normal-disabled-false-neighborLocation-right-1-webkit-linux.png index 18ecce9434..597a50e5f1 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e104c--normal-disabled-false-neighborLocation-right-1-webkit-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e104c--normal-disabled-false-neighborLocation-right-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e450b-invalid-disabled-false-neighborLocation-right-1-chromium-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e450b-invalid-disabled-false-neighborLocation-right-1-chromium-linux.png index 92bc1f803e..072c4e06c4 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e450b-invalid-disabled-false-neighborLocation-right-1-chromium-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e450b-invalid-disabled-false-neighborLocation-right-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e450b-invalid-disabled-false-neighborLocation-right-1-firefox-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e450b-invalid-disabled-false-neighborLocation-right-1-firefox-linux.png index de98c4df70..d70f615cf8 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e450b-invalid-disabled-false-neighborLocation-right-1-firefox-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e450b-invalid-disabled-false-neighborLocation-right-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e450b-invalid-disabled-false-neighborLocation-right-1-webkit-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e450b-invalid-disabled-false-neighborLocation-right-1-webkit-linux.png index 921566eca7..4d764448f5 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e450b-invalid-disabled-false-neighborLocation-right-1-webkit-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-e450b-invalid-disabled-false-neighborLocation-right-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-ec108-te-valid-disabled-false-neighborLocation-left-1-chromium-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-ec108-te-valid-disabled-false-neighborLocation-left-1-chromium-linux.png index 30dd085c94..0a9b1b88e8 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-ec108-te-valid-disabled-false-neighborLocation-left-1-chromium-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-ec108-te-valid-disabled-false-neighborLocation-left-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-ec108-te-valid-disabled-false-neighborLocation-left-1-firefox-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-ec108-te-valid-disabled-false-neighborLocation-left-1-firefox-linux.png index 9403c8025e..af442fce9c 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-ec108-te-valid-disabled-false-neighborLocation-left-1-firefox-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-ec108-te-valid-disabled-false-neighborLocation-left-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-ec108-te-valid-disabled-false-neighborLocation-left-1-webkit-linux.png b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-ec108-te-valid-disabled-false-neighborLocation-left-1-webkit-linux.png index c7224442ed..7dab49fc6f 100644 Binary files a/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-ec108-te-valid-disabled-false-neighborLocation-left-1-webkit-linux.png and b/semcore/date-picker/__tests__/month-picker.browser-test.tsx-snapshots/-visual-Month-Picker-Trigger-Verify-trigger-si-ec108-te-valid-disabled-false-neighborLocation-left-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx index 6e21ad4162..0cc0a7112d 100644 --- a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx +++ b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx @@ -83,8 +83,8 @@ test.describe(`${TAG.VISUAL}`, () => { await expect(calendar).toHaveAttribute('width', '16'); await expect(calendar).toHaveAttribute('height', '16'); await checkStyle(calendar, { - paddingLeft: '8px', - paddingRight: '8px', + paddingLeft: '12px', + paddingRight: '6px', }); } }); @@ -93,7 +93,7 @@ test.describe(`${TAG.VISUAL}`, () => { const cell = locators.cells(page, 2); await checkStyle(cell, { ...defaultCellStyles, - margin: '4px 0px 0px', + margin: '0px', }); }); @@ -110,7 +110,7 @@ test.describe(`${TAG.VISUAL}`, () => { .locator('[data-ui-name="CalendarMonths.Unit"][class*="Selected"]') .nth(0); await checkStyle(selectedCell, { - margin: '4px 0px 0px', + margin: '0px', width: '60px', height: '32px', }); diff --git a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-Month-Range-comparator-with-advanced-u-22177-mouse-intearctions-and-styles-of-advanced-use-1-chromium-linux.png b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-Month-Range-comparator-with-advanced-u-22177-mouse-intearctions-and-styles-of-advanced-use-1-chromium-linux.png index 0a45327c99..a33081ee46 100644 Binary files a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-Month-Range-comparator-with-advanced-u-22177-mouse-intearctions-and-styles-of-advanced-use-1-chromium-linux.png and b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-Month-Range-comparator-with-advanced-u-22177-mouse-intearctions-and-styles-of-advanced-use-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-Month-Range-comparator-with-advanced-u-22177-mouse-intearctions-and-styles-of-advanced-use-1-firefox-linux.png b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-Month-Range-comparator-with-advanced-u-22177-mouse-intearctions-and-styles-of-advanced-use-1-firefox-linux.png index 502a254ecd..9226d28ef8 100644 Binary files a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-Month-Range-comparator-with-advanced-u-22177-mouse-intearctions-and-styles-of-advanced-use-1-firefox-linux.png and b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-Month-Range-comparator-with-advanced-u-22177-mouse-intearctions-and-styles-of-advanced-use-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-Month-Range-comparator-with-advanced-u-22177-mouse-intearctions-and-styles-of-advanced-use-1-webkit-linux.png b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-Month-Range-comparator-with-advanced-u-22177-mouse-intearctions-and-styles-of-advanced-use-1-webkit-linux.png index 12720432da..3433bc95bb 100644 Binary files a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-Month-Range-comparator-with-advanced-u-22177-mouse-intearctions-and-styles-of-advanced-use-1-webkit-linux.png and b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-Month-Range-comparator-with-advanced-u-22177-mouse-intearctions-and-styles-of-advanced-use-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-1-chromium-linux.png b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-1-chromium-linux.png index ceffd96935..61185b3011 100644 Binary files a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-1-chromium-linux.png and b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-1-firefox-linux.png b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-1-firefox-linux.png index a479cbe658..c8d2c0262e 100644 Binary files a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-1-firefox-linux.png and b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-1-webkit-linux.png b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-1-webkit-linux.png index 36cdf53fe4..594c6b4568 100644 Binary files a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-1-webkit-linux.png and b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-2-chromium-linux.png b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-2-chromium-linux.png index 4b0124a2fd..26e12c394c 100644 Binary files a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-2-chromium-linux.png and b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-2-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-2-firefox-linux.png b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-2-firefox-linux.png index 6fd2114b22..8f5ff46aa2 100644 Binary files a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-2-firefox-linux.png and b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-2-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-2-webkit-linux.png b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-2-webkit-linux.png index 1e0db92ede..6b6e08f64f 100644 Binary files a/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-2-webkit-linux.png and b/semcore/date-picker/__tests__/month-range-comparator.browser-test.tsx-snapshots/-visual-MonthRangeComparator-range-Month-range-comparator-filled-state-2-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx index 2cab05b7e2..0ea0bcca86 100644 --- a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx +++ b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx @@ -133,15 +133,15 @@ test.describe(`${TAG.VISUAL}`, () => { await test.step('Verify SVG dimensions and paddings', async () => { const svg = locators.monthRangePickerTrigger(page).locator('svg'); await checkStyle(svg, { - paddingLeft: '8px', - paddingRight: '8px', + paddingLeft: '12px', + paddingRight: '6px', }); await expect(svg).toHaveAttribute('width', '16'); await expect(svg).toHaveAttribute('height', '16'); }); await test.step('Verify trigger separator padding', async () => { - await checkStyle(separator, { paddingRight: '8px' }); + await checkStyle(separator, { paddingRight: '12px' }); }); await test.step('Verify disabled date style', async () => { @@ -150,14 +150,14 @@ test.describe(`${TAG.VISUAL}`, () => { await checkStyle(locators.cells(page, 0), { ...defaultCellStyles, - margin: '4px 0px 0px', + margin: '0px', }); }); await test.step('Verify available date style', async () => { await checkStyle(locators.cells(page, 2), { ...defaultCellStyles, - margin: '4px 0px 0px', + margin: '0px', }); }); @@ -175,7 +175,7 @@ test.describe(`${TAG.VISUAL}`, () => { await test.step('Verify selected date style', async () => { await checkStyle(selectedCells.nth(0), { - margin: '4px 0px 0px', + margin: '0px', width: '60px', height: '32px', }); diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-16622--normal-disabled-false-neighborLocation-right-1-chromium-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-16622--normal-disabled-false-neighborLocation-right-1-chromium-linux.png index b2cc130e90..3a47b2c132 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-16622--normal-disabled-false-neighborLocation-right-1-chromium-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-16622--normal-disabled-false-neighborLocation-right-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-16622--normal-disabled-false-neighborLocation-right-1-firefox-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-16622--normal-disabled-false-neighborLocation-right-1-firefox-linux.png index 56d250093c..01147af201 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-16622--normal-disabled-false-neighborLocation-right-1-firefox-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-16622--normal-disabled-false-neighborLocation-right-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-16622--normal-disabled-false-neighborLocation-right-1-webkit-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-16622--normal-disabled-false-neighborLocation-right-1-webkit-linux.png index 27ee3c74f8..3d35851ee4 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-16622--normal-disabled-false-neighborLocation-right-1-webkit-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-16622--normal-disabled-false-neighborLocation-right-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-b4a17-invalid-disabled-false-neighborLocation-right-1-chromium-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-b4a17-invalid-disabled-false-neighborLocation-right-1-chromium-linux.png index 6fd57151e7..8f7e718074 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-b4a17-invalid-disabled-false-neighborLocation-right-1-chromium-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-b4a17-invalid-disabled-false-neighborLocation-right-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-b4a17-invalid-disabled-false-neighborLocation-right-1-firefox-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-b4a17-invalid-disabled-false-neighborLocation-right-1-firefox-linux.png index 76ce6b2f41..722179674d 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-b4a17-invalid-disabled-false-neighborLocation-right-1-firefox-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-b4a17-invalid-disabled-false-neighborLocation-right-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-b4a17-invalid-disabled-false-neighborLocation-right-1-webkit-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-b4a17-invalid-disabled-false-neighborLocation-right-1-webkit-linux.png index 63e7666eb5..06659f8065 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-b4a17-invalid-disabled-false-neighborLocation-right-1-webkit-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-b4a17-invalid-disabled-false-neighborLocation-right-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-c6f25--normal-disabled-false-neighborLocation-right-1-chromium-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-c6f25--normal-disabled-false-neighborLocation-right-1-chromium-linux.png index bc78ace312..1b0518a30c 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-c6f25--normal-disabled-false-neighborLocation-right-1-chromium-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-c6f25--normal-disabled-false-neighborLocation-right-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-c6f25--normal-disabled-false-neighborLocation-right-1-firefox-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-c6f25--normal-disabled-false-neighborLocation-right-1-firefox-linux.png index 61360ae985..a492cbfb21 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-c6f25--normal-disabled-false-neighborLocation-right-1-firefox-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-c6f25--normal-disabled-false-neighborLocation-right-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-c6f25--normal-disabled-false-neighborLocation-right-1-webkit-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-c6f25--normal-disabled-false-neighborLocation-right-1-webkit-linux.png index a1c61d00df..1c7d58c589 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-c6f25--normal-disabled-false-neighborLocation-right-1-webkit-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-siz-c6f25--normal-disabled-false-neighborLocation-right-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-chromium-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-chromium-linux.png index 9b395ad4ca..6c69832551 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-chromium-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-firefox-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-firefox-linux.png index ad3ec11522..548ce79030 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-firefox-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-webkit-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-webkit-linux.png index 9600c2c1ba..db02d4ef9f 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-webkit-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-normal-disabled-true-neighborLocation-both-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-chromium-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-chromium-linux.png index 712ef04d85..ac6cf6ffe2 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-chromium-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-firefox-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-firefox-linux.png index 3e89e0a111..5952476ef0 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-firefox-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-webkit-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-webkit-linux.png index 2ea5277dec..5b515c63e1 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-webkit-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-size-m-state-valid-disabled-false-neighborLocation-left-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-1-chromium-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-1-chromium-linux.png index a48212f772..9cdc3ba56e 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-1-chromium-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-1-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-1-firefox-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-1-firefox-linux.png index 808d3eeb60..565792c4b2 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-1-firefox-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-1-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-1-webkit-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-1-webkit-linux.png index 1f22f26bb3..659a2e1957 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-1-webkit-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-1-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-2-chromium-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-2-chromium-linux.png index 8df4a039a3..002f7b9e8a 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-2-chromium-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-2-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-2-firefox-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-2-firefox-linux.png index 8f55c80e49..a3d39966d7 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-2-firefox-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-2-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-2-webkit-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-2-webkit-linux.png index 3a67393e92..3c97aa0e1e 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-2-webkit-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-2-webkit-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-3-chromium-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-3-chromium-linux.png index ea0594f29c..0d0d6aef27 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-3-chromium-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-3-chromium-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-3-firefox-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-3-firefox-linux.png index 4fbb82e74d..f66573c5ab 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-3-firefox-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-3-firefox-linux.png differ diff --git a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-3-webkit-linux.png b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-3-webkit-linux.png index ec92050853..bd0edce468 100644 Binary files a/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-3-webkit-linux.png and b/semcore/date-picker/__tests__/month-range-picker.browser-test.tsx-snapshots/-visual-Month-Range-Trigger-Verify-trigger-when-entering-date-manually-3-webkit-linux.png differ diff --git a/semcore/date-picker/src/style/calendar.shadow.css b/semcore/date-picker/src/style/calendar.shadow.css index 0d710b317c..bb4a48cc27 100644 --- a/semcore/date-picker/src/style/calendar.shadow.css +++ b/semcore/date-picker/src/style/calendar.shadow.css @@ -1,7 +1,8 @@ SCalendar { display: flex; flex-direction: column; - border-radius: var(--intergalactic-surface-rounded, 8px); + border-radius: var(--intergalactic-rounded-small, 4px); + gap: var(--intergalactic-spacing-content-gap-small, 4px); SCalendarUnit:focus-visible { outline: none; @@ -12,11 +13,12 @@ SGridDays { display: grid; grid-template-columns: repeat(7, minmax(32px, auto)); grid-template-rows: repeat(auto-fit, minmax(32px, auto)); + grid-row-gap: var(--intergalactic-spacing-content-gap-small, 4px); } SGridMonths { display: grid; - grid-row-gap: var(--intergalactic-spacing-2x, 8px); + grid-row-gap: var(--intergalactic-spacing-content-gap-large, 8px); grid-template-columns: repeat(3, minmax(60px, auto)); grid-template-rows: repeat(4, minmax(32px, auto)); } @@ -55,7 +57,7 @@ SCalendarUnit { background-color: var(--intergalactic-date-picker-cell, oklch(1 0 0)); align-items: center; - border-radius: var(--intergalactic-control-rounded, 6px); + border-radius: var(--intergalactic-rounded-small, 4px); box-sizing: border-box; cursor: pointer; display: flex; @@ -67,11 +69,10 @@ SCalendarUnit { transition: border-radius 0.15s 0.15s; outline: none; margin: 0; - margin-top: 4px; &:hover { color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); - background-color: var(--intergalactic-date-picker-cell-hover, oklch(0.98 0.001 180)); + background-color: var(--intergalactic-date-picker-cell-hover, oklch(0.97 0.001 180)); } } @@ -82,7 +83,7 @@ SCalendarUnit[today] { display: block; top: 1px; left: 1px; - border-radius: var(--intergalactic-control-rounded, 6px); + border-radius: var(--intergalactic-rounded-small, 4px); width: calc(100% - 2px); height: calc(100% - 2px); box-sizing: border-box; @@ -98,133 +99,156 @@ SCalendarUnit[today]SCalendarUnit[endSelected] { } SCalendarUnit[selected] { - background-color: var(--intergalactic-date-picker-cell-range, oklch(0.959 0.021 267.8)); + background-color: var(--intergalactic-date-picker-cell-range, oklch(0.96 0.001 180)); border-radius: 0; transition: border-radius 0s 0s; color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); &:hover { - background-color: var(--intergalactic-date-picker-cell-range-hover, oklch(0.898 0.054 268.3)); + background-color: var(--intergalactic-date-picker-cell-range-hover, oklch(0.9 0.002 177)); } } SCalendarUnit[highlighted] { - background-color: var(--intergalactic-date-picker-cell-range, oklch(0.959 0.021 267.8)); + background-color: var(--intergalactic-date-picker-cell-range, oklch(0.96 0.001 180)); border-radius: 0; transition: border-radius 0s 0s; color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); &:hover { - background-color: var(--intergalactic-date-picker-cell-range-hover, oklch(0.898 0.054 268.3)); + background-color: var(--intergalactic-date-picker-cell-range-hover, oklch(0.9 0.002 177)); } } SCalendarUnit[startSelected] { color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - background-color: var(--intergalactic-date-picker-cell-active, oklch(0.64 0.152 276.7)); + background-color: var(--intergalactic-date-picker-cell-active, oklch(0.23 0.01 140)); &:not([highlighted]) { - border-bottom-left-radius: var(--intergalactic-control-rounded, 6px); + border-bottom-left-radius: var(--intergalactic-rounded-small, 4px); border-bottom-right-radius: 0; - border-top-left-radius: var(--intergalactic-control-rounded, 6px); + border-top-left-radius: var(--intergalactic-rounded-small, 4px); border-top-right-radius: 0; } &:hover { color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - background-color: var(--intergalactic-date-picker-cell-active-hover, oklch(0.6 0.166 277.7)); + background-color: var(--intergalactic-date-picker-cell-active-hover, oklch(0.32 0.007 140)); } } SCalendarUnit[endSelected] { - background-color: var(--intergalactic-date-picker-cell-active, oklch(0.64 0.152 276.7)); + background-color: var(--intergalactic-date-picker-cell-active, oklch(0.23 0.01 140)); color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); &:not([highlighted]) { border-bottom-left-radius: 0; - border-bottom-right-radius: var(--intergalactic-control-rounded, 6px); + border-bottom-right-radius: var(--intergalactic-rounded-small, 4px); border-top-left-radius: 0; - border-top-right-radius: var(--intergalactic-control-rounded, 6px); + border-top-right-radius: var(--intergalactic-rounded-small, 4px); } &:hover { color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - background-color: var(--intergalactic-date-picker-cell-active-hover, oklch(0.6 0.166 277.7)); + background-color: var(--intergalactic-date-picker-cell-active-hover, oklch(0.32 0.007 140)); } } SCalendarUnit[startHighlighted]:not([selected]) { - border-bottom-left-radius: var(--intergalactic-control-rounded, 6px); + border-bottom-left-radius: var(--intergalactic-rounded-small, 4px); border-bottom-right-radius: 0; - border-top-left-radius: var(--intergalactic-control-rounded, 6px); + border-top-left-radius: var(--intergalactic-rounded-small, 4px); border-top-right-radius: 0; } SCalendarUnit[endHighlighted]:not([selected]) { border-bottom-left-radius: 0; - border-bottom-right-radius: var(--intergalactic-control-rounded, 6px); + border-bottom-right-radius: var(--intergalactic-rounded-small, 4px); border-top-left-radius: 0; - border-top-right-radius: var(--intergalactic-control-rounded, 6px); + border-top-right-radius: var(--intergalactic-rounded-small, 4px); } SCalendarUnit[startHighlighted]SCalendarUnit[endHighlighted] { - border-bottom-left-radius: var(--intergalactic-control-rounded, 6px); - border-bottom-right-radius: var(--intergalactic-control-rounded, 6px); - border-top-left-radius: var(--intergalactic-control-rounded, 6px); - border-top-right-radius: var(--intergalactic-control-rounded, 6px); + border-bottom-left-radius: var(--intergalactic-rounded-small, 4px); + border-bottom-right-radius: var(--intergalactic-rounded-small, 4px); + border-top-left-radius: var(--intergalactic-rounded-small, 4px); + border-top-right-radius: var(--intergalactic-rounded-small, 4px); } SCalendarUnit[startSelected]SCalendarUnit[endSelected] { - border-bottom-left-radius: var(--intergalactic-control-rounded, 6px); - border-bottom-right-radius: var(--intergalactic-control-rounded, 6px); - border-top-left-radius: var(--intergalactic-control-rounded, 6px); - border-top-right-radius: var(--intergalactic-control-rounded, 6px); + border-bottom-left-radius: var(--intergalactic-rounded-small, 4px); + border-bottom-right-radius: var(--intergalactic-rounded-small, 4px); + border-top-left-radius: var(--intergalactic-rounded-small, 4px); + border-top-right-radius: var(--intergalactic-rounded-small, 4px); } SCalendarUnit[compareHighlighted] { - border-top: 2px dashed var(--intergalactic-date-picker-cell-comparison-active, oklch(0.64 0.223 299.3)); - border-bottom: 2px dashed var(--intergalactic-date-picker-cell-comparison-active, oklch(0.64 0.223 299.3)); - border-radius: 0; + border: none; transition: none; + + &::after { + content: ''; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + + background-image: + linear-gradient(to right, var(--intergalactic-date-picker-cell-comparison-active, oklch(0.74 0.117 274.1)) 50%, transparent 50%), + linear-gradient(to right, var(--intergalactic-date-picker-cell-comparison-active, oklch(0.74 0.117 274.1)) 50%, transparent 50%), + linear-gradient(to bottom, var(--intergalactic-date-picker-cell-comparison-active, oklch(0.74 0.117 274.1)) 50%, transparent 50%), + linear-gradient(to bottom, var(--intergalactic-date-picker-cell-comparison-active, oklch(0.74 0.117 274.1)) 50%, transparent 50%); + background-repeat: repeat-x; + background-size: 10.8px 2px, 10.8px 2px, 0 0, 0 0; + background-position: top left -2.9px, bottom left -2.9px, top -2.9px left, top -2.9px right; + } } SCalendarUnit[compareStartHighlighted], SCalendarUnit[compareEndHighlighted] { - border-left: 2px dashed var(--intergalactic-date-picker-cell-comparison-active, oklch(0.64 0.223 299.3)); - border-right: 2px dashed var(--intergalactic-date-picker-cell-comparison-active, oklch(0.64 0.223 299.3)); + border-left: 0; + border-right: 0; + + &::after { + background-size: 10.8px 2px, 10.8px 2px, 2px 10.8px, 2px 10.8px; + background-repeat: repeat-x, repeat-x, repeat-y, repeat-y; + } } SCalendarUnit[compareStart], SCalendarUnit[compareEnd] { border-radius: 0; - background-color: var(--intergalactic-date-picker-cell-comparison-active, oklch(0.64 0.223 299.3)); + background-color: var(--intergalactic-date-picker-cell-comparison-active, oklch(0.74 0.117 274.1)); color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); &:hover { color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - background-color: var(--intergalactic-date-picker-cell-comparison-active-hover, oklch(0.6 0.244 297.8)); + background-color: var(--intergalactic-date-picker-cell-comparison-active-hover, oklch(0.58 0.168 278.2)); } } -SCalendarUnit[compareStartHighlighted] { - border-top-left-radius: var(--intergalactic-control-rounded, 6px); - border-bottom-left-radius: var(--intergalactic-control-rounded, 6px); +SCalendarUnit[compareStartHighlighted], +SCalendarUnit[compareStartHighlighted]::after { + border-top-left-radius: var(--intergalactic-rounded-small, 4px); + border-bottom-left-radius: var(--intergalactic-rounded-small, 4px); } -SCalendarUnit[compareEndHighlighted] { - border-top-right-radius: var(--intergalactic-control-rounded, 6px); - border-bottom-right-radius: var(--intergalactic-control-rounded, 6px); +SCalendarUnit[compareEndHighlighted], +SCalendarUnit[compareEndHighlighted]::after { + border-top-right-radius: var(--intergalactic-rounded-small, 4px); + border-bottom-right-radius: var(--intergalactic-rounded-small, 4px); } SCalendarUnit[compareStart]:not([compareHighlighted]) { - border-top-left-radius: var(--intergalactic-control-rounded, 6px); - border-bottom-left-radius: var(--intergalactic-control-rounded, 6px); + border-top-left-radius: var(--intergalactic-rounded-small, 4px); + border-bottom-left-radius: var(--intergalactic-rounded-small, 4px); } SCalendarUnit[compareEnd]:not([compareHighlighted]) { - border-top-right-radius: var(--intergalactic-control-rounded, 6px); - border-bottom-right-radius: var(--intergalactic-control-rounded, 6px); + border-top-right-radius: var(--intergalactic-rounded-small, 4px); + border-bottom-right-radius: var(--intergalactic-rounded-small, 4px); } SCalendarUnit[outdated] { @@ -243,7 +267,7 @@ SCalendar:focus { } &:not(&:has(SCalendarUnit[highlighted])) { - border-radius: var(--intergalactic-surface-rounded, 8px); + border-radius: var(--intergalactic-rounded-small, 4px); } } diff --git a/semcore/date-picker/src/style/date-picker.shadow.css b/semcore/date-picker/src/style/date-picker.shadow.css index 0b6083b8a8..92e311ec0e 100644 --- a/semcore/date-picker/src/style/date-picker.shadow.css +++ b/semcore/date-picker/src/style/date-picker.shadow.css @@ -73,11 +73,11 @@ SRangeIndicator { } SRangeIndicator[range='value'] { - background-color: var(--intergalactic-date-picker-cell-active, oklch(0.64 0.152 276.7)); + background-color: var(--intergalactic-date-picker-cell-active, oklch(0.23 0.01 140)); } SRangeIndicator[range='compare'] { - background-color: var(--intergalactic-date-picker-cell-comparison-active, oklch(0.64 0.223 299.3)); + background-color: var(--intergalactic-date-picker-cell-comparison-active, oklch(0.74 0.117 274.1)); } SRangeIndicator[disabled] { @@ -136,7 +136,7 @@ SInputMask[noHumanizedDate] SMask { } SDateRange SInputMask:focus-within SMask { - background-color: var(--intergalactic-bg-highlight-focus, oklch(0.524 0.266 263.1 / 0.116)); + background-color: var(--intergalactic-bg-highlight-focus, oklch(0.525 0.265 263 / 0.077)); } SRangeSep[fulfilled], diff --git a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-horizontal-divider-renders-in-complex-examples-1-chromium-linux.png b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-horizontal-divider-renders-in-complex-examples-1-chromium-linux.png index f3058532e2..23ebe0969b 100644 Binary files a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-horizontal-divider-renders-in-complex-examples-1-chromium-linux.png and b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-horizontal-divider-renders-in-complex-examples-1-chromium-linux.png differ diff --git a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-horizontal-divider-renders-in-complex-examples-1-firefox-linux.png b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-horizontal-divider-renders-in-complex-examples-1-firefox-linux.png index fa35e71e6e..671e52bbd4 100644 Binary files a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-horizontal-divider-renders-in-complex-examples-1-firefox-linux.png and b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-horizontal-divider-renders-in-complex-examples-1-firefox-linux.png differ diff --git a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-horizontal-divider-renders-in-complex-examples-1-webkit-linux.png b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-horizontal-divider-renders-in-complex-examples-1-webkit-linux.png index 70f69ba2b1..690578d095 100644 Binary files a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-horizontal-divider-renders-in-complex-examples-1-webkit-linux.png and b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-horizontal-divider-renders-in-complex-examples-1-webkit-linux.png differ diff --git a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-vertical-divider-renders-in-complex-examples-1-chromium-linux.png b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-vertical-divider-renders-in-complex-examples-1-chromium-linux.png index 464a2c0cdc..edcf19f971 100644 Binary files a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-vertical-divider-renders-in-complex-examples-1-chromium-linux.png and b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-vertical-divider-renders-in-complex-examples-1-chromium-linux.png differ diff --git a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-vertical-divider-renders-in-complex-examples-1-firefox-linux.png b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-vertical-divider-renders-in-complex-examples-1-firefox-linux.png index e622f7035e..b3f60b0f7c 100644 Binary files a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-vertical-divider-renders-in-complex-examples-1-firefox-linux.png and b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-vertical-divider-renders-in-complex-examples-1-firefox-linux.png differ diff --git a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-vertical-divider-renders-in-complex-examples-1-webkit-linux.png b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-vertical-divider-renders-in-complex-examples-1-webkit-linux.png index b749d7201a..73a20d1be4 100644 Binary files a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-vertical-divider-renders-in-complex-examples-1-webkit-linux.png and b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Complex-examples-Verify-vertical-divider-renders-in-complex-examples-1-webkit-linux.png differ diff --git a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horiz-4990a-order-warning-active-w-undefined-h-undefined-1-chromium-linux.png b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horiz-4990a-order-warning-active-w-undefined-h-undefined-1-chromium-linux.png index 87250d8a71..27bb865d95 100644 Binary files a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horiz-4990a-order-warning-active-w-undefined-h-undefined-1-chromium-linux.png and b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horiz-4990a-order-warning-active-w-undefined-h-undefined-1-chromium-linux.png differ diff --git a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horiz-4990a-order-warning-active-w-undefined-h-undefined-1-firefox-linux.png b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horiz-4990a-order-warning-active-w-undefined-h-undefined-1-firefox-linux.png index aad6262f1f..789d879793 100644 Binary files a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horiz-4990a-order-warning-active-w-undefined-h-undefined-1-firefox-linux.png and b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horiz-4990a-order-warning-active-w-undefined-h-undefined-1-firefox-linux.png differ diff --git a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horiz-4990a-order-warning-active-w-undefined-h-undefined-1-webkit-linux.png b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horiz-4990a-order-warning-active-w-undefined-h-undefined-1-webkit-linux.png index 90b5e2fcc8..4f49f42043 100644 Binary files a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horiz-4990a-order-warning-active-w-undefined-h-undefined-1-webkit-linux.png and b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horiz-4990a-order-warning-active-w-undefined-h-undefined-1-webkit-linux.png differ diff --git a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horizontal-use-secondary-theme-default-w-100-h-undefined-1-chromium-linux.png b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horizontal-use-secondary-theme-default-w-100-h-undefined-1-chromium-linux.png index 5b26eb6727..b15ae55a0e 100644 Binary files a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horizontal-use-secondary-theme-default-w-100-h-undefined-1-chromium-linux.png and b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horizontal-use-secondary-theme-default-w-100-h-undefined-1-chromium-linux.png differ diff --git a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horizontal-use-secondary-theme-default-w-100-h-undefined-1-firefox-linux.png b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horizontal-use-secondary-theme-default-w-100-h-undefined-1-firefox-linux.png index 595cc9fc38..be651012a2 100644 Binary files a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horizontal-use-secondary-theme-default-w-100-h-undefined-1-firefox-linux.png and b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horizontal-use-secondary-theme-default-w-100-h-undefined-1-firefox-linux.png differ diff --git a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horizontal-use-secondary-theme-default-w-100-h-undefined-1-webkit-linux.png b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horizontal-use-secondary-theme-default-w-100-h-undefined-1-webkit-linux.png index f9efac6aa5..da20277bdf 100644 Binary files a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horizontal-use-secondary-theme-default-w-100-h-undefined-1-webkit-linux.png and b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-horizontal-use-secondary-theme-default-w-100-h-undefined-1-webkit-linux.png differ diff --git a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-verti-c409f-order-warning-active-w-undefined-h-undefined-1-chromium-linux.png b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-verti-c409f-order-warning-active-w-undefined-h-undefined-1-chromium-linux.png index e0463928d2..99038cbf07 100644 Binary files a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-verti-c409f-order-warning-active-w-undefined-h-undefined-1-chromium-linux.png and b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-verti-c409f-order-warning-active-w-undefined-h-undefined-1-chromium-linux.png differ diff --git a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-verti-c409f-order-warning-active-w-undefined-h-undefined-1-firefox-linux.png b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-verti-c409f-order-warning-active-w-undefined-h-undefined-1-firefox-linux.png index 1361833bbf..820618c62b 100644 Binary files a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-verti-c409f-order-warning-active-w-undefined-h-undefined-1-firefox-linux.png and b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-verti-c409f-order-warning-active-w-undefined-h-undefined-1-firefox-linux.png differ diff --git a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-verti-c409f-order-warning-active-w-undefined-h-undefined-1-webkit-linux.png b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-verti-c409f-order-warning-active-w-undefined-h-undefined-1-webkit-linux.png index afba3f4340..6e351aabfe 100644 Binary files a/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-verti-c409f-order-warning-active-w-undefined-h-undefined-1-webkit-linux.png and b/semcore/divider/__tests__/divider.browser-test.tsx-snapshots/-visual-Verify-divider-with-orientation-verti-c409f-order-warning-active-w-undefined-h-undefined-1-webkit-linux.png differ diff --git a/semcore/divider/src/style/divider.shadow.css b/semcore/divider/src/style/divider.shadow.css index 4fa16763c2..68ae8429f1 100644 --- a/semcore/divider/src/style/divider.shadow.css +++ b/semcore/divider/src/style/divider.shadow.css @@ -10,7 +10,7 @@ SDivider[use='primary']SDivider[theme='default'] { background: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); } SDivider[use='primary']SDivider[theme='invert'] { - background-color: var(--intergalactic-border-primary-invert, oklch(0.995 0.008 147.4 / 0.391)); + background-color: var(--intergalactic-border-primary-invert, oklch(0.995 0.009 144.4 / 0.347)); opacity: 0.2; } @@ -34,7 +34,7 @@ SDivider[orientation='horizontal']SDivider[use='secondary']SDivider[theme='defau SDivider[orientation='horizontal']SDivider[use='secondary']SDivider[theme='invert'] { background-image: linear-gradient( to right, - var(--intergalactic-border-primary-invert, oklch(0.995 0.008 147.4 / 0.391)) 3px, + var(--intergalactic-border-primary-invert, oklch(0.995 0.009 144.4 / 0.347)) 3px, transparent 1px ); opacity: 0.2; @@ -61,7 +61,7 @@ SDivider[orientation='vertical']SDivider[use='secondary']SDivider[theme='default SDivider[orientation='vertical']SDivider[use='secondary']SDivider[theme='invert'] { background-image: linear-gradient( to bottom, - var(--intergalactic-border-primary-invert, oklch(0.995 0.008 147.4 / 0.391)) 3px, + var(--intergalactic-border-primary-invert, oklch(0.995 0.009 144.4 / 0.347)) 3px, transparent 1px ); opacity: 0.2; diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-false-1-chromium-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-false-1-chromium-linux.png index 5359eb521e..b50bdf3d6d 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-false-1-chromium-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-false-1-chromium-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-false-1-firefox-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-false-1-firefox-linux.png index 20fc8ae8c3..251e01a1c6 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-false-1-firefox-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-false-1-firefox-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-false-1-webkit-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-false-1-webkit-linux.png index 7d6bdd6438..4dcfff3c44 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-false-1-webkit-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-false-1-webkit-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-true-1-chromium-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-true-1-chromium-linux.png index 39e16eee6a..db9333da1d 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-true-1-chromium-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-true-1-chromium-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-true-1-firefox-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-true-1-firefox-linux.png index 2f51363af2..d184e02237 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-true-1-firefox-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-true-1-firefox-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-true-1-webkit-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-true-1-webkit-linux.png index 0738064ccb..1429d89b8f 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-true-1-webkit-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-l-up-true-1-webkit-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-false-1-chromium-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-false-1-chromium-linux.png index 8e8b180919..2cca442ce3 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-false-1-chromium-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-false-1-chromium-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-false-1-firefox-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-false-1-firefox-linux.png index 0ad1ec1991..9a54971517 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-false-1-firefox-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-false-1-firefox-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-false-1-webkit-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-false-1-webkit-linux.png index 59b4d962a3..c669c9f549 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-false-1-webkit-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-false-1-webkit-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-true-1-chromium-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-true-1-chromium-linux.png index b386fcf1be..6fc616d24c 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-true-1-chromium-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-true-1-chromium-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-true-1-firefox-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-true-1-firefox-linux.png index e0af34f0c3..288474eda4 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-true-1-firefox-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-true-1-firefox-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-true-1-webkit-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-true-1-webkit-linux.png index 9edc87fe49..fc8b24b809 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-true-1-webkit-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-size-m-up-true-1-webkit-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-false-1-chromium-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-false-1-chromium-linux.png index 558b7f2629..41f129ded1 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-false-1-chromium-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-false-1-chromium-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-false-1-firefox-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-false-1-firefox-linux.png index a4a7c0cf44..6a9a2c4429 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-false-1-firefox-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-false-1-firefox-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-false-1-webkit-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-false-1-webkit-linux.png index 34d67de4cf..da9d64d3c1 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-false-1-webkit-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-false-1-webkit-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-true-1-chromium-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-true-1-chromium-linux.png index d10ec37447..f390610862 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-true-1-chromium-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-true-1-chromium-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-true-1-firefox-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-true-1-firefox-linux.png index fa4997299b..f0a21d91c9 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-true-1-firefox-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-true-1-firefox-linux.png differ diff --git a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-true-1-webkit-linux.png b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-true-1-webkit-linux.png index 920f697e78..a98bcbcceb 100644 Binary files a/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-true-1-webkit-linux.png and b/semcore/dot/__tests__/dot.browser-test.tsx-snapshots/-visual-Verify-dot-with-counter-size-m-up-true-1-webkit-linux.png differ diff --git a/semcore/dot/src/style/dot.shadow.css b/semcore/dot/src/style/dot.shadow.css index ec36b6a3f6..a3aae4a090 100644 --- a/semcore/dot/src/style/dot.shadow.css +++ b/semcore/dot/src/style/dot.shadow.css @@ -4,8 +4,8 @@ SDot { justify-content: center; font-size: var(--intergalactic-fs-50, 10px); line-height: normal; - background-color: var(--intergalactic-icon-primary-warning, oklch(0.728 0.188 51.8)); - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + background-color: var(--intergalactic-dot-bg, oklch(0.74 0.17 303)); + color: var(--intergalactic-dot-text, oklch(0.1 0.03 137 / 0.899)); box-sizing: border-box; z-index: 1; border-radius: 100%; diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-1-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-1-chromium-linux.png index 0bffbccca8..6b35f92cf2 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-1-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-1-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-1-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-1-firefox-linux.png index 575bd061d2..7f33371600 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-1-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-1-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-1-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-1-webkit-linux.png index a13ddae5c7..0127316712 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-1-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-1-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-2-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-2-chromium-linux.png index 1136402973..7821559a1b 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-2-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-2-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-2-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-2-firefox-linux.png index 2c3f8808c5..4615298582 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-2-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-2-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-2-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-2-webkit-linux.png index 6f58325364..a098ee7f61 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-2-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-2-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-3-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-3-chromium-linux.png index 39fb11a6c0..028454e376 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-3-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-3-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-3-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-3-firefox-linux.png index 31269b2d53..ccf10601fb 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-3-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-3-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-3-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-3-webkit-linux.png index fd5881e4d4..b1d7365189 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-3-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-3-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-4-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-4-chromium-linux.png index 69f9c06468..cc998c1514 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-4-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-4-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-4-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-4-firefox-linux.png index f9c695c9bd..f227e3e867 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-4-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-4-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-4-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-4-webkit-linux.png index 2cf0c035da..fe995379dc 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-4-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-keyboard-4-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-1-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-1-chromium-linux.png index b562f631c2..f7feca8a4d 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-1-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-1-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-1-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-1-firefox-linux.png index f47689c693..add0f4da8e 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-1-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-1-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-1-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-1-webkit-linux.png index 94be34fefe..fd0073d306 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-1-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-1-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-2-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-2-chromium-linux.png index 6ef86f1bb5..1e7e1f7223 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-2-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-2-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-2-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-2-firefox-linux.png index f47689c693..add0f4da8e 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-2-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-2-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-2-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-2-webkit-linux.png index 4299c5de93..da9a1038ec 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-2-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-2-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-3-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-3-chromium-linux.png index a463ca69bd..4592b5e56c 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-3-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-3-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-3-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-3-firefox-linux.png index d8184ad260..f93d8d8ced 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-3-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-3-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-3-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-3-webkit-linux.png index 68fe0557b2..56ba33f38f 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-3-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-DD-menu-when-interacting-by-mouse-3-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-Tab-panel-1-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-Tab-panel-1-chromium-linux.png index 65f2c6adbd..13d55fecbe 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-Tab-panel-1-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-Tab-panel-1-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-Tab-panel-1-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-Tab-panel-1-firefox-linux.png index d9883d747f..7f2bebb8af 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-Tab-panel-1-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-Tab-panel-1-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-Tab-panel-1-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-Tab-panel-1-webkit-linux.png index 9ced12d768..de380e69a7 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-Tab-panel-1-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-DnD-in-Tab-panel-1-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-1-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-1-chromium-linux.png index ff79fc7b02..c3f200c7da 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-1-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-1-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-1-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-1-firefox-linux.png index 142726044a..8d1d3d189f 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-1-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-1-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-1-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-1-webkit-linux.png index e0ed52e600..0c522d792d 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-1-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-1-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-2-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-2-chromium-linux.png index 39735bf771..162b541738 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-2-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-2-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-2-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-2-firefox-linux.png index 1d381883e1..4b690cb5c8 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-2-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-2-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-2-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-2-webkit-linux.png index a90b897ded..b91d86a688 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-2-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-2-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-3-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-3-chromium-linux.png index ee731af2c9..9306106bb8 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-3-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-3-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-3-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-3-firefox-linux.png index 1e0bf7870b..33da5013be 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-3-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-3-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-3-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-3-webkit-linux.png index 92beb3f632..a485109a61 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-3-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-bottom-3-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-1-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-1-chromium-linux.png index b19995a08e..123e0d8074 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-1-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-1-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-1-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-1-firefox-linux.png index 6f5cbc58c7..a859a02e38 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-1-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-1-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-1-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-1-webkit-linux.png index cda6e89478..def31879cd 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-1-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-1-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-2-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-2-chromium-linux.png index 8e2a61def1..255f517882 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-2-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-2-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-2-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-2-firefox-linux.png index ccfa247073..8aa597d996 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-2-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-2-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-2-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-2-webkit-linux.png index b490623649..a777cbeb1c 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-2-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-2-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-3-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-3-chromium-linux.png index ee731af2c9..9306106bb8 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-3-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-3-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-3-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-3-firefox-linux.png index 1e0bf7870b..33da5013be 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-3-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-3-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-3-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-3-webkit-linux.png index 92beb3f632..a485109a61 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-3-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-false-3-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-1-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-1-chromium-linux.png index c72bfd92e8..ba4a91567f 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-1-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-1-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-1-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-1-firefox-linux.png index 928a50825b..f25af50aa0 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-1-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-1-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-1-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-1-webkit-linux.png index b36983601e..d2bddee919 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-1-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-1-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-2-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-2-chromium-linux.png index 366d74786f..a872536d4d 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-2-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-2-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-2-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-2-firefox-linux.png index 633675c3cd..8c08155b65 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-2-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-2-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-2-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-2-webkit-linux.png index b99f75925a..c09941cea4 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-2-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-2-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-3-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-3-chromium-linux.png index ff716cb7fe..9306106bb8 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-3-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-3-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-3-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-3-firefox-linux.png index 1e0bf7870b..33da5013be 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-3-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-3-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-3-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-3-webkit-linux.png index 92beb3f632..a485109a61 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-3-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-left-3-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-1-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-1-chromium-linux.png index 813353e230..5e7815ae22 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-1-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-1-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-1-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-1-firefox-linux.png index 2f245ec42e..3b33cfe8cd 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-1-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-1-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-1-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-1-webkit-linux.png index ad6fcb42eb..56f7088166 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-1-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-1-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-2-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-2-chromium-linux.png index 009a5a6529..29828810e4 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-2-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-2-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-2-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-2-firefox-linux.png index 9f9a83c00b..6e496af067 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-2-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-2-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-2-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-2-webkit-linux.png index 37e4aee81f..e99158de9d 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-2-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-2-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-3-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-3-chromium-linux.png index ff716cb7fe..9306106bb8 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-3-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-3-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-3-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-3-firefox-linux.png index 1e0bf7870b..33da5013be 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-3-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-3-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-3-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-3-webkit-linux.png index 92beb3f632..a485109a61 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-3-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-right-3-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-1-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-1-chromium-linux.png index c2c4a6df30..49e67220ee 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-1-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-1-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-1-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-1-firefox-linux.png index d15406ff43..1be49f8a32 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-1-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-1-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-1-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-1-webkit-linux.png index 7e5058eca2..c4800e9ce3 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-1-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-1-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-2-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-2-chromium-linux.png index 70f8100bad..62461a372b 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-2-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-2-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-2-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-2-firefox-linux.png index ace59221df..260bdd08d4 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-2-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-2-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-2-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-2-webkit-linux.png index 102e7a700d..6e0cd35892 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-2-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-2-webkit-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-3-chromium-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-3-chromium-linux.png index ee731af2c9..9306106bb8 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-3-chromium-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-3-chromium-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-3-firefox-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-3-firefox-linux.png index 1e0bf7870b..33da5013be 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-3-firefox-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-3-firefox-linux.png differ diff --git a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-3-webkit-linux.png b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-3-webkit-linux.png index 92beb3f632..a485109a61 100644 Binary files a/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-3-webkit-linux.png and b/semcore/drag-and-drop/__tests__/drag-and-drop.browser-test.tsx-snapshots/-visual-Verify-Dnd-when-drag-and-drop-marker-position-is-top-3-webkit-linux.png differ diff --git a/semcore/drag-and-drop/src/style/drag-and-drop.shadow.css b/semcore/drag-and-drop/src/style/drag-and-drop.shadow.css index a53b2a6d45..0df8563eed 100644 --- a/semcore/drag-and-drop/src/style/drag-and-drop.shadow.css +++ b/semcore/drag-and-drop/src/style/drag-and-drop.shadow.css @@ -19,7 +19,7 @@ SDraggable[draggable] { display: none; pointer-events: none; background-image: radial-gradient(circle at center, - var(--intergalactic-icon-primary-neutral, oklch(0.092 0.024 152.2 / 0.526)) 1px, + var(--intergalactic-icon-secondary-neutral, oklch(0.118 0.023 170.1 / 0.262)) 1px, transparent 0); background-size: 6px 6px; background-position: 2px 2px; diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx index 28489627ec..e0d46248ae 100644 --- a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx +++ b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx @@ -80,6 +80,8 @@ export const locators = { }, popper: (page: Page) => page.locator('[data-ui-name="DropdownMenu.Popper"]'), + list: (page: Page) => + page.locator('[data-ui-name="DropdownMenu.List"]'), hint: (page: Page) => page.locator('[data-ui-name="Hint"]'), actions: (page: Page) => @@ -100,6 +102,18 @@ const pressKeyMultipleTimes = async (page: Page, key: string, times: number) => } }; +const scrollVirtualMenuToItem = async (page: Page, index: number) => { + const rowHeight = 52; + const scrollContainer = page.locator('[data-is-virtual="true"] [data-ui-name="ScrollArea.Container"]'); + + await scrollContainer.evaluate((el, { index, rowHeight }) => { + const element = el as HTMLElement; + + element.scrollTop = index * rowHeight; + element.dispatchEvent(new Event('scroll', { bubbles: true })); + }, { index, rowHeight }); +}; + /* ===================================================== @visual Visual states, hover and focus styles, paddings, margins, and snapshots. @@ -107,7 +121,8 @@ Visual states, hover and focus styles, paddings, margins, and snapshots. test.describe(`${TAG.VISUAL} `, () => { test('Verify focus on base dropdown menu', { tag: [TAG.PRIORITY_HIGH, - '@dropdown-menu'], + '@dropdown-menu', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/the_second_method.tsx', 'en'); @@ -145,6 +160,10 @@ test.describe(`${TAG.VISUAL} `, () => { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@dropdown-menu', + '@button', + '@link', + '@spin-container', + '@typography', '@notice'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/dropdown-menu.tsx', 'en'); @@ -174,12 +193,20 @@ test.describe(`${TAG.VISUAL} `, () => { test(`Verify base dropdown with size=${item.size} disabledAll=${item.disabledAll} stretch=${item.stretch} visible=${item.visible}`, { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button', + '@divider'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/dropdown-base-props.tsx', 'en', item); const itemHoverBg = await getCssVarColor(page, '--intergalactic-dropdown-menu-item-hover'); await expect(page).toHaveScreenshot(); + await expect(locators.list(page).first()).toHaveCSS( + 'max-height', + item.size === 'l' ? '306px' : '246px', + ); if (item.size == 'm') { await test.step('Verify styles of M size', async () => { @@ -231,7 +258,10 @@ test.describe(`${TAG.VISUAL} `, () => { test(`Verify multiselect dropdown with size=${item.size} disabledAll=${item.disabledAll} stretch=${item.stretch} visible=${item.visible}`, { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/multiselect-props.tsx', 'en', item); @@ -267,7 +297,10 @@ test.describe(`${TAG.VISUAL} `, () => { test(`Verify selectable radio dropdown with size=${item.size} disabledAll=${item.disabledAll} stretch=${item.stretch} visible=${item.visible}`, { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/selectable-props.tsx', 'en', item); const itemHoverBg = await getCssVarColor(page, '--intergalactic-dropdown-menu-item-hover'); @@ -360,7 +393,12 @@ test.describe(`${TAG.VISUAL} `, () => { test('Verify menu items types with badges, icons and other content', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@button', + '@badge', + '@counter', + '@switch', + '@tooltip'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/list_item_types.tsx', 'en'); @@ -398,7 +436,7 @@ test.describe(`${TAG.VISUAL} `, () => { await test.step('Verify padding between item badge', async () => { const ItemAddon = locators.itemInGroup(page).nth(4).locator('[data-ui-name="DropdownMenu.Item.Text"]'); await checkStyles(ItemAddon, { - 'margin-right': '4px', + 'margin-right': '6px', }); }); @@ -414,7 +452,10 @@ test.describe(`${TAG.VISUAL} `, () => { test('Verify focus on dropdown menu with actions in items ', { tag: [TAG.PRIORITY_HIGH, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/item_actions.tsx', 'en'); @@ -463,7 +504,10 @@ test.describe(`${TAG.VISUAL} `, () => { test('Verify focus on Selectable radio', { tag: [TAG.PRIORITY_HIGH, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/selectable_radio_items.tsx', 'en'); @@ -486,7 +530,10 @@ test.describe(`${TAG.VISUAL} `, () => { test('Verify Selectable radio after mouse interaction', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/selectable_radio_items.tsx', 'en'); @@ -525,7 +572,8 @@ test.describe(`${TAG.VISUAL} `, () => { test('Verify Multiselect items focus', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/multiselect_items.tsx', 'en'); @@ -551,7 +599,9 @@ test.describe(`${TAG.VISUAL} `, () => { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, TAG.MOUSE, - '@dropdown-menu'], + '@dropdown-menu', + '@button', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/with_ellipsis.tsx', 'en', { hintPlacement: 'bottom' }); @@ -594,7 +644,15 @@ test.describe(`${TAG.VISUAL} `, () => { test('Verify virtual scroll by keyboard', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@base-trigger', + '@button-trigger', + '@button', + '@divider', + '@select', + '@typography'], }, async ({ page, browserName }) => { if (browserName != 'chromium') test.skip(); await loadPage(page, 'stories/components/dropdown-menu/advanced/examples/project-selector.tsx', 'en'); @@ -637,11 +695,20 @@ test.describe(`${TAG.VISUAL} `, () => { test('Verify Virtual scroll by Mouse ', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@base-trigger', + '@button-trigger', + '@button', + '@divider', + '@select', + '@typography'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/dropdown-menu/advanced/examples/project-selector.tsx', 'en'); await locators.button(page).click(); + await page.waitForTimeout(200); await locators.menuitemradio(page, 'project 33').waitFor({ state: 'visible' }); await expect(locators.menuitemradio(page, 'project 33')).toHaveAttribute('aria-checked', 'true'); await expect(locators.menuitemradio(page, 'project 32')).toHaveAttribute('aria-checked', 'false'); @@ -657,7 +724,7 @@ test.describe(`${TAG.VISUAL} `, () => { await locators.menuitemradio(page, 'project 42').scrollIntoViewIfNeeded(); await expect(locators.menuitemradio(page, 'project 42')).toBeInViewport(); - await expect(locators.menuitemradio(page, 'project 36')).toBeVisible(); + await expect(locators.menuitemradio(page, 'project 44')).toBeVisible(); if (browserName === 'firefox') return; // every scroll on ff differs on some pixels(not stable) so visual regression skipped for it await expect(page).toHaveScreenshot(); }); @@ -666,7 +733,15 @@ test.describe(`${TAG.VISUAL} `, () => { test('Verify keyboard interactions with menu with sticky groups', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@base-trigger', + '@button-trigger', + '@button', + '@divider', + '@select', + '@typography'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/sticky_groups.tsx', 'en'); @@ -709,7 +784,15 @@ test.describe(`${TAG.VISUAL} `, () => { test('Verify mouse interactions with menu with sticky groups', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@base-trigger', + '@button-trigger', + '@button', + '@divider', + '@select', + '@typography'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/sticky_groups.tsx', 'en'); @@ -755,7 +838,12 @@ test.describe(`${TAG.VISUAL} `, () => { for (const size of ['m', 'l'] as const) { test(`Verify nothing-found status appearance with size ${size}`, { - tag: [TAG.PRIORITY_MEDIUM, '@dropdown-menu'], + tag: [ + TAG.PRIORITY_MEDIUM, + '@dropdown-menu', + '@button', + '@select', + ], }, async ({ page }) => { await loadPage(page, statusItemStory, 'en', { showSearch: true, size }); @@ -782,7 +870,8 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify mouse interactions with Base dropdown menu', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@dropdown-menu'], + '@dropdown-menu', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/basic.tsx', 'en'); @@ -825,7 +914,8 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify keyboard interactions with Base dropdown menu', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@dropdown-menu'], + '@dropdown-menu', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/basic.tsx', 'en'); @@ -881,6 +971,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@dropdown-menu', + '@button', + '@link', + '@spin-container', + '@typography', '@notice'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/dropdown-menu.tsx', 'en'); @@ -927,7 +1021,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify Keyboard interaction when items with action buttons', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/item_actions.tsx', 'en'); @@ -1056,7 +1153,12 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify Keyboard interaction in nested menus with focusable elements', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button', + '@divider', + '@input-number'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/nested_with_focusable.tsx', 'en'); @@ -1126,7 +1228,12 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify mouse interaction in nested menus with focusable elements', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button', + '@divider', + '@input-number'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/nested_with_focusable.tsx', 'en'); @@ -1164,7 +1271,8 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify Keyboard interaction when On Visible controlled', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/on-visible-2nd.tsx', 'en'); @@ -1186,7 +1294,8 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify mouse interaction when On Visible controlled', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@dropdown-menu'], + '@dropdown-menu', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/on-visible-2nd.tsx', 'en'); @@ -1201,7 +1310,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify Selectable radio keyboard interaction', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/selectable_radio_items.tsx', 'en'); @@ -1283,7 +1395,8 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify Multiselect items keyboard interaction', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/multiselect_items.tsx', 'en'); @@ -1328,7 +1441,8 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify Multiselect items mouse interaction', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@dropdown-menu'], + '@dropdown-menu', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/docs/examples/multiselect_items.tsx', 'en'); @@ -1367,26 +1481,39 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify Items render in DD with Virtual scroll ', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@base-trigger', + '@button-trigger', + '@button', + '@divider', + '@select', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/advanced/examples/project-selector.tsx', 'en', { visibleItems: 10 }); await page.keyboard.press('Tab'); await page.keyboard.press('Enter'); - await locators.menuitemradio(page, 'project 38').waitFor({ state: 'visible' }); - await expect(page.getByText('project 38').first()).toBeVisible(); + await scrollVirtualMenuToItem(page, 36); + await locators.menuitemradio(page, 'project 36').waitFor({ state: 'visible' }); + await expect(page.getByText('project 36').first()).toBeVisible(); + await locators.menuitemradio(page, 'project 33').focus(); await pressKeyMultipleTimes(page, 'ArrowUp', 40); await expect(locators.menuitemradio(page, 'project 0')).toBeFocused(); await page.keyboard.press('Enter'); - await locators.menuitemradio(page, 'project 10').waitFor({ state: 'visible' }); - await expect(page.getByText('project 10').first()).toBeVisible(); + await locators.menuitemradio(page, 'project 9').waitFor({ state: 'visible' }); + await expect(page.getByText('project 9').first()).toBeVisible(); }); test('Verify Focus on input search when menu opened by keyboard ', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-trigger', + '@filter-trigger', + '@select'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/test-with-content-on-page.tsx', 'en'); @@ -1401,7 +1528,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify Focus on input search when menu opened by mouse ', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@dropdown-menu'], + '@dropdown-menu', + '@base-trigger', + '@filter-trigger', + '@select'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/test-with-content-on-page.tsx', 'en'); @@ -1416,7 +1546,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify focus order', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@counter', + '@ellipsis', + '@input-tags', + '@typography'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/dropdown-menu/advanced/examples/input_tags_trigger.tsx', 'en'); @@ -1454,7 +1590,11 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify focus when all items disabled by keyboard', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button', + '@divider'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/dropdown-base-props.tsx', 'en', { size: 'm', @@ -1478,7 +1618,11 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify focus skips first disabled item by keyboard', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button', + '@divider'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/dropdown-base-props.tsx', 'en', { size: 'm', @@ -1502,7 +1646,11 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify focus skips first disabled item by mouse and arrow', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button', + '@divider'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/dropdown-base-props.tsx', 'en', { size: 'm', @@ -1521,7 +1669,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify focus when all items disabled in multiselect by keyboard', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/multiselect-props.tsx', 'en', { size: 'm', @@ -1550,7 +1701,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify focus when all items disabled in selectable by keyboard', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/selectable-props.tsx', 'en', { size: 'm', @@ -1589,7 +1743,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify ArrowUp reaches all enabled selectable items when first items are disabled', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/selectable-props.tsx', 'en', { size: 'm', @@ -1648,7 +1805,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify arrows skip disabled last selectable item', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/selectable-props.tsx', 'en', { size: 'm', @@ -1684,7 +1844,10 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify focus skips first disabled item in nested menu', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@dropdown-menu'], + '@dropdown-menu', + '@base-components', + '@flex-box', + '@button'], }, async ({ page }) => { await loadPage(page, 'stories/components/dropdown-menu/tests/examples/nested-menu-props.tsx', 'en', { size: 'm', @@ -1735,7 +1898,14 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }; test('Verify screen-reader result count when items are found', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, TAG.ACCESSIBILITY, '@dropdown-menu'], + tag: [ + TAG.PRIORITY_HIGH, + TAG.MOUSE, + TAG.ACCESSIBILITY, + '@dropdown-menu', + '@button', + '@select', + ], }, async ({ page }) => { await loadPage(page, statusItemStory, 'en', { showSearch: true }); @@ -1753,7 +1923,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify visible "Nothing found" when no items match', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@dropdown-menu'], + tag: [ + TAG.PRIORITY_HIGH, + TAG.MOUSE, + '@dropdown-menu', + '@button', + '@select', + ], }, async ({ page }) => { await loadPage(page, statusItemStory, 'en', { showSearch: true }); @@ -1770,7 +1946,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify loading state text is shown', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@dropdown-menu'], + tag: [ + TAG.PRIORITY_MEDIUM, + TAG.MOUSE, + '@dropdown-menu', + '@button', + '@select', + ], }, async ({ page }) => { await loadPage(page, statusItemStory, 'en', { showSearch: true, state: 'loading' }); @@ -1784,7 +1966,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify error state text is shown', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@dropdown-menu'], + tag: [ + TAG.PRIORITY_MEDIUM, + TAG.MOUSE, + '@dropdown-menu', + '@button', + '@select', + ], }, async ({ page }) => { await loadPage(page, statusItemStory, 'en', { showSearch: true, state: 'error' }); @@ -1800,7 +1988,13 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify custom children override the default status text', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@dropdown-menu'], + tag: [ + TAG.PRIORITY_MEDIUM, + TAG.MOUSE, + '@dropdown-menu', + '@button', + '@select', + ], }, async ({ page }) => { await loadPage(page, statusItemStory, 'en', { showSearch: true, diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-chromium-linux.png index a12c20585c..fa0fbb6bd6 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-firefox-linux.png index 6f4806c703..413ea19d89 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-webkit-linux.png index fc9c73e249..f99f3c8af4 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-chromium-linux.png index fd968a5f0a..8f42b6243a 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-firefox-linux.png index a7d8c348b8..20df14b97b 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-webkit-linux.png index 20af93e05e..6cb5e8e40e 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-keyboard-interactions-with-menu-with-sticky-groups-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-keyboard-interactions-with-menu-with-sticky-groups-1-chromium-linux.png index 06fc04da18..3831c59033 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-keyboard-interactions-with-menu-with-sticky-groups-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-keyboard-interactions-with-menu-with-sticky-groups-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-keyboard-interactions-with-menu-with-sticky-groups-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-keyboard-interactions-with-menu-with-sticky-groups-1-firefox-linux.png index 455ee53173..46f9fc9507 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-keyboard-interactions-with-menu-with-sticky-groups-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-keyboard-interactions-with-menu-with-sticky-groups-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-keyboard-interactions-with-menu-with-sticky-groups-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-keyboard-interactions-with-menu-with-sticky-groups-1-webkit-linux.png index b25a65e49a..c62b177787 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-keyboard-interactions-with-menu-with-sticky-groups-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-keyboard-interactions-with-menu-with-sticky-groups-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-1-chromium-linux.png index ac0d9b0096..e2d0d19c13 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-1-firefox-linux.png index cb5c085299..de08f222eb 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-1-webkit-linux.png index 4b37dc6534..99924cda48 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-2-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-2-chromium-linux.png index 43fbf236a1..9a79e7598a 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-2-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-2-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-2-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-2-firefox-linux.png index 6591a9fa22..40e9694b35 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-2-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-2-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-2-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-2-webkit-linux.png index 6b958b7905..b43ca6396c 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-2-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Sticky-groups-Verify-mouse-interactions-with-menu-with-sticky-groups-2-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-1-chromium-linux.png index 49026a2fa0..b7d6761207 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-1-firefox-linux.png index 3e8dfddbb9..dfa0e4d601 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-1-webkit-linux.png index 164be80a48..0b552d94c9 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-2-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-2-chromium-linux.png index 2e69876cab..dfcd4487fb 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-2-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-2-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-2-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-2-firefox-linux.png index 5ab109b349..113b38eec9 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-2-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-2-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-2-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-2-webkit-linux.png index caff5418b1..d2612614d1 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-2-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-and-Hint-on-DD-menu-2-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Multiselect-items-focus-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Multiselect-items-focus-1-chromium-linux.png index 06217eb715..1df9847d2e 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Multiselect-items-focus-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Multiselect-items-focus-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Multiselect-items-focus-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Multiselect-items-focus-1-firefox-linux.png index 129d6aefda..80066ea1c5 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Multiselect-items-focus-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Multiselect-items-focus-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Multiselect-items-focus-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Multiselect-items-focus-1-webkit-linux.png index e63a158287..b6f0477bd1 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Multiselect-items-focus-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Multiselect-items-focus-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Selectable-radio-after-mouse-interaction-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Selectable-radio-after-mouse-interaction-1-chromium-linux.png index b6eaec811f..8e8dacc1c3 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Selectable-radio-after-mouse-interaction-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Selectable-radio-after-mouse-interaction-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Selectable-radio-after-mouse-interaction-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Selectable-radio-after-mouse-interaction-1-firefox-linux.png index b89ec5054f..a6e1a5d681 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Selectable-radio-after-mouse-interaction-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Selectable-radio-after-mouse-interaction-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Selectable-radio-after-mouse-interaction-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Selectable-radio-after-mouse-interaction-1-webkit-linux.png index 1dce661065..91b1b7a797 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Selectable-radio-after-mouse-interaction-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Selectable-radio-after-mouse-interaction-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Virtual-scroll-by-Mouse-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Virtual-scroll-by-Mouse-1-chromium-linux.png index bd779c46fb..babbe61088 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Virtual-scroll-by-Mouse-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Virtual-scroll-by-Mouse-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Virtual-scroll-by-Mouse-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Virtual-scroll-by-Mouse-1-webkit-linux.png index 817bdb8d4b..075d10edf1 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Virtual-scroll-by-Mouse-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-Virtual-scroll-by-Mouse-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png index adb6633b44..8909399928 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png index 1920c9cda1..796c3ee6c7 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png index 77fd8a8743..e2aa76c0cd 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png index 5b0b76ce95..b8e40a889a 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png index cc9559c577..205732d448 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png index 888c91acea..b1578968c6 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png index adb6633b44..8909399928 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png index 1920c9cda1..796c3ee6c7 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png index 77fd8a8743..e2aa76c0cd 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png index 0baeb17bbe..e1b2293a1f 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png index 88ce89bb6b..e74de35509 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png index 3755dde1f2..e1bfc94db5 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png index 3f135d2659..76a4211def 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png index a611fb158d..0c888402cc 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png index 7878df0d43..dd60e0f82f 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png index 5b24412851..f56dc34338 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png index e0a96621f6..61cdc2efd0 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png index b8bab4060e..06f476a3a5 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png index 3f135d2659..76a4211def 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png index a611fb158d..0c888402cc 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png index 7878df0d43..dd60e0f82f 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png index fd6b9daf9d..196e9ba1b7 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png index b4e1235d96..2230c75be8 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png index 6b4cda6968..4f2294bbf3 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-base-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-1-chromium-linux.png index 03c01b50dc..7956e2b6f2 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-1-firefox-linux.png index 88402bf265..456e145a85 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-1-webkit-linux.png index 655d703d1c..5d8a7a216a 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-2-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-2-chromium-linux.png index 25ed3cc158..1d2f6fb146 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-2-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-2-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-2-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-2-firefox-linux.png index 9970c7ebaa..9b45c65929 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-2-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-2-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-2-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-2-webkit-linux.png index 41b6a76d76..1c264803cd 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-2-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-Selectable-radio-2-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-1-chromium-linux.png index cc4ec3398e..15745bcaa5 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-1-firefox-linux.png index ce93d1f7ae..10370d2917 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-1-webkit-linux.png index 64b21fc46e..95f0645324 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-2-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-2-chromium-linux.png index 6eeac56d28..28bd674626 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-2-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-2-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-2-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-2-firefox-linux.png index 4ab957e910..caa6387f1e 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-2-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-2-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-2-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-2-webkit-linux.png index bc9537cd2b..db615e87b4 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-2-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-base-dropdown-menu-2-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-1-chromium-linux.png index f248a7f1a7..ba656d9fe8 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-1-firefox-linux.png index 91f66a0f02..406ef5726a 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-1-webkit-linux.png index 101dde4a82..8c9c91446f 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-2-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-2-chromium-linux.png index 951af62c65..165215d5e7 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-2-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-2-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-2-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-2-firefox-linux.png index 6c1ce244e0..e9a78166b5 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-2-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-2-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-2-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-2-webkit-linux.png index 60e8a46eba..a7394bf93c 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-2-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-2-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-3-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-3-chromium-linux.png index 2cbbe23a01..7618aa091f 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-3-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-3-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-3-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-3-firefox-linux.png index 297c3e280f..c768fad22e 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-3-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-3-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-3-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-3-webkit-linux.png index 04dafbe647..272ef9e135 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-3-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-3-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-4-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-4-chromium-linux.png index 96a842a3a9..1f236a6ece 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-4-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-4-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-4-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-4-firefox-linux.png index 96a98c77a1..349b1a089b 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-4-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-4-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-4-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-4-webkit-linux.png index ab79d61ed4..c7f476b4bc 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-4-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-on-dropdown-menu-with-actions-in-items-4-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-when-notice-and-interactive-item-in-menu-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-when-notice-and-interactive-item-in-menu-1-chromium-linux.png index 344b718057..4f561ca52d 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-when-notice-and-interactive-item-in-menu-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-when-notice-and-interactive-item-in-menu-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-when-notice-and-interactive-item-in-menu-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-when-notice-and-interactive-item-in-menu-1-firefox-linux.png index 3656cebde1..8b58eb1a95 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-when-notice-and-interactive-item-in-menu-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-when-notice-and-interactive-item-in-menu-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-when-notice-and-interactive-item-in-menu-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-when-notice-and-interactive-item-in-menu-1-webkit-linux.png index d15906d650..a60cb949fd 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-when-notice-and-interactive-item-in-menu-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-focus-when-notice-and-interactive-item-in-menu-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-menu-items-types-with-badges-icons-and-other-content-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-menu-items-types-with-badges-icons-and-other-content-1-chromium-linux.png index b7b08ee4c6..1633b8880f 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-menu-items-types-with-badges-icons-and-other-content-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-menu-items-types-with-badges-icons-and-other-content-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-menu-items-types-with-badges-icons-and-other-content-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-menu-items-types-with-badges-icons-and-other-content-1-firefox-linux.png index c59e04a7da..62ee32cbb6 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-menu-items-types-with-badges-icons-and-other-content-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-menu-items-types-with-badges-icons-and-other-content-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-menu-items-types-with-badges-icons-and-other-content-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-menu-items-types-with-badges-icons-and-other-content-1-webkit-linux.png index ccfdc9553a..d45951d24c 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-menu-items-types-with-badges-icons-and-other-content-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-menu-items-types-with-badges-icons-and-other-content-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png index 5265cf6fa1..c85f928386 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png index 799d345f3d..4387014b47 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png index 24ee79852a..f272e3b963 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png index 8d38a410be..e5aac65632 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png index 6fe4327ac7..371e0a131c 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png index 537e9e387c..b88a449fd3 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png index 5265cf6fa1..c85f928386 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png index 799d345f3d..4387014b47 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png index 24ee79852a..f272e3b963 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png index f0e633f5b3..0b9a919740 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png index 947d48a465..daa93922f8 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png index ad00fedc15..63de079602 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-l-disabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png index 6fa1a5afa7..e6938595b2 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png index e62b53660c..a334883cdb 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png index f1cef7306e..cecfc6ab00 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png index e3c88b5347..6ca5127d36 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png index c794d240f3..6cbeb25554 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png index 6f9705f8cd..53af741a48 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png index 6fa1a5afa7..e6938595b2 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png index e62b53660c..a334883cdb 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png index f1cef7306e..cecfc6ab00 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png index 3bb7a7a208..17c193878e 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png index b1f8b54927..b43fd049a2 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png index cbc81de60d..98eea6057e 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-multiselect-dropdown-with-size-m-disabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-654bb-sabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-654bb-sabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png index 49e592bdb5..66e9ea29d8 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-654bb-sabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-654bb-sabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-654bb-sabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-654bb-sabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png index dff9cda5f1..8040db3132 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-654bb-sabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-654bb-sabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-654bb-sabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-654bb-sabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png index a698748b60..188afff591 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-654bb-sabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-654bb-sabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-b70c0-sabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-b70c0-sabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png index 7fdef9ed6b..86adf27b32 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-b70c0-sabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-b70c0-sabledAll-true-stretch-undefined-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-b70c0-sabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-b70c0-sabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png index 504280396c..af3d4a3431 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-b70c0-sabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-b70c0-sabledAll-true-stretch-undefined-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-b70c0-sabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-b70c0-sabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png index 679bbc86f8..9fc5158651 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-b70c0-sabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-b70c0-sabledAll-true-stretch-undefined-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png index 476ff0ade4..aad20dc4f7 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png index 9266e55461..a8df8834c6 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png index 39c25950fd..c6d1d1bf1d 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png index f3d14c6c22..8c742549b2 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png index 3dff9e99d3..c353784807 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png index 8179d4c45b..5c48c20681 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png index 476ff0ade4..aad20dc4f7 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png index 9266e55461..a8df8834c6 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png index 39c25950fd..c6d1d1bf1d 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-l-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png index da43de6e93..a66f06e945 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png index 248a0edca0..72e4b55708 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png index 38b72dc0a8..ca2cc9351e 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-false-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png index dc2c083074..97c4f2078f 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png index 2184b530e7..b48e8131a6 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png index 9c7d134b8c..eeaa58a9ef 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-fixed-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png index da43de6e93..a66f06e945 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png index 248a0edca0..72e4b55708 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-firefox-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png index 38b72dc0a8..ca2cc9351e 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-selectable-radio-dropdown-with-size-m-disabledAll-false-stretch-min-visible-true-1-webkit-linux.png differ diff --git a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-virtual-scroll-by-keyboard-1-chromium-linux.png b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-virtual-scroll-by-keyboard-1-chromium-linux.png index 8da5293b50..bfa154e58a 100644 Binary files a/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-virtual-scroll-by-keyboard-1-chromium-linux.png and b/semcore/dropdown-menu/__tests__/dropdown-menu.browser-test.tsx-snapshots/-visual-Verify-virtual-scroll-by-keyboard-1-chromium-linux.png differ diff --git a/semcore/dropdown-menu/src/DropdownMenu.jsx b/semcore/dropdown-menu/src/DropdownMenu.jsx index 8c3b7498fe..7ea55290a5 100644 --- a/semcore/dropdown-menu/src/DropdownMenu.jsx +++ b/semcore/dropdown-menu/src/DropdownMenu.jsx @@ -570,6 +570,7 @@ const DropdownMenu = createComponent( Item: [Item, { Addon, Content: ItemContent, Text: ItemContentText, Hint: ItemHint }], Group: Dropdown.Group, StatusItem: Dropdown.StatusItem, + Notice: Dropdown.Notice, }, { parent: [Dropdown], diff --git a/semcore/dropdown-menu/src/index.d.ts b/semcore/dropdown-menu/src/index.d.ts index 815edb7e61..ff676b19f1 100644 --- a/semcore/dropdown-menu/src/index.d.ts +++ b/semcore/dropdown-menu/src/index.d.ts @@ -7,6 +7,7 @@ import type { DropdownTriggerProps, DropdownPopperAriaProps, StatusItemComponent, + DropdownNoticeComponent, } from '@semcore/dropdown'; import type Dropdown from '@semcore/dropdown'; import type { NSText } from '@semcore/typography'; @@ -154,8 +155,8 @@ declare const DropdownMenu: Intergalactic.Component< }; Group: typeof Dropdown.Group; - StatusItem: StatusItemComponent; + Notice: DropdownNoticeComponent; VirtualList: typeof VirtualList; diff --git a/semcore/dropdown-menu/src/style/dropdown-menu.shadow.css b/semcore/dropdown-menu/src/style/dropdown-menu.shadow.css index 6f3453c496..733395b97c 100644 --- a/semcore/dropdown-menu/src/style/dropdown-menu.shadow.css +++ b/semcore/dropdown-menu/src/style/dropdown-menu.shadow.css @@ -1,6 +1,6 @@ SDropdownMenuList { - max-height: 240px; - padding: var(--intergalactic-spacing-1x, 4px) 0; + max-height: 246px; + padding: var(--intergalactic-spacing-content-padding-xsmall, 4px) 0; position: relative; min-height: 26px; min-width: 32px; @@ -29,6 +29,10 @@ SDropdownMenuList { } } +SDropdownMenuList[size='l'] { + max-height: 306px; +} + SDropdownMenuItemContainer { SItemContent:focus-visible { outline: none; @@ -42,11 +46,13 @@ SDropdownMenuItemContainer[nesting-trigger] { SDropdownMenuItemAddon, SItemContentText { display: inline-flex; /* todo: Brauer Ilia - why? should be changed to inline/inline-block for SItemContentText */ - margin-left: var(--intergalactic-spacing-1x, 4px); - margin-right: var(--intergalactic-spacing-1x, 4px); + + margin-left: var(--intergalactic-spacing-content-gap-small, 4px); + margin-right: var(--intergalactic-spacing-content-gap-small, 4px); &:first-child { margin-left: 0; + margin-right: var(--intergalactic-spacing-content-gap-medium, 6px); } &:last-child { diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-and-stretch-min-1-chromium-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-and-stretch-min-1-chromium-linux.png index 82457655b0..f997193c05 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-and-stretch-min-1-chromium-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-and-stretch-min-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-and-stretch-min-1-firefox-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-and-stretch-min-1-firefox-linux.png index da43d621fb..2b0e19185a 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-and-stretch-min-1-firefox-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-and-stretch-min-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-and-stretch-min-1-webkit-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-and-stretch-min-1-webkit-linux.png index 405844e3b9..69d13be21f 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-and-stretch-min-1-webkit-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-and-stretch-min-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-end-and-stretch-false-1-chromium-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-end-and-stretch-false-1-chromium-linux.png index bc2d5a79d0..a6428cf4e8 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-end-and-stretch-false-1-chromium-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-end-and-stretch-false-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-end-and-stretch-false-1-firefox-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-end-and-stretch-false-1-firefox-linux.png index bab21bf9a6..a81de913d5 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-end-and-stretch-false-1-firefox-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-end-and-stretch-false-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-end-and-stretch-false-1-webkit-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-end-and-stretch-false-1-webkit-linux.png index 237302ff30..d899e0fd58 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-end-and-stretch-false-1-webkit-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-end-and-stretch-false-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-start-and-stretch-fixed-1-chromium-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-start-and-stretch-fixed-1-chromium-linux.png index e37d8480cb..0e6362ef8a 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-start-and-stretch-fixed-1-chromium-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-start-and-stretch-fixed-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-start-and-stretch-fixed-1-firefox-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-start-and-stretch-fixed-1-firefox-linux.png index 10a6d83839..3a40bbac1d 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-start-and-stretch-fixed-1-firefox-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-start-and-stretch-fixed-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-start-and-stretch-fixed-1-webkit-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-start-and-stretch-fixed-1-webkit-linux.png index aea0f5c8de..bf72262f22 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-start-and-stretch-fixed-1-webkit-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-auto-start-and-stretch-fixed-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-and-stretch-min-1-chromium-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-and-stretch-min-1-chromium-linux.png index 1ca1a97068..7c49f26a4d 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-and-stretch-min-1-chromium-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-and-stretch-min-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-and-stretch-min-1-firefox-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-and-stretch-min-1-firefox-linux.png index fca28155cc..7e8c9d8dc0 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-and-stretch-min-1-firefox-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-and-stretch-min-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-and-stretch-min-1-webkit-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-and-stretch-min-1-webkit-linux.png index 3264042cf3..d8eca6c5c2 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-and-stretch-min-1-webkit-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-and-stretch-min-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-end-and-stretch-false-1-chromium-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-end-and-stretch-false-1-chromium-linux.png index 235da29d6c..414240524e 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-end-and-stretch-false-1-chromium-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-end-and-stretch-false-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-end-and-stretch-false-1-firefox-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-end-and-stretch-false-1-firefox-linux.png index 97af81669e..fdfc17e2eb 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-end-and-stretch-false-1-firefox-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-end-and-stretch-false-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-end-and-stretch-false-1-webkit-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-end-and-stretch-false-1-webkit-linux.png index c55e7a63a0..a88c403fcd 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-end-and-stretch-false-1-webkit-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-end-and-stretch-false-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-start-and-stretch-fixed-1-chromium-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-start-and-stretch-fixed-1-chromium-linux.png index cddc192d97..f5266762dc 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-start-and-stretch-fixed-1-chromium-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-start-and-stretch-fixed-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-start-and-stretch-fixed-1-firefox-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-start-and-stretch-fixed-1-firefox-linux.png index fea7da74bc..68be4deb4a 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-start-and-stretch-fixed-1-firefox-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-start-and-stretch-fixed-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-start-and-stretch-fixed-1-webkit-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-start-and-stretch-fixed-1-webkit-linux.png index ff75d93a31..a070746f10 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-start-and-stretch-fixed-1-webkit-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-bottom-start-and-stretch-fixed-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-and-stretch-min-1-chromium-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-and-stretch-min-1-chromium-linux.png index 97f527e54a..20e0317261 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-and-stretch-min-1-chromium-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-and-stretch-min-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-and-stretch-min-1-firefox-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-and-stretch-min-1-firefox-linux.png index 2f67eec7a2..2fbef3e474 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-and-stretch-min-1-firefox-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-and-stretch-min-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-and-stretch-min-1-webkit-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-and-stretch-min-1-webkit-linux.png index 63f2cdc577..bced5885e1 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-and-stretch-min-1-webkit-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-and-stretch-min-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-end-and-stretch-false-1-chromium-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-end-and-stretch-false-1-chromium-linux.png index 8c6677cfee..03bbe327fe 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-end-and-stretch-false-1-chromium-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-end-and-stretch-false-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-end-and-stretch-false-1-firefox-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-end-and-stretch-false-1-firefox-linux.png index 6ea88fe730..c4bb869d97 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-end-and-stretch-false-1-firefox-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-end-and-stretch-false-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-end-and-stretch-false-1-webkit-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-end-and-stretch-false-1-webkit-linux.png index f792e5e6f9..443e1e82ef 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-end-and-stretch-false-1-webkit-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-end-and-stretch-false-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-start-and-stretch-fixed-1-chromium-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-start-and-stretch-fixed-1-chromium-linux.png index 0aacde4d3a..5b96391d1d 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-start-and-stretch-fixed-1-chromium-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-start-and-stretch-fixed-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-start-and-stretch-fixed-1-firefox-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-start-and-stretch-fixed-1-firefox-linux.png index 1b63cfa91b..d9a9b2c3df 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-start-and-stretch-fixed-1-firefox-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-start-and-stretch-fixed-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-start-and-stretch-fixed-1-webkit-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-start-and-stretch-fixed-1-webkit-linux.png index a0f424bb5c..ab5e89a687 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-start-and-stretch-fixed-1-webkit-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-left-start-and-stretch-fixed-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-and-stretch-min-1-chromium-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-and-stretch-min-1-chromium-linux.png index 5e562b2b9c..bda7d4347e 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-and-stretch-min-1-chromium-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-and-stretch-min-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-and-stretch-min-1-firefox-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-and-stretch-min-1-firefox-linux.png index 25192a3507..ef1ed1bcf5 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-and-stretch-min-1-firefox-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-and-stretch-min-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-and-stretch-min-1-webkit-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-and-stretch-min-1-webkit-linux.png index 45bc6df2b3..12c143013e 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-and-stretch-min-1-webkit-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-and-stretch-min-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-end-and-stretch-false-1-chromium-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-end-and-stretch-false-1-chromium-linux.png index 97289967fb..66875542a7 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-end-and-stretch-false-1-chromium-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-end-and-stretch-false-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-end-and-stretch-false-1-firefox-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-end-and-stretch-false-1-firefox-linux.png index cbe94cbf92..f46f911e53 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-end-and-stretch-false-1-firefox-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-end-and-stretch-false-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-end-and-stretch-false-1-webkit-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-end-and-stretch-false-1-webkit-linux.png index 7b645536ba..171b61135a 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-end-and-stretch-false-1-webkit-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-end-and-stretch-false-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-start-and-stretch-fixed-1-chromium-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-start-and-stretch-fixed-1-chromium-linux.png index 67d9ba5552..8003020f47 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-start-and-stretch-fixed-1-chromium-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-start-and-stretch-fixed-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-start-and-stretch-fixed-1-firefox-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-start-and-stretch-fixed-1-firefox-linux.png index e3fae3608b..6874503bf5 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-start-and-stretch-fixed-1-firefox-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-start-and-stretch-fixed-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-start-and-stretch-fixed-1-webkit-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-start-and-stretch-fixed-1-webkit-linux.png index 108c53f986..a1ec4939d6 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-start-and-stretch-fixed-1-webkit-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-right-start-and-stretch-fixed-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-and-stretch-min-1-chromium-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-and-stretch-min-1-chromium-linux.png index 2a5d3a7e5a..e62b327979 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-and-stretch-min-1-chromium-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-and-stretch-min-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-and-stretch-min-1-firefox-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-and-stretch-min-1-firefox-linux.png index 67d0145d5e..07f55fa2e6 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-and-stretch-min-1-firefox-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-and-stretch-min-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-and-stretch-min-1-webkit-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-and-stretch-min-1-webkit-linux.png index 03637dbb22..276efbe54d 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-and-stretch-min-1-webkit-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-and-stretch-min-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-end-and-stretch-false-1-chromium-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-end-and-stretch-false-1-chromium-linux.png index b2d9901a1e..608b4d5f64 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-end-and-stretch-false-1-chromium-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-end-and-stretch-false-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-end-and-stretch-false-1-firefox-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-end-and-stretch-false-1-firefox-linux.png index f6878c8a1b..410ceb4fbf 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-end-and-stretch-false-1-firefox-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-end-and-stretch-false-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-end-and-stretch-false-1-webkit-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-end-and-stretch-false-1-webkit-linux.png index 9bc2331c21..a3304699b4 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-end-and-stretch-false-1-webkit-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-end-and-stretch-false-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-start-and-stretch-fixed-1-chromium-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-start-and-stretch-fixed-1-chromium-linux.png index dece3c0f81..7767f5c198 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-start-and-stretch-fixed-1-chromium-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-start-and-stretch-fixed-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-start-and-stretch-fixed-1-firefox-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-start-and-stretch-fixed-1-firefox-linux.png index 13f6d39ca1..46b81785ae 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-start-and-stretch-fixed-1-firefox-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-start-and-stretch-fixed-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-start-and-stretch-fixed-1-webkit-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-start-and-stretch-fixed-1-webkit-linux.png index 8df1433e71..07c9b0f1a9 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-start-and-stretch-fixed-1-webkit-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-when-placement-top-start-and-stretch-fixed-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-with-offSet-1-chromium-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-with-offSet-1-chromium-linux.png index cc2ed53098..54e987ceaa 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-with-offSet-1-chromium-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-with-offSet-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-with-offSet-1-firefox-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-with-offSet-1-firefox-linux.png index a96bd6a223..0ff15b4960 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-with-offSet-1-firefox-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-with-offSet-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-with-offSet-1-webkit-linux.png b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-with-offSet-1-webkit-linux.png index 6016fbe3a2..3f71215495 100644 Binary files a/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-with-offSet-1-webkit-linux.png and b/semcore/dropdown/__tests__/dropdown.browser-test.tsx-snapshots/-visual-Verify-Dropdown-with-offSet-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-1-chromium-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-1-chromium-linux.png index 10d3e5d61a..9550ba63f1 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-1-chromium-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-1-firefox-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-1-firefox-linux.png index 0be7501d6e..1d35f5e568 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-1-firefox-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-1-webkit-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-1-webkit-linux.png index 7c85c60c75..6c695860f1 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-1-webkit-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-2-chromium-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-2-chromium-linux.png index e0e5e5f25a..35eedccbbd 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-2-chromium-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-2-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-2-firefox-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-2-firefox-linux.png index c7f2d3a942..b518e56d1e 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-2-firefox-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-2-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-2-webkit-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-2-webkit-linux.png index 7d5f63e9ee..8a757a71a4 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-2-webkit-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-2-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-3-chromium-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-3-chromium-linux.png index 1f0cddabf4..69dd3ceb51 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-3-chromium-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-3-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-3-firefox-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-3-firefox-linux.png index 0e0d573e6e..b91d644cba 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-3-firefox-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-3-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-3-webkit-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-3-webkit-linux.png index 0f0a1c52a4..67b8c65c9c 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-3-webkit-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-3-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-4-chromium-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-4-chromium-linux.png index ae31d2b97e..2bc6f3ea6e 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-4-chromium-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-4-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-4-firefox-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-4-firefox-linux.png index 3e35cd029c..c97b88b165 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-4-firefox-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-4-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-4-webkit-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-4-webkit-linux.png index 0bbc505dfc..52144fc50f 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-4-webkit-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/advanced-filters.browser-test.tsx-snapshots/-visual-Verify-advanced-filters-visual-4-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-1-chromium-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-1-chromium-linux.png index b0a284467c..82bc940fc9 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-1-chromium-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-1-firefox-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-1-firefox-linux.png index 39fca9f0b6..60fa37454a 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-1-firefox-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-1-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-1-webkit-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-1-webkit-linux.png index 08f4d74358..9b04cda1eb 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-1-webkit-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-1-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-2-chromium-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-2-chromium-linux.png index 9ddde21178..637190df07 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-2-chromium-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-2-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-2-firefox-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-2-firefox-linux.png index 666780b828..5d0e10c5f9 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-2-firefox-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-2-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-2-webkit-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-2-webkit-linux.png index 8513c774fe..bc49e9c3b8 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-2-webkit-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-2-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-3-chromium-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-3-chromium-linux.png index c858250205..43e21c72bc 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-3-chromium-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-3-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-3-firefox-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-3-firefox-linux.png index d6eb911acb..bf32bd16fd 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-3-firefox-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-3-firefox-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-3-webkit-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-3-webkit-linux.png index 1e4a097138..eb131307a3 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-3-webkit-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/competitive-density.browser-test.tsx-snapshots/-visual-Verify-Competitive-density-pattern-3-webkit-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/filter-include-exclude.browser-test.tsx-snapshots/-visual-Verify-Filters-include-exclude-1-chromium-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/filter-include-exclude.browser-test.tsx-snapshots/-visual-Verify-Filters-include-exclude-1-chromium-linux.png index 55135d7c53..5f6859d1ca 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/filter-include-exclude.browser-test.tsx-snapshots/-visual-Verify-Filters-include-exclude-1-chromium-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/filter-include-exclude.browser-test.tsx-snapshots/-visual-Verify-Filters-include-exclude-1-chromium-linux.png differ diff --git a/semcore/dropdown/__tests__/filters-with-dropdown/filter-include-exclude.browser-test.tsx-snapshots/-visual-Verify-Filters-include-exclude-2-chromium-linux.png b/semcore/dropdown/__tests__/filters-with-dropdown/filter-include-exclude.browser-test.tsx-snapshots/-visual-Verify-Filters-include-exclude-2-chromium-linux.png index 456536f03d..632717ffbf 100644 Binary files a/semcore/dropdown/__tests__/filters-with-dropdown/filter-include-exclude.browser-test.tsx-snapshots/-visual-Verify-Filters-include-exclude-2-chromium-linux.png and b/semcore/dropdown/__tests__/filters-with-dropdown/filter-include-exclude.browser-test.tsx-snapshots/-visual-Verify-Filters-include-exclude-2-chromium-linux.png differ diff --git a/semcore/dropdown/package.json b/semcore/dropdown/package.json index 25446d3b97..6d1302a961 100644 --- a/semcore/dropdown/package.json +++ b/semcore/dropdown/package.json @@ -17,7 +17,8 @@ "require": "./lib/cjs/index.js" }, "dependencies": { - "@semcore/typography": "^17.2.1" + "@semcore/typography": "^17.2.1", + "@semcore/notice": "^17.2.2" }, "peerDependencies": { "@semcore/base-components": "^17.2.1" diff --git a/semcore/dropdown/src/Dropdown.jsx b/semcore/dropdown/src/Dropdown.jsx index 942cbe801c..5a5aed417b 100644 --- a/semcore/dropdown/src/Dropdown.jsx +++ b/semcore/dropdown/src/Dropdown.jsx @@ -7,6 +7,7 @@ import { hasFocusableIn } from '@semcore/core/lib/utils/use/useFocusLock'; import React from 'react'; import { DropdownItem } from './DropdownItem'; +import { DropdownNotice } from './Notice'; import { StatusItem } from './StatusItem'; import style from './style/dropdown.shadow.css'; import { localizedMessages } from './translations/__intergalactic-dynamic-locales'; @@ -212,6 +213,7 @@ const Dropdown = createComponent( Item: DropdownItem, Group: DropdownGroup, StatusItem, + Notice: DropdownNotice, }, { parent: Popper, diff --git a/semcore/dropdown/src/Notice.tsx b/semcore/dropdown/src/Notice.tsx new file mode 100644 index 0000000000..b057cf9a5d --- /dev/null +++ b/semcore/dropdown/src/Notice.tsx @@ -0,0 +1,25 @@ +import { Component, createComponent, Root, sstyled } from '@semcore/core'; +import Notice, { type NSNotice } from '@semcore/notice'; +import React from 'react'; + +import style from './style/dropdownNotice.shadow.css'; + +class DropdownNoticeRoot extends Component { + static displayName = 'Notice'; + static style = style; + + render() { + const { styles } = this.asProps; + const SDropdownNotice = Root; + return sstyled(styles)(); + } +} + +export const DropdownNotice = createComponent(DropdownNoticeRoot, { + Label: Notice.Label, + Title: Notice.Title, + Text: Notice.Text, + Actions: Notice.Actions, + Content: Notice.Content, + Close: Notice.Close, +}, { parent: Notice }); diff --git a/semcore/dropdown/src/StatusItem.tsx b/semcore/dropdown/src/StatusItem.tsx index e207d31def..6836081fa4 100644 --- a/semcore/dropdown/src/StatusItem.tsx +++ b/semcore/dropdown/src/StatusItem.tsx @@ -38,7 +38,8 @@ class StatusItemRoot extends Component< render={Text} tag='div' key='StatusItem' - p={size === 'l' ? 3 : 2} + px={3} + py={size === 'l' ? 3 : 2} use:size={size === 'l' ? 300 : 200} use='secondary' > diff --git a/semcore/dropdown/src/index.d.ts b/semcore/dropdown/src/index.d.ts index f9c15cfda1..835f180f8b 100644 --- a/semcore/dropdown/src/index.d.ts +++ b/semcore/dropdown/src/index.d.ts @@ -1,5 +1,6 @@ import type { NSBox, NSPopper } from '@semcore/base-components'; import type { Intergalactic, PropGetterFn } from '@semcore/core'; +import type Notice from '@semcore/notice'; import type React from 'react'; export type DropdownProps = NSPopper.Props & { @@ -64,6 +65,8 @@ export type DropdownStatusItemProps = { export type StatusItemComponent = Intergalactic.Component<'div', DropdownStatusItemProps>; +export type DropdownNoticeComponent = typeof Notice; + declare const Dropdown: Intergalactic.Component< 'div', DropdownProps, @@ -80,6 +83,7 @@ declare const Dropdown: Intergalactic.Component< Item: Intergalactic.Component; Group: Intergalactic.Component<'div', DropdownGroupProps>; StatusItem: StatusItemComponent; + Notice: DropdownNoticeComponent; }; export default Dropdown; diff --git a/semcore/dropdown/src/style/dropdown.shadow.css b/semcore/dropdown/src/style/dropdown.shadow.css index c39f012ddb..a121a22112 100644 --- a/semcore/dropdown/src/style/dropdown.shadow.css +++ b/semcore/dropdown/src/style/dropdown.shadow.css @@ -14,20 +14,25 @@ SDropdownPopper { text-decoration: none; box-sizing: border-box; cursor: pointer; - width: 100%; text-align: left; line-height: normal; outline: none; } - + SDropdownItem:not(button) { + width: 100%; color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); &:hover { - background-color: var(--intergalactic-dropdown-menu-item-hover, oklch(0.177 0.033 175.6 / 0.028)); + background-color: var(--intergalactic-dropdown-menu-item-hover, oklch(0.177 0.033 175.6 / 0.042)); } } + SDropdownItem[size='l'] SDropdownItem:is(button) { + width: 24px; + height: 24px; + } + SDropdownItem[isMenuItemCheckbox] { &::before, @@ -36,7 +41,7 @@ SDropdownPopper { position: absolute; border: 1px solid; border-radius: var(--intergalactic-addon-rounded, 4px); - box-sizing: content-box; + box-sizing: border-box; } &::before { @@ -51,13 +56,20 @@ SDropdownPopper { background-position: center center; background-color: var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); border-color: var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); - background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEwIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik04LjI1IDFMNCA1LjI1TDEuNzUgMyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg=='); + } + + &[selected][size='m']::after { + background-image: var(--intergalactic-assets-checkmark-m, url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMiAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAuMzEwNyAyLjE2NzkxTDQuNjQ2NDUgNy44MzIxMkwxLjY4OTM0IDQuODc1MDEiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZT0id2hpdGUiLz48L3N2Zz4=")); + } + + &[selected][size='l']::after { + background-image: var(--intergalactic-assets-checkmark-l, url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxNCAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTIuNCAyLjQ1MjIxTDUuMzA0NCA5LjU0NzgyTDEuNjAwMDEgNS44NDM0MyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==")); } } SDropdownItem[selected]:not(SDropdownItem[isMenuItemCheckbox]) { background-color: var(--intergalactic-dropdown-menu-item-selected, oklch(0.525 0.265 263 / 0.077)); - box-shadow: 2px 0px 0px 0px var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)) inset; + box-shadow: 2px 0px 0px 0px var(--intergalactic-dropdown-menu-item-selected-box-shadow, oklch(0.23 0.01 140)) inset; &:hover { background-color: var(--intergalactic-dropdown-menu-item-selected-hover, oklch(0.52 0.268 263.2 / 0.191)); @@ -87,18 +99,19 @@ SDropdownPopper { SDropdownItem[size='l'] { font-size: var(--intergalactic-fs-300, 16px); line-height: var(--intergalactic-lh-300, 150%); - padding: var(--intergalactic-spacing-2x, 8px) var(--intergalactic-spacing-3x, 12px); + padding: var(--intergalactic-spacing-content-padding-small, 8px) var(--intergalactic-spacing-content-padding-medium, 12px); min-height: 40px; &[isMenuItemCheckbox] { - padding-left: calc(var(--intergalactic-spacing-3x, 12px) * 2 + 16px + 2px); /* padding*2 (parent item and from checkbox to content) + checkboxWidth + border*2 */ + padding-left: calc(var(--intergalactic-spacing-content-padding-medium, 12px) + var(--intergalactic-spacing-5x, 20px) + var(--intergalactic-spacing-content-gap-large, 8px)); + /* padding before + checkbox + padding after */ &::before, &::after { width: 20px; height: 20px; - top: calc(var(--intergalactic-spacing-2x, 8px) - 1px); - left: var(--intergalactic-spacing-3x, 12px); + top: calc(var(--intergalactic-spacing-content-padding-small, 8px) + var(--intergalactic-spacing-05x, 2px)); + left: var(--intergalactic-spacing-content-padding-medium, 12px); } } } @@ -106,18 +119,19 @@ SDropdownPopper { SDropdownItem[size='m'] { font-size: var(--intergalactic-fs-200, 14px); line-height: var(--intergalactic-lh-200, 142%); - padding: calc(var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px)) var(--intergalactic-spacing-2x, 8px); + padding: calc(var(--intergalactic-spacing-content-padding-xsmall, 4px) + var(--intergalactic-spacing-05x, 2px)) var(--intergalactic-spacing-content-padding-medium, 12px); min-height: 32px; &[isMenuItemCheckbox] { - padding-left: calc(var(--intergalactic-spacing-2x, 8px) * 2 + 16px + 2px); /* padding*2 (parent item and from checkbox to content) + checkboxWidth + border*2 */ + padding-left: calc(var(--intergalactic-spacing-content-padding-medium, 12px) + var(--intergalactic-spacing-4x, 16px) + var(--intergalactic-spacing-content-gap-medium, 6px)); + /* padding before + checkbox + padding after */ &::before, &::after { width: 16px; height: 16px; - top: calc(var(--intergalactic-spacing-2x, 8px) - 1px); - left: var(--intergalactic-spacing-2x, 8px); + top: var(--intergalactic-spacing-content-padding-small, 8px); + left: var(--intergalactic-spacing-content-padding-medium, 12px); } } } diff --git a/semcore/dropdown/src/style/dropdownNotice.shadow.css b/semcore/dropdown/src/style/dropdownNotice.shadow.css new file mode 100644 index 0000000000..b063a57ace --- /dev/null +++ b/semcore/dropdown/src/style/dropdownNotice.shadow.css @@ -0,0 +1,11 @@ +SDropdownNotice { + padding-top: var(--intergalactic-spacing-content-padding-medium, 12px); + padding-bottom: var(--intergalactic-spacing-content-padding-medium, 12px); + border-left: none; + border-right: none; + border-bottom: none; + border-bottom-left-radius: var(--intergalactic-rounded-small, 4px); + border-bottom-right-radius: var(--intergalactic-rounded-small, 4px); + border-top-left-radius: 0; + border-top-right-radius: 0; +} diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-1-and-tooltip-true-1-chromium-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-1-and-tooltip-true-1-chromium-linux.png index 077031b3a5..3bf99e5045 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-1-and-tooltip-true-1-chromium-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-1-and-tooltip-true-1-chromium-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-1-and-tooltip-true-1-firefox-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-1-and-tooltip-true-1-firefox-linux.png index 6afe2a329b..6b0f0cadfd 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-1-and-tooltip-true-1-firefox-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-1-and-tooltip-true-1-firefox-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-1-and-tooltip-true-1-webkit-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-1-and-tooltip-true-1-webkit-linux.png index e7cf7cdd88..2ef7023477 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-1-and-tooltip-true-1-webkit-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-1-and-tooltip-true-1-webkit-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-2-and-tooltip-undefined-1-chromium-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-2-and-tooltip-undefined-1-chromium-linux.png index e2f357f9ae..54433ef1f6 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-2-and-tooltip-undefined-1-chromium-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-2-and-tooltip-undefined-1-chromium-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-2-and-tooltip-undefined-1-firefox-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-2-and-tooltip-undefined-1-firefox-linux.png index be98bd8dff..b408dc00bc 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-2-and-tooltip-undefined-1-firefox-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-2-and-tooltip-undefined-1-firefox-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-2-and-tooltip-undefined-1-webkit-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-2-and-tooltip-undefined-1-webkit-linux.png index 76ec2081b4..4cfeff4c8a 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-2-and-tooltip-undefined-1-webkit-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-2-and-tooltip-undefined-1-webkit-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-4-and-tooltip-true-1-chromium-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-4-and-tooltip-true-1-chromium-linux.png index a501aa4d46..2be232785f 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-4-and-tooltip-true-1-chromium-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-4-and-tooltip-true-1-chromium-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-4-and-tooltip-true-1-firefox-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-4-and-tooltip-true-1-firefox-linux.png index 830be5fe6e..4fcd00d917 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-4-and-tooltip-true-1-firefox-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-4-and-tooltip-true-1-firefox-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-undefined-and-tooltip-false-1-chromium-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-undefined-and-tooltip-false-1-chromium-linux.png index b2a7bc9830..57d8c3be7a 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-undefined-and-tooltip-false-1-chromium-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-undefined-and-tooltip-false-1-chromium-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-undefined-and-tooltip-false-1-firefox-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-undefined-and-tooltip-false-1-firefox-linux.png index 4ec552aff3..6932239ffe 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-undefined-and-tooltip-false-1-firefox-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-end-maxLine-undefined-and-tooltip-false-1-firefox-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-1-and-tooltip-true-1-chromium-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-1-and-tooltip-true-1-chromium-linux.png index 150458d75e..3f847b7a53 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-1-and-tooltip-true-1-chromium-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-1-and-tooltip-true-1-chromium-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-1-and-tooltip-true-1-firefox-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-1-and-tooltip-true-1-firefox-linux.png index de0f2fe1bd..b2a40f6f5d 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-1-and-tooltip-true-1-firefox-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-1-and-tooltip-true-1-firefox-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-1-and-tooltip-true-1-webkit-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-1-and-tooltip-true-1-webkit-linux.png index 577c84325f..404a456a86 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-1-and-tooltip-true-1-webkit-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-1-and-tooltip-true-1-webkit-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-3-and-tooltip-false-1-chromium-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-3-and-tooltip-false-1-chromium-linux.png index 577cbcd0f6..8ba9219d2a 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-3-and-tooltip-false-1-chromium-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-3-and-tooltip-false-1-chromium-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-3-and-tooltip-false-1-firefox-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-3-and-tooltip-false-1-firefox-linux.png index 27b9891017..f5afc8a5a5 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-3-and-tooltip-false-1-firefox-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-Link-with-trimType-middle-maxLine-3-and-tooltip-false-1-firefox-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-end-1-chromium-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-end-1-chromium-linux.png index b44992abcc..722bdd5973 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-end-1-chromium-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-end-1-chromium-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-end-1-firefox-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-end-1-firefox-linux.png index ea5969e8c0..d742e67e91 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-end-1-firefox-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-end-1-firefox-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-end-1-webkit-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-end-1-webkit-linux.png index 54aa05f5fe..b1efaafea0 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-end-1-webkit-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-end-1-webkit-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-middle-1-chromium-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-middle-1-chromium-linux.png index 444ba24277..f9df2714aa 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-middle-1-chromium-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-middle-1-chromium-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-middle-1-firefox-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-middle-1-firefox-linux.png index 21084c1511..52beaef82b 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-middle-1-firefox-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-middle-1-firefox-linux.png differ diff --git a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-middle-1-webkit-linux.png b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-middle-1-webkit-linux.png index 2532e6b50f..4f9c5f43a5 100644 Binary files a/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-middle-1-webkit-linux.png and b/semcore/ellipsis/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-Ellipsis-in-table-cell-with-Link-and-trimType-middle-1-webkit-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied-chromium-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied-chromium-linux.png index 4308ebb870..20057e2e7f 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied-chromium-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied-chromium-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied-firefox-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied-firefox-linux.png index 47a3a16ad0..2c75afa7cf 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied-firefox-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied-firefox-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied-webkit-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied-webkit-linux.png index ca06ac51f0..c922d59b8a 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied-webkit-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied-webkit-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied648px-chromium-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied648px-chromium-linux.png index 5826fee8b5..ff619ac8d9 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied648px-chromium-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied648px-chromium-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied648px-firefox-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied648px-firefox-linux.png index 76d2b22e0f..6fab69bb45 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied648px-firefox-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied648px-firefox-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied648px-webkit-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied648px-webkit-linux.png index 7fb0b25f36..7491c126bd 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied648px-webkit-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/AccessDenied648px-webkit-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-description-controls-chromium-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-description-controls-chromium-linux.png index 4dbddef64f..e933e4b18b 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-description-controls-chromium-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-description-controls-chromium-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-description-controls-firefox-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-description-controls-firefox-linux.png index 6055141139..033b9f6ec3 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-description-controls-firefox-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-description-controls-firefox-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-description-controls-webkit-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-description-controls-webkit-linux.png index 52cc77fb5a..a46f0244e2 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-description-controls-webkit-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-description-controls-webkit-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-controls-chromium-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-controls-chromium-linux.png index 2f602501f7..7ab0739c99 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-controls-chromium-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-controls-chromium-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-controls-firefox-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-controls-firefox-linux.png index b3a7a15373..1bb007aa57 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-controls-firefox-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-controls-firefox-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-controls-webkit-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-controls-webkit-linux.png index 8902d4fc0a..4b01561f21 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-controls-webkit-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-controls-webkit-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-description-controls-chromium-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-description-controls-chromium-linux.png index 46e29315ba..61c247f548 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-description-controls-chromium-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-description-controls-chromium-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-description-controls-firefox-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-description-controls-firefox-linux.png index 27db13660a..f00bbee2a2 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-description-controls-firefox-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-description-controls-firefox-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-description-controls-webkit-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-description-controls-webkit-linux.png index 3b3c1ffb22..722d977acf 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-description-controls-webkit-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-icon-title-description-controls-webkit-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-title-description-controls-chromium-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-title-description-controls-chromium-linux.png index 8f7b684618..621ef0bb99 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-title-description-controls-chromium-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-title-description-controls-chromium-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-title-description-controls-firefox-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-title-description-controls-firefox-linux.png index 6780d21b91..7f1cd8eb11 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-title-description-controls-firefox-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-title-description-controls-firefox-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-title-description-controls-webkit-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-title-description-controls-webkit-linux.png index 08b3f37007..e7bdf6c158 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-title-description-controls-webkit-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Custom-title-description-controls-webkit-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance-chromium-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance-chromium-linux.png index 6b637cb514..ecf44dcfb6 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance-chromium-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance-chromium-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance-firefox-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance-firefox-linux.png index 2df746f8d3..5388d5e39e 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance-firefox-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance-firefox-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance-webkit-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance-webkit-linux.png index b6421e6c53..d0dec5fa90 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance-webkit-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance-webkit-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance648px-chromium-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance648px-chromium-linux.png index 1b3ec841e8..e5a2ea88c8 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance648px-chromium-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance648px-chromium-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance648px-firefox-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance648px-firefox-linux.png index a05b323672..7c720f6f0a 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance648px-firefox-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance648px-firefox-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance648px-webkit-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance648px-webkit-linux.png index f0e5ff7687..865c59b25c 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance648px-webkit-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/Maintenance648px-webkit-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError-chromium-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError-chromium-linux.png index 27f6241e31..be538b1eff 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError-chromium-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError-chromium-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError-firefox-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError-firefox-linux.png index b81aed7516..872d477473 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError-firefox-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError-firefox-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError-webkit-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError-webkit-linux.png index 3ad7549fc3..2253d0f1fc 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError-webkit-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError-webkit-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError648px-chromium-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError648px-chromium-linux.png index dc0dde9e89..5f75818054 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError648px-chromium-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError648px-chromium-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError648px-firefox-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError648px-firefox-linux.png index 401414cfde..42d586e62a 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError648px-firefox-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError648px-firefox-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError648px-webkit-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError648px-webkit-linux.png index b4746a587d..fc551a2f4c 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError648px-webkit-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageError648px-webkit-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound-chromium-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound-chromium-linux.png index b55d268788..b786d821ea 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound-chromium-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound-chromium-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound-firefox-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound-firefox-linux.png index 0a784375b7..e7cbae6322 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound-firefox-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound-firefox-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound-webkit-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound-webkit-linux.png index 40055f1574..552298dce8 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound-webkit-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound-webkit-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound648px-chromium-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound648px-chromium-linux.png index befda45748..58c65e6269 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound648px-chromium-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound648px-chromium-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound648px-firefox-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound648px-firefox-linux.png index 49f93de38d..cf549b82bd 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound648px-firefox-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound648px-firefox-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound648px-webkit-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound648px-webkit-linux.png index 8b5daa763c..158602f3e6 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound648px-webkit-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/PageNotFound648px-webkit-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound-chromium-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound-chromium-linux.png index 0dd2147556..0f5a6b0492 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound-chromium-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound-chromium-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound-firefox-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound-firefox-linux.png index fb522d6569..7dac3342ff 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound-firefox-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound-firefox-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound-webkit-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound-webkit-linux.png index 8c2aeb8ca5..11b2bb82bd 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound-webkit-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound-webkit-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound648px-chromium-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound648px-chromium-linux.png index 4a814b305b..f57a35f9d0 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound648px-chromium-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound648px-chromium-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound648px-firefox-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound648px-firefox-linux.png index a3b3e9d141..ff7e2fd725 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound648px-firefox-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound648px-firefox-linux.png differ diff --git a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound648px-webkit-linux.png b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound648px-webkit-linux.png index 22489521be..98b713da51 100644 Binary files a/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound648px-webkit-linux.png and b/semcore/errors/__tests__/errors.browser-test.tsx-snapshots/ProjectNotFound648px-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/__snapshots__/index.test.tsx.snap b/semcore/feature-highlight/__tests__/__snapshots__/index.test.tsx.snap index fdfb3e2712..731510c706 100644 --- a/semcore/feature-highlight/__tests__/__snapshots__/index.test.tsx.snap +++ b/semcore/feature-highlight/__tests__/__snapshots__/index.test.tsx.snap @@ -230,27 +230,49 @@ exports[`PillsFH > Verify data-ui-name 1`] = ` "children": [ { "children": [ + { + "children": [], + "uiName": "Box", + }, { "children": [ + { + "children": [ + { + "children": [], + "uiName": "Pills.Item.Text", + }, + ], + "uiName": "PillsFH.Item", + }, { "children": [], - "uiName": "Pills.Item.Text", + "uiName": "Box", }, ], - "uiName": "PillsFH.Item", + "uiName": "Box", }, { "children": [ { - "children": [], - "uiName": "HighlightedItem.Text", + "children": [ + { + "children": [], + "uiName": "HighlightedItem.Text", + }, + { + "children": [], + "uiName": "HighlightedItem.Addon", + }, + ], + "uiName": "PillsFH.HighlightedItem", }, { "children": [], - "uiName": "HighlightedItem.Addon", + "uiName": "Box", }, ], - "uiName": "PillsFH.HighlightedItem", + "uiName": "Box", }, ], "uiName": "PillsFH", diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx index c350bc6cdb..f2a3757335 100644 --- a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx +++ b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx @@ -97,7 +97,7 @@ test.describe(`${TAG.VISUAL} `, () => { variables.forEach((item) => { test(`Verify Button use = ${item.use} showBadge=${item.showBadge} showIcon=${item.showIcon} disabled=${item.disabled} size=${item.size} active=${item.active} loading=${item.loading} useBadge=${item.useBadge} `, { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, TAG.MOUSE, '@feature-highlight', '@button'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, TAG.MOUSE, '@feature-highlight', '@button', '@base-components', '@flex-box'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/feature-highlight/tests/examples/button.tsx', 'en', item); @@ -140,7 +140,7 @@ test.describe(`${TAG.VISUAL} `, () => { variables.forEach((item) => { test(`Verify Pills disabled=${item.disabled} size=${item.size} showBadge=${item.showBadge}`, { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@feature-highlight', '@pills'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@feature-highlight', '@pills', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/feature-highlight/tests/examples/pills/pills.tsx', 'en', item); @@ -185,7 +185,7 @@ test.describe(`${TAG.VISUAL} `, () => { variables.forEach((item) => { test(`Verify Input disabled=${item.disabled} size=${item.size} state=${item.state} showBadge=${item.showBadge}`, { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@feature-highlight', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@feature-highlight', '@input', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/feature-highlight/tests/examples/input.tsx', 'en', item); @@ -223,7 +223,7 @@ test.describe(`${TAG.VISUAL} `, () => { variables.forEach((item) => { test(`Verify Switch disabled=${item.disabled} size=${item.size} checked=${item.checked} showBadge=${item.showBadge}`, { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@feature-highlight', '@switch'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@feature-highlight', '@switch', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/feature-highlight/tests/examples/switch-fh.tsx', 'en', item); @@ -259,7 +259,7 @@ test.describe(`${TAG.VISUAL} `, () => { test.describe(`DataTableFH`, () => { test('Verify Data table styles', { - tag: [TAG.PRIORITY_HIGH, '@feature-highlight', '@data-table'], + tag: [TAG.PRIORITY_HIGH, '@feature-highlight', '@data-table', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/feature-highlight/docs/examples/data-table.tsx', 'en'); @@ -297,7 +297,7 @@ test.describe(`${TAG.VISUAL} `, () => { variables.forEach((item) => { test(`Verify Tabline disabled = ${item.disabled} size = ${item.size} showBadge = ${item.showBadge}`, { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, TAG.MOUSE, '@feature-highlight', '@tabline'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, TAG.MOUSE, '@feature-highlight', '@tabline', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/feature-highlight/tests/examples/tabline.tsx', 'en', item); @@ -338,7 +338,7 @@ test.describe(`${TAG.VISUAL} `, () => { variables.forEach((item) => { test(`Verify Radio disabled=${item.disabled} size=${item.size} state=${item.state} showBadge=${item.showBadge} showIcon=${item.showIcon}`, { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@feature-highlight', '@radio'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@feature-highlight', '@radio', '@base-components', '@flex-box', '@typography'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/feature-highlight/tests/examples/radio.tsx', 'en', item); @@ -390,7 +390,7 @@ test.describe(`${TAG.VISUAL} `, () => { variables.forEach((item) => { test(`Verify Checkbox disabled = ${item.disabled} size = ${item.size} state = ${item.state} checked = ${item.checked} showBadge = ${item.showBadge}`, { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@feature-highlight', '@checkbox'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@feature-highlight', '@checkbox', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/feature-highlight/tests/examples/checkbox.tsx', 'en', item); @@ -440,7 +440,7 @@ test.describe(`${TAG.VISUAL} `, () => { variables.forEach((item) => { test(`Verify Select disabled=${item.disabled} size=${item.size} state=${item.state} showBadge=${item.showBadge}`, { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, TAG.MOUSE, '@feature-highlight', '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, TAG.MOUSE, '@feature-highlight', '@select', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/feature-highlight/tests/examples/select.tsx', 'en', item); @@ -491,7 +491,7 @@ test.describe(`${TAG.VISUAL} `, () => { variables.forEach((item) => { test(`Verify Notice showTitle=${item.showTitle} showActions=${item.showActions} iconType=${item.iconType} `, { - tag: [TAG.PRIORITY_HIGH, '@feature-highlight', '@notice'], + tag: [TAG.PRIORITY_HIGH, '@feature-highlight', '@notice', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/feature-highlight/tests/examples/notice/notice.tsx', 'en', item); @@ -502,7 +502,7 @@ test.describe(`${TAG.VISUAL} `, () => { }); test('Verify Notice advanced mode rendering', { - tag: [TAG.PRIORITY_HIGH, '@feature-highlight', '@notice'], + tag: [TAG.PRIORITY_HIGH, '@feature-highlight', '@notice', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/feature-highlight/tests/examples/notice/notice-advanced-mode.tsx', 'en'); diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-BadgeFH-Verify-BasgeFH-Visual-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-BadgeFH-Verify-BasgeFH-Visual-1-chromium-linux.png index 89ccf8a4c9..c434b2afc4 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-BadgeFH-Verify-BasgeFH-Visual-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-BadgeFH-Verify-BasgeFH-Visual-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-BadgeFH-Verify-BasgeFH-Visual-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-BadgeFH-Verify-BasgeFH-Visual-1-firefox-linux.png index 57bdf8bcf9..30c2332955 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-BadgeFH-Verify-BasgeFH-Visual-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-BadgeFH-Verify-BasgeFH-Visual-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-BadgeFH-Verify-BasgeFH-Visual-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-BadgeFH-Verify-BasgeFH-Visual-1-webkit-linux.png index e2832d072e..057ce133bd 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-BadgeFH-Verify-BasgeFH-Visual-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-BadgeFH-Verify-BasgeFH-Visual-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--0ad84-active-true-loading-false-useBadge-undefined-2-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--0ad84-active-true-loading-false-useBadge-undefined-2-chromium-linux.png index e062998585..0761da5c76 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--0ad84-active-true-loading-false-useBadge-undefined-2-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--0ad84-active-true-loading-false-useBadge-undefined-2-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--0ad84-active-true-loading-false-useBadge-undefined-2-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--0ad84-active-true-loading-false-useBadge-undefined-2-firefox-linux.png index de8aac68b6..89e2714dda 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--0ad84-active-true-loading-false-useBadge-undefined-2-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--0ad84-active-true-loading-false-useBadge-undefined-2-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--0ad84-active-true-loading-false-useBadge-undefined-2-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--0ad84-active-true-loading-false-useBadge-undefined-2-webkit-linux.png index 03ca28ff6f..395547a62d 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--0ad84-active-true-loading-false-useBadge-undefined-2-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--0ad84-active-true-loading-false-useBadge-undefined-2-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--326df-ctive-false-loading-false-useBadge-undefined-3-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--326df-ctive-false-loading-false-useBadge-undefined-3-chromium-linux.png index 3cc8ccb0d5..91e065ca0b 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--326df-ctive-false-loading-false-useBadge-undefined-3-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--326df-ctive-false-loading-false-useBadge-undefined-3-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--326df-ctive-false-loading-false-useBadge-undefined-3-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--326df-ctive-false-loading-false-useBadge-undefined-3-webkit-linux.png index 685126a37b..6012089d75 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--326df-ctive-false-loading-false-useBadge-undefined-3-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--326df-ctive-false-loading-false-useBadge-undefined-3-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--544fa-l-active-false-loading-false-useBadge-accent-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--544fa-l-active-false-loading-false-useBadge-accent-1-chromium-linux.png index 82cfd465b7..d0c9390f34 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--544fa-l-active-false-loading-false-useBadge-accent-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--544fa-l-active-false-loading-false-useBadge-accent-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--544fa-l-active-false-loading-false-useBadge-accent-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--544fa-l-active-false-loading-false-useBadge-accent-1-firefox-linux.png index 1e9d7e8c44..e220b1a796 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--544fa-l-active-false-loading-false-useBadge-accent-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--544fa-l-active-false-loading-false-useBadge-accent-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--544fa-l-active-false-loading-false-useBadge-accent-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--544fa-l-active-false-loading-false-useBadge-accent-1-webkit-linux.png index a18385ed6c..21297fee87 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--544fa-l-active-false-loading-false-useBadge-accent-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--544fa-l-active-false-loading-false-useBadge-accent-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--75920-active-false-loading-true-useBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--75920-active-false-loading-true-useBadge-undefined-1-chromium-linux.png index dd1fb18bf1..777ae31bd4 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--75920-active-false-loading-true-useBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--75920-active-false-loading-true-useBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--75920-active-false-loading-true-useBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--75920-active-false-loading-true-useBadge-undefined-1-firefox-linux.png index ca670d1006..cb8beadc67 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--75920-active-false-loading-true-useBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--75920-active-false-loading-true-useBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--75920-active-false-loading-true-useBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--75920-active-false-loading-true-useBadge-undefined-1-webkit-linux.png index 0d73a41ea0..9232c8bf26 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--75920-active-false-loading-true-useBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--75920-active-false-loading-true-useBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--815e7-ctive-false-loading-false-useBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--815e7-ctive-false-loading-false-useBadge-undefined-1-chromium-linux.png index bc68436e0f..a3cdd2be1a 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--815e7-ctive-false-loading-false-useBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--815e7-ctive-false-loading-false-useBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--815e7-ctive-false-loading-false-useBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--815e7-ctive-false-loading-false-useBadge-undefined-1-firefox-linux.png index ae8b1d45d0..9eb76ca489 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--815e7-ctive-false-loading-false-useBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--815e7-ctive-false-loading-false-useBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--815e7-ctive-false-loading-false-useBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--815e7-ctive-false-loading-false-useBadge-undefined-1-webkit-linux.png index ae21cab139..1944eb1730 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--815e7-ctive-false-loading-false-useBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--815e7-ctive-false-loading-false-useBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ad838-active-true-loading-false-useBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ad838-active-true-loading-false-useBadge-undefined-1-chromium-linux.png index 1645891a40..0e8926e8b0 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ad838-active-true-loading-false-useBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ad838-active-true-loading-false-useBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ad838-active-true-loading-false-useBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ad838-active-true-loading-false-useBadge-undefined-1-firefox-linux.png index a2f149580b..cb5a88831b 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ad838-active-true-loading-false-useBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ad838-active-true-loading-false-useBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ad838-active-true-loading-false-useBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ad838-active-true-loading-false-useBadge-undefined-1-webkit-linux.png index a68a3536f2..9b75aed717 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ad838-active-true-loading-false-useBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ad838-active-true-loading-false-useBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ed83c-ctive-false-loading-false-useBadge-undefined-2-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ed83c-ctive-false-loading-false-useBadge-undefined-2-chromium-linux.png index 794defc5a8..f1ef178203 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ed83c-ctive-false-loading-false-useBadge-undefined-2-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ed83c-ctive-false-loading-false-useBadge-undefined-2-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ed83c-ctive-false-loading-false-useBadge-undefined-2-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ed83c-ctive-false-loading-false-useBadge-undefined-2-firefox-linux.png index 2eece44b8b..771bce4d00 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ed83c-ctive-false-loading-false-useBadge-undefined-2-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ed83c-ctive-false-loading-false-useBadge-undefined-2-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ed83c-ctive-false-loading-false-useBadge-undefined-2-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ed83c-ctive-false-loading-false-useBadge-undefined-2-webkit-linux.png index b1bb929823..1f4402529d 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ed83c-ctive-false-loading-false-useBadge-undefined-2-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--ed83c-ctive-false-loading-false-useBadge-undefined-2-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--fe0a4--active-false-loading-false-useBadge-neutral-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--fe0a4--active-false-loading-false-useBadge-neutral-1-chromium-linux.png index f503439892..f6963d284f 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--fe0a4--active-false-loading-false-useBadge-neutral-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--fe0a4--active-false-loading-false-useBadge-neutral-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--fe0a4--active-false-loading-false-useBadge-neutral-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--fe0a4--active-false-loading-false-useBadge-neutral-1-firefox-linux.png index 52403aeb76..dea5617d71 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--fe0a4--active-false-loading-false-useBadge-neutral-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--fe0a4--active-false-loading-false-useBadge-neutral-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--fe0a4--active-false-loading-false-useBadge-neutral-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--fe0a4--active-false-loading-false-useBadge-neutral-1-webkit-linux.png index ffbc26480b..4d95d89fca 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--fe0a4--active-false-loading-false-useBadge-neutral-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-primary--fe0a4--active-false-loading-false-useBadge-neutral-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-1ea8a-active-true-loading-false-useBadge-undefined-2-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-1ea8a-active-true-loading-false-useBadge-undefined-2-chromium-linux.png index 1936c96c4e..b90ac71402 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-1ea8a-active-true-loading-false-useBadge-undefined-2-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-1ea8a-active-true-loading-false-useBadge-undefined-2-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-1ea8a-active-true-loading-false-useBadge-undefined-2-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-1ea8a-active-true-loading-false-useBadge-undefined-2-firefox-linux.png index 983ae4dc44..1838b860b1 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-1ea8a-active-true-loading-false-useBadge-undefined-2-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-1ea8a-active-true-loading-false-useBadge-undefined-2-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-1ea8a-active-true-loading-false-useBadge-undefined-2-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-1ea8a-active-true-loading-false-useBadge-undefined-2-webkit-linux.png index d58c6be1f5..7ff7317f03 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-1ea8a-active-true-loading-false-useBadge-undefined-2-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-1ea8a-active-true-loading-false-useBadge-undefined-2-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-2946b-m-active-false-loading-false-useBadge-accent-3-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-2946b-m-active-false-loading-false-useBadge-accent-3-chromium-linux.png index 86d574ad0b..ff82a07f4c 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-2946b-m-active-false-loading-false-useBadge-accent-3-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-2946b-m-active-false-loading-false-useBadge-accent-3-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-2946b-m-active-false-loading-false-useBadge-accent-3-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-2946b-m-active-false-loading-false-useBadge-accent-3-webkit-linux.png index 4a0c530de5..8dfdc40104 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-2946b-m-active-false-loading-false-useBadge-accent-3-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-2946b-m-active-false-loading-false-useBadge-accent-3-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-35d62--active-false-loading-false-useBadge-neutral-3-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-35d62--active-false-loading-false-useBadge-neutral-3-chromium-linux.png index 85eec49473..089628c6e8 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-35d62--active-false-loading-false-useBadge-neutral-3-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-35d62--active-false-loading-false-useBadge-neutral-3-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-35d62--active-false-loading-false-useBadge-neutral-3-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-35d62--active-false-loading-false-useBadge-neutral-3-webkit-linux.png index 860e5ada58..6e42c020ed 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-35d62--active-false-loading-false-useBadge-neutral-3-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-35d62--active-false-loading-false-useBadge-neutral-3-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-4a2ef-m-active-false-loading-false-useBadge-accent-2-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-4a2ef-m-active-false-loading-false-useBadge-accent-2-chromium-linux.png index bd5a565e15..11373a7f5f 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-4a2ef-m-active-false-loading-false-useBadge-accent-2-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-4a2ef-m-active-false-loading-false-useBadge-accent-2-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-4a2ef-m-active-false-loading-false-useBadge-accent-2-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-4a2ef-m-active-false-loading-false-useBadge-accent-2-firefox-linux.png index b93bdf0b4f..e5ccc53b07 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-4a2ef-m-active-false-loading-false-useBadge-accent-2-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-4a2ef-m-active-false-loading-false-useBadge-accent-2-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-4a2ef-m-active-false-loading-false-useBadge-accent-2-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-4a2ef-m-active-false-loading-false-useBadge-accent-2-webkit-linux.png index e8882ee328..8c23de3f6a 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-4a2ef-m-active-false-loading-false-useBadge-accent-2-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-4a2ef-m-active-false-loading-false-useBadge-accent-2-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-6893a-ctive-false-loading-false-useBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-6893a-ctive-false-loading-false-useBadge-undefined-1-chromium-linux.png index 080012d117..62e40ee36c 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-6893a-ctive-false-loading-false-useBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-6893a-ctive-false-loading-false-useBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-6893a-ctive-false-loading-false-useBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-6893a-ctive-false-loading-false-useBadge-undefined-1-firefox-linux.png index 1c9ee5cb2a..0618c8d6a3 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-6893a-ctive-false-loading-false-useBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-6893a-ctive-false-loading-false-useBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-6893a-ctive-false-loading-false-useBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-6893a-ctive-false-loading-false-useBadge-undefined-1-webkit-linux.png index 0a52332241..6d5ee7ac31 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-6893a-ctive-false-loading-false-useBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-6893a-ctive-false-loading-false-useBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-78151-m-active-false-loading-false-useBadge-accent-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-78151-m-active-false-loading-false-useBadge-accent-1-chromium-linux.png index b2d770fa0b..7bae0f02f6 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-78151-m-active-false-loading-false-useBadge-accent-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-78151-m-active-false-loading-false-useBadge-accent-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-78151-m-active-false-loading-false-useBadge-accent-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-78151-m-active-false-loading-false-useBadge-accent-1-firefox-linux.png index 73f18b33e5..9efb5f474d 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-78151-m-active-false-loading-false-useBadge-accent-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-78151-m-active-false-loading-false-useBadge-accent-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-78151-m-active-false-loading-false-useBadge-accent-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-78151-m-active-false-loading-false-useBadge-accent-1-webkit-linux.png index 8897a61aaf..eb2eb8789a 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-78151-m-active-false-loading-false-useBadge-accent-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-78151-m-active-false-loading-false-useBadge-accent-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-7c9a6-active-true-loading-false-useBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-7c9a6-active-true-loading-false-useBadge-undefined-1-chromium-linux.png index d1b81a49e0..fb22dd177c 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-7c9a6-active-true-loading-false-useBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-7c9a6-active-true-loading-false-useBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-7c9a6-active-true-loading-false-useBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-7c9a6-active-true-loading-false-useBadge-undefined-1-firefox-linux.png index af8fd9362c..d01c85910c 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-7c9a6-active-true-loading-false-useBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-7c9a6-active-true-loading-false-useBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-7c9a6-active-true-loading-false-useBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-7c9a6-active-true-loading-false-useBadge-undefined-1-webkit-linux.png index 76c8c40827..7deb506c4d 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-7c9a6-active-true-loading-false-useBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-7c9a6-active-true-loading-false-useBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-be34e--active-false-loading-false-useBadge-neutral-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-be34e--active-false-loading-false-useBadge-neutral-1-chromium-linux.png index d6c443bf6e..cbaaa60d7e 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-be34e--active-false-loading-false-useBadge-neutral-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-be34e--active-false-loading-false-useBadge-neutral-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-be34e--active-false-loading-false-useBadge-neutral-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-be34e--active-false-loading-false-useBadge-neutral-1-firefox-linux.png index 26ec1faa9f..2dc58cf9ce 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-be34e--active-false-loading-false-useBadge-neutral-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-be34e--active-false-loading-false-useBadge-neutral-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-be34e--active-false-loading-false-useBadge-neutral-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-be34e--active-false-loading-false-useBadge-neutral-1-webkit-linux.png index 83da94d17e..051a416964 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-be34e--active-false-loading-false-useBadge-neutral-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-be34e--active-false-loading-false-useBadge-neutral-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-bf746-active-false-loading-true-useBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-bf746-active-false-loading-true-useBadge-undefined-1-chromium-linux.png index 2fcc4ac269..1b60973b11 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-bf746-active-false-loading-true-useBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-bf746-active-false-loading-true-useBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-bf746-active-false-loading-true-useBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-bf746-active-false-loading-true-useBadge-undefined-1-firefox-linux.png index bf5034b26b..0073d4d517 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-bf746-active-false-loading-true-useBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-bf746-active-false-loading-true-useBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-bf746-active-false-loading-true-useBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-bf746-active-false-loading-true-useBadge-undefined-1-webkit-linux.png index 9db93064e4..6f21f87570 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-bf746-active-false-loading-true-useBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-bf746-active-false-loading-true-useBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-ec6c1--active-false-loading-false-useBadge-neutral-2-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-ec6c1--active-false-loading-false-useBadge-neutral-2-chromium-linux.png index f6eea8f5b5..2e6eb368f3 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-ec6c1--active-false-loading-false-useBadge-neutral-2-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-ec6c1--active-false-loading-false-useBadge-neutral-2-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-ec6c1--active-false-loading-false-useBadge-neutral-2-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-ec6c1--active-false-loading-false-useBadge-neutral-2-firefox-linux.png index 67b86c209b..4f9ce40be9 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-ec6c1--active-false-loading-false-useBadge-neutral-2-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-ec6c1--active-false-loading-false-useBadge-neutral-2-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-ec6c1--active-false-loading-false-useBadge-neutral-2-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-ec6c1--active-false-loading-false-useBadge-neutral-2-webkit-linux.png index 2ccdd2b445..c7e26d1c77 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-ec6c1--active-false-loading-false-useBadge-neutral-2-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-ButtonFH-Verify-Button-use-secondar-ec6c1--active-false-loading-false-useBadge-neutral-2-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--0dfe6-ate-normal-checked-false-showBadge-true-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--0dfe6-ate-normal-checked-false-showBadge-true-1-chromium-linux.png index 76e72db3cd..922d9553e3 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--0dfe6-ate-normal-checked-false-showBadge-true-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--0dfe6-ate-normal-checked-false-showBadge-true-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--0dfe6-ate-normal-checked-false-showBadge-true-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--0dfe6-ate-normal-checked-false-showBadge-true-1-firefox-linux.png index ff52736300..b6e3c7f9f5 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--0dfe6-ate-normal-checked-false-showBadge-true-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--0dfe6-ate-normal-checked-false-showBadge-true-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--0dfe6-ate-normal-checked-false-showBadge-true-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--0dfe6-ate-normal-checked-false-showBadge-true-1-webkit-linux.png index f5f8fbc512..b75f1b13f2 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--0dfe6-ate-normal-checked-false-showBadge-true-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--0dfe6-ate-normal-checked-false-showBadge-true-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--20986-ate-normal-checked-false-showBadge-true-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--20986-ate-normal-checked-false-showBadge-true-1-chromium-linux.png index 5bc179aa02..5f3aa7c1a7 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--20986-ate-normal-checked-false-showBadge-true-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--20986-ate-normal-checked-false-showBadge-true-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--20986-ate-normal-checked-false-showBadge-true-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--20986-ate-normal-checked-false-showBadge-true-1-firefox-linux.png index 3f034d3cb7..253b95197b 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--20986-ate-normal-checked-false-showBadge-true-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--20986-ate-normal-checked-false-showBadge-true-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--20986-ate-normal-checked-false-showBadge-true-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--20986-ate-normal-checked-false-showBadge-true-1-webkit-linux.png index d0c246b985..6380ae23c1 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--20986-ate-normal-checked-false-showBadge-true-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--20986-ate-normal-checked-false-showBadge-true-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4a39e-ate-normal-checked-false-showBadge-true-2-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4a39e-ate-normal-checked-false-showBadge-true-2-chromium-linux.png index 5bc179aa02..5f3aa7c1a7 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4a39e-ate-normal-checked-false-showBadge-true-2-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4a39e-ate-normal-checked-false-showBadge-true-2-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4a39e-ate-normal-checked-false-showBadge-true-2-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4a39e-ate-normal-checked-false-showBadge-true-2-firefox-linux.png index 3f034d3cb7..253b95197b 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4a39e-ate-normal-checked-false-showBadge-true-2-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4a39e-ate-normal-checked-false-showBadge-true-2-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4a39e-ate-normal-checked-false-showBadge-true-2-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4a39e-ate-normal-checked-false-showBadge-true-2-webkit-linux.png index d0c246b985..6380ae23c1 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4a39e-ate-normal-checked-false-showBadge-true-2-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4a39e-ate-normal-checked-false-showBadge-true-2-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4de37--normal-checked-false-showBadge-undefined-2-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4de37--normal-checked-false-showBadge-undefined-2-chromium-linux.png index 6e6d46ed7a..302d5be25e 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4de37--normal-checked-false-showBadge-undefined-2-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4de37--normal-checked-false-showBadge-undefined-2-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4de37--normal-checked-false-showBadge-undefined-2-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4de37--normal-checked-false-showBadge-undefined-2-firefox-linux.png index 02db5c0823..d83c35a43e 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4de37--normal-checked-false-showBadge-undefined-2-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4de37--normal-checked-false-showBadge-undefined-2-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4de37--normal-checked-false-showBadge-undefined-2-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4de37--normal-checked-false-showBadge-undefined-2-webkit-linux.png index bc7d6ef280..4407a7fe74 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4de37--normal-checked-false-showBadge-undefined-2-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--4de37--normal-checked-false-showBadge-undefined-2-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--b9475-invalid-checked-false-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--b9475-invalid-checked-false-showBadge-undefined-1-chromium-linux.png index 92356d119b..f0b90b8e56 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--b9475-invalid-checked-false-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--b9475-invalid-checked-false-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--b9475-invalid-checked-false-showBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--b9475-invalid-checked-false-showBadge-undefined-1-firefox-linux.png index 810ab7eb58..af6602d503 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--b9475-invalid-checked-false-showBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--b9475-invalid-checked-false-showBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--b9475-invalid-checked-false-showBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--b9475-invalid-checked-false-showBadge-undefined-1-webkit-linux.png index 26c81b69cd..8cb587062e 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--b9475-invalid-checked-false-showBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--b9475-invalid-checked-false-showBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--e06de--normal-checked-false-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--e06de--normal-checked-false-showBadge-undefined-1-chromium-linux.png index 6e6d46ed7a..302d5be25e 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--e06de--normal-checked-false-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--e06de--normal-checked-false-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--e06de--normal-checked-false-showBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--e06de--normal-checked-false-showBadge-undefined-1-firefox-linux.png index 02db5c0823..d83c35a43e 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--e06de--normal-checked-false-showBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--e06de--normal-checked-false-showBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--e06de--normal-checked-false-showBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--e06de--normal-checked-false-showBadge-undefined-1-webkit-linux.png index bc7d6ef280..4407a7fe74 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--e06de--normal-checked-false-showBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--e06de--normal-checked-false-showBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--f71bb--normal-checked-false-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--f71bb--normal-checked-false-showBadge-undefined-1-chromium-linux.png index e254e5269f..3d6f24d677 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--f71bb--normal-checked-false-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--f71bb--normal-checked-false-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--f71bb--normal-checked-false-showBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--f71bb--normal-checked-false-showBadge-undefined-1-firefox-linux.png index 78ab0148b5..95d966c85f 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--f71bb--normal-checked-false-showBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--f71bb--normal-checked-false-showBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--f71bb--normal-checked-false-showBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--f71bb--normal-checked-false-showBadge-undefined-1-webkit-linux.png index bfed86b774..51f38497d6 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--f71bb--normal-checked-false-showBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-CheckboxFH-Verify-Checkbox-disabled--f71bb--normal-checked-false-showBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-DataTableFH-Verify-Data-table-styles-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-DataTableFH-Verify-Data-table-styles-1-chromium-linux.png index 2c22a75883..315797ce75 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-DataTableFH-Verify-Data-table-styles-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-DataTableFH-Verify-Data-table-styles-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-invalid-showBadge-true-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-invalid-showBadge-true-1-chromium-linux.png index fb09a105c8..c797e47964 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-invalid-showBadge-true-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-invalid-showBadge-true-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-invalid-showBadge-true-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-invalid-showBadge-true-1-firefox-linux.png index 69e8bdb23e..a1829085ae 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-invalid-showBadge-true-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-invalid-showBadge-true-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-invalid-showBadge-true-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-invalid-showBadge-true-1-webkit-linux.png index 86312410df..8cd8e1f6eb 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-invalid-showBadge-true-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-invalid-showBadge-true-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-normal-showBadge-true-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-normal-showBadge-true-1-chromium-linux.png index 7ad1d263ce..cf25334538 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-normal-showBadge-true-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-normal-showBadge-true-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-normal-showBadge-true-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-normal-showBadge-true-1-firefox-linux.png index 8e32462164..7cf4662f32 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-normal-showBadge-true-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-normal-showBadge-true-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-normal-showBadge-true-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-normal-showBadge-true-1-webkit-linux.png index 811bb9ac87..85cf6cf96f 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-normal-showBadge-true-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-l-state-normal-showBadge-true-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-normal-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-normal-showBadge-undefined-1-chromium-linux.png index edc3a7ca25..441556d1ef 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-normal-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-normal-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-normal-showBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-normal-showBadge-undefined-1-firefox-linux.png index 9006de39a2..4bb3f907e5 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-normal-showBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-normal-showBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-normal-showBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-normal-showBadge-undefined-1-webkit-linux.png index 5a4efb9d01..e0e1a08f2a 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-normal-showBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-normal-showBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-valid-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-valid-showBadge-undefined-1-chromium-linux.png index a2ab4bc64c..779bd28cc3 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-valid-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-valid-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-valid-showBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-valid-showBadge-undefined-1-firefox-linux.png index d6291ce730..0cb0743c41 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-valid-showBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-valid-showBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-valid-showBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-valid-showBadge-undefined-1-webkit-linux.png index 461a216f6c..76e6b12a26 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-valid-showBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-false-size-m-state-valid-showBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-l-state-normal-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-l-state-normal-showBadge-undefined-1-chromium-linux.png index 0ebc664230..45c6364b89 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-l-state-normal-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-l-state-normal-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-l-state-normal-showBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-l-state-normal-showBadge-undefined-1-firefox-linux.png index fdac73753e..b0e3cccf7d 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-l-state-normal-showBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-l-state-normal-showBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-l-state-normal-showBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-l-state-normal-showBadge-undefined-1-webkit-linux.png index c6f69f8313..10892ac23e 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-l-state-normal-showBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-l-state-normal-showBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-m-state-normal-showBadge-true-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-m-state-normal-showBadge-true-1-chromium-linux.png index 600857a3fa..b56a62fc78 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-m-state-normal-showBadge-true-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-m-state-normal-showBadge-true-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-m-state-normal-showBadge-true-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-m-state-normal-showBadge-true-1-firefox-linux.png index 979e4db76b..40f3d817f4 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-m-state-normal-showBadge-true-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-m-state-normal-showBadge-true-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-m-state-normal-showBadge-true-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-m-state-normal-showBadge-true-1-webkit-linux.png index 933c90e841..5e22301fce 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-m-state-normal-showBadge-true-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-InputFH-Verify-Input-disabled-true-size-m-state-normal-showBadge-true-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-advanced-mode-rendering-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-advanced-mode-rendering-1-chromium-linux.png index ef9075a87f..243d994842 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-advanced-mode-rendering-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-advanced-mode-rendering-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-advanced-mode-rendering-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-advanced-mode-rendering-1-firefox-linux.png index 252a4b8d27..9b9ac32fb5 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-advanced-mode-rendering-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-advanced-mode-rendering-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-advanced-mode-rendering-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-advanced-mode-rendering-1-webkit-linux.png index 13efcddb42..d9327310a6 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-advanced-mode-rendering-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-advanced-mode-rendering-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-false-showActions-false-iconType-ai-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-false-showActions-false-iconType-ai-1-chromium-linux.png index 0587e068fa..0eac94f408 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-false-showActions-false-iconType-ai-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-false-showActions-false-iconType-ai-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-false-showActions-false-iconType-ai-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-false-showActions-false-iconType-ai-1-firefox-linux.png index 095f1cfcfa..592ff9217a 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-false-showActions-false-iconType-ai-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-false-showActions-false-iconType-ai-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-false-showActions-false-iconType-ai-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-false-showActions-false-iconType-ai-1-webkit-linux.png index 28b3697f90..adbbc64967 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-false-showActions-false-iconType-ai-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-false-showActions-false-iconType-ai-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-true-showActions-true-iconType-mail-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-true-showActions-true-iconType-mail-1-chromium-linux.png index 49f05b7da0..549ed29c2c 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-true-showActions-true-iconType-mail-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-true-showActions-true-iconType-mail-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-true-showActions-true-iconType-mail-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-true-showActions-true-iconType-mail-1-firefox-linux.png index bb6b6cfbf9..5840c7b8d4 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-true-showActions-true-iconType-mail-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-true-showActions-true-iconType-mail-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-true-showActions-true-iconType-mail-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-true-showActions-true-iconType-mail-1-webkit-linux.png index 69b6d2cd90..89a6367a8a 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-true-showActions-true-iconType-mail-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Notice-FH-Verify-Notice-showTitle-true-showActions-true-iconType-mail-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-1-chromium-linux.png index 19244a8438..f53977aafc 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-1-firefox-linux.png index daadc18489..a61689f0cd 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-1-webkit-linux.png index 1b1f7a05ca..38330993c3 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-2-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-2-chromium-linux.png index 19244a8438..f53977aafc 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-2-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-2-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-2-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-2-firefox-linux.png index daadc18489..a61689f0cd 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-2-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-2-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-2-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-2-webkit-linux.png index 1b1f7a05ca..38330993c3 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-2-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-l-showBadge-undefined-2-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-1-chromium-linux.png index 2088b19737..eae735b19c 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-1-firefox-linux.png index c0d54388ef..a441912ac2 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-1-webkit-linux.png index a3f9773850..5072928d5f 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-2-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-2-chromium-linux.png index 2088b19737..eae735b19c 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-2-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-2-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-2-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-2-firefox-linux.png index c0d54388ef..a441912ac2 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-2-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-2-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-2-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-2-webkit-linux.png index a3f9773850..5072928d5f 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-2-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-false-size-m-showBadge-true-2-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-l-showBadge-true-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-l-showBadge-true-1-chromium-linux.png index 3c8b3ee403..80c548bde5 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-l-showBadge-true-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-l-showBadge-true-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-l-showBadge-true-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-l-showBadge-true-1-firefox-linux.png index 3e16a83bcf..6490b90221 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-l-showBadge-true-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-l-showBadge-true-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-l-showBadge-true-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-l-showBadge-true-1-webkit-linux.png index bac3d88f09..c27828b01d 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-l-showBadge-true-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-l-showBadge-true-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-m-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-m-showBadge-undefined-1-chromium-linux.png index 358b74060d..8570ec076d 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-m-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-m-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-m-showBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-m-showBadge-undefined-1-firefox-linux.png index d294d3a08a..801272e77e 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-m-showBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-m-showBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-m-showBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-m-showBadge-undefined-1-webkit-linux.png index a1f57183f5..f4f13104f0 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-m-showBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-PillsFH-Verify-Pills-disabled-true-size-m-showBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-3697b-ate-normal-showBadge-undefined-showIcon-false-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-3697b-ate-normal-showBadge-undefined-showIcon-false-1-chromium-linux.png index d8265cdebe..b4b33c660a 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-3697b-ate-normal-showBadge-undefined-showIcon-false-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-3697b-ate-normal-showBadge-undefined-showIcon-false-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-3697b-ate-normal-showBadge-undefined-showIcon-false-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-3697b-ate-normal-showBadge-undefined-showIcon-false-1-firefox-linux.png index 87d5be115b..99c588aff7 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-3697b-ate-normal-showBadge-undefined-showIcon-false-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-3697b-ate-normal-showBadge-undefined-showIcon-false-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-77408-nvalid-showBadge-undefined-showIcon-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-77408-nvalid-showBadge-undefined-showIcon-undefined-1-chromium-linux.png index d843645a0a..d0999459ee 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-77408-nvalid-showBadge-undefined-showIcon-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-77408-nvalid-showBadge-undefined-showIcon-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-77408-nvalid-showBadge-undefined-showIcon-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-77408-nvalid-showBadge-undefined-showIcon-undefined-1-firefox-linux.png index 14c2d3bd1f..643f9c1b67 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-77408-nvalid-showBadge-undefined-showIcon-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-77408-nvalid-showBadge-undefined-showIcon-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-77408-nvalid-showBadge-undefined-showIcon-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-77408-nvalid-showBadge-undefined-showIcon-undefined-1-webkit-linux.png index 63c9881eb5..7f69cd45f0 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-77408-nvalid-showBadge-undefined-showIcon-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-77408-nvalid-showBadge-undefined-showIcon-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-db627-ate-normal-showBadge-undefined-showIcon-false-2-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-db627-ate-normal-showBadge-undefined-showIcon-false-2-chromium-linux.png index d8265cdebe..b4b33c660a 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-db627-ate-normal-showBadge-undefined-showIcon-false-2-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-db627-ate-normal-showBadge-undefined-showIcon-false-2-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-db627-ate-normal-showBadge-undefined-showIcon-false-2-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-db627-ate-normal-showBadge-undefined-showIcon-false-2-firefox-linux.png index 87d5be115b..99c588aff7 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-db627-ate-normal-showBadge-undefined-showIcon-false-2-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-s-db627-ate-normal-showBadge-undefined-showIcon-false-2-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-size-l-state-normal-showBadge-true-showIcon-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-size-l-state-normal-showBadge-true-showIcon-undefined-1-chromium-linux.png index 9783701cd0..0e5fe61001 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-size-l-state-normal-showBadge-true-showIcon-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-size-l-state-normal-showBadge-true-showIcon-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-size-l-state-normal-showBadge-true-showIcon-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-size-l-state-normal-showBadge-true-showIcon-undefined-1-firefox-linux.png index 995acd30fa..069b08b23c 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-size-l-state-normal-showBadge-true-showIcon-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-size-l-state-normal-showBadge-true-showIcon-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-size-l-state-normal-showBadge-true-showIcon-undefined-2-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-size-l-state-normal-showBadge-true-showIcon-undefined-2-chromium-linux.png index 9783701cd0..0e5fe61001 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-size-l-state-normal-showBadge-true-showIcon-undefined-2-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-size-l-state-normal-showBadge-true-showIcon-undefined-2-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-size-l-state-normal-showBadge-true-showIcon-undefined-2-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-size-l-state-normal-showBadge-true-showIcon-undefined-2-firefox-linux.png index 995acd30fa..069b08b23c 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-size-l-state-normal-showBadge-true-showIcon-undefined-2-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-false-size-l-state-normal-showBadge-true-showIcon-undefined-2-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-si-39cc8-normal-showBadge-undefined-showIcon-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-si-39cc8-normal-showBadge-undefined-showIcon-undefined-1-chromium-linux.png index cffbe199f7..65be6e736d 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-si-39cc8-normal-showBadge-undefined-showIcon-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-si-39cc8-normal-showBadge-undefined-showIcon-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-si-39cc8-normal-showBadge-undefined-showIcon-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-si-39cc8-normal-showBadge-undefined-showIcon-undefined-1-webkit-linux.png index 747a4d4994..9db7152420 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-si-39cc8-normal-showBadge-undefined-showIcon-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-si-39cc8-normal-showBadge-undefined-showIcon-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-size-m-state-invalid-showBadge-true-showIcon-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-size-m-state-invalid-showBadge-true-showIcon-undefined-1-chromium-linux.png index 49aa59a79d..9de73b52a3 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-size-m-state-invalid-showBadge-true-showIcon-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-size-m-state-invalid-showBadge-true-showIcon-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-size-m-state-invalid-showBadge-true-showIcon-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-size-m-state-invalid-showBadge-true-showIcon-undefined-1-firefox-linux.png index 3216cd9b1d..6fcf443671 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-size-m-state-invalid-showBadge-true-showIcon-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-size-m-state-invalid-showBadge-true-showIcon-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-size-m-state-invalid-showBadge-true-showIcon-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-size-m-state-invalid-showBadge-true-showIcon-undefined-1-webkit-linux.png index fdb8b591ed..ab09439fc0 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-size-m-state-invalid-showBadge-true-showIcon-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-RadioFH-Verify-Radio-disabled-true-size-m-state-invalid-showBadge-true-showIcon-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-invalid-showBadge-true-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-invalid-showBadge-true-1-chromium-linux.png index c451078aaf..da4cd1d038 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-invalid-showBadge-true-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-invalid-showBadge-true-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-invalid-showBadge-true-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-invalid-showBadge-true-1-firefox-linux.png index 9817a1f3f9..3baeabeb5e 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-invalid-showBadge-true-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-invalid-showBadge-true-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-invalid-showBadge-true-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-invalid-showBadge-true-1-webkit-linux.png index 3b4596709e..9e23161b3d 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-invalid-showBadge-true-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-invalid-showBadge-true-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-1-chromium-linux.png index 1cb2fa9d74..6a0d72a9d1 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-1-firefox-linux.png index d22d841fd8..bc4b2c7a1c 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-1-webkit-linux.png index c71e39d701..4d487e2086 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-2-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-2-chromium-linux.png index 1c5027a736..9c26bc028d 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-2-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-2-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-2-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-2-firefox-linux.png index 4739ce705a..7077c8cb08 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-2-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-2-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-2-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-2-webkit-linux.png index 521ee70ab2..fc770bfab2 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-2-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-l-state-normal-showBadge-undefined-2-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-1-chromium-linux.png index 5a79a1354a..51a666e8ac 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-1-firefox-linux.png index 6d1e440bfe..9d857831cd 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-1-webkit-linux.png index 89f4c531ac..9c47e73d1d 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-2-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-2-chromium-linux.png index 3d4fb19ef6..3edcc3afef 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-2-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-2-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-2-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-2-firefox-linux.png index 9ebdd7837f..37e506efc7 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-2-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-2-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-2-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-2-webkit-linux.png index bfb7931cf9..443a7ab490 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-2-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-normal-showBadge-true-2-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-valid-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-valid-showBadge-undefined-1-chromium-linux.png index 02aaf21e41..8f4bdc69fe 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-valid-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-valid-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-valid-showBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-valid-showBadge-undefined-1-firefox-linux.png index ec52ef30ff..d74943120a 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-valid-showBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-valid-showBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-valid-showBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-valid-showBadge-undefined-1-webkit-linux.png index 8ab81d7cff..59fa527c0b 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-valid-showBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-false-size-m-state-valid-showBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-true-size-m-state-normal-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-true-size-m-state-normal-showBadge-undefined-1-chromium-linux.png index 2ceff51188..effb697c1d 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-true-size-m-state-normal-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-true-size-m-state-normal-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-true-size-m-state-normal-showBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-true-size-m-state-normal-showBadge-undefined-1-firefox-linux.png index 2119c6fb50..65c914a4c6 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-true-size-m-state-normal-showBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-true-size-m-state-normal-showBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-true-size-m-state-normal-showBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-true-size-m-state-normal-showBadge-undefined-1-webkit-linux.png index 7ce4c4abcb..ae1c331349 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-true-size-m-state-normal-showBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-Select-FH-Verify-Select-disabled-true-size-m-state-normal-showBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-1-chromium-linux.png index 4084075478..88b915095c 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-1-firefox-linux.png index 3261a5786f..8945a2a612 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-1-webkit-linux.png index ce1d313689..3ce53dcfd9 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-2-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-2-chromium-linux.png index 00a19cb349..dbda2f56a1 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-2-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-2-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-2-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-2-firefox-linux.png index 37017694a0..98f904af3c 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-2-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-2-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-2-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-2-webkit-linux.png index 17bb9314cc..5fa0c45b47 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-2-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-l-checked-undefined-showBadge-true-2-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-1-chromium-linux.png index 020129e4cc..9e43f2d5e3 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-1-firefox-linux.png index 4f458f0f43..eb88faac10 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-1-webkit-linux.png index 88c62cde43..b43450c983 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-2-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-2-chromium-linux.png index 69a823840c..dde5445e35 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-2-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-2-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-2-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-2-firefox-linux.png index 4f34e31d52..73ca2a960b 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-2-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-2-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-2-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-2-webkit-linux.png index 72eb5f7e6b..d0254dbeb4 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-2-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-m-checked-undefined-showBadge-undefined-2-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-1-chromium-linux.png index e5a305ea91..c8a2327102 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-1-webkit-linux.png index 22b3df83c6..65755319d0 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-2-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-2-chromium-linux.png index 4e5bb906fe..a7e206e7e5 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-2-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-2-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-2-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-2-firefox-linux.png index 811c7edf87..13e288f976 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-2-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-2-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-2-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-2-webkit-linux.png index 28091c03ff..97bbeff653 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-2-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-false-size-xl-checked-undefined-showBadge-undefined-2-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-l-checked-true-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-l-checked-true-showBadge-undefined-1-chromium-linux.png index 94aec9a8e1..7f4222ef7d 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-l-checked-true-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-l-checked-true-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-l-checked-true-showBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-l-checked-true-showBadge-undefined-1-firefox-linux.png index 45cd93b683..932597d04b 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-l-checked-true-showBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-l-checked-true-showBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-l-checked-true-showBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-l-checked-true-showBadge-undefined-1-webkit-linux.png index 3f3ae77eac..9465f15344 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-l-checked-true-showBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-l-checked-true-showBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-m-checked-true-showBadge-true-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-m-checked-true-showBadge-true-1-chromium-linux.png index 3e40bf68c2..46b3b70003 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-m-checked-true-showBadge-true-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-m-checked-true-showBadge-true-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-m-checked-true-showBadge-true-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-m-checked-true-showBadge-true-1-firefox-linux.png index 144960cd01..4c4bdce454 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-m-checked-true-showBadge-true-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-m-checked-true-showBadge-true-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-m-checked-true-showBadge-true-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-m-checked-true-showBadge-true-1-webkit-linux.png index 7b41aec332..452501d5af 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-m-checked-true-showBadge-true-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-m-checked-true-showBadge-true-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-xl-checked-undefined-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-xl-checked-undefined-showBadge-undefined-1-chromium-linux.png index 77d3256ba9..dfe7151de3 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-xl-checked-undefined-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-SwitchFH-Verify-Switch-disabled-true-size-xl-checked-undefined-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-l-showBadge-true-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-l-showBadge-true-1-chromium-linux.png index 7594a72288..eef79447e1 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-l-showBadge-true-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-l-showBadge-true-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-l-showBadge-true-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-l-showBadge-true-1-firefox-linux.png index e35995d6d6..00bbf1bdcf 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-l-showBadge-true-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-l-showBadge-true-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-l-showBadge-true-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-l-showBadge-true-1-webkit-linux.png index cbbc51730d..2e80366d98 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-l-showBadge-true-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-l-showBadge-true-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-m-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-m-showBadge-undefined-1-chromium-linux.png index 0be87abbc5..945070860a 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-m-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-m-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-m-showBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-m-showBadge-undefined-1-firefox-linux.png index eb67aaac33..0f40e62006 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-m-showBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-m-showBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-m-showBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-m-showBadge-undefined-1-webkit-linux.png index c6004f5953..bf70e17f63 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-m-showBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-false-size-m-showBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-l-showBadge-true-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-l-showBadge-true-1-chromium-linux.png index 5fd838fb5f..4f9c61c7bd 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-l-showBadge-true-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-l-showBadge-true-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-l-showBadge-true-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-l-showBadge-true-1-firefox-linux.png index e4f321d1c2..a4dee659ce 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-l-showBadge-true-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-l-showBadge-true-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-l-showBadge-true-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-l-showBadge-true-1-webkit-linux.png index 06bc78cef1..aec866e86a 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-l-showBadge-true-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-l-showBadge-true-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-m-showBadge-undefined-1-chromium-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-m-showBadge-undefined-1-chromium-linux.png index afe6e7a451..e1ea3fdc1f 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-m-showBadge-undefined-1-chromium-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-m-showBadge-undefined-1-chromium-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-m-showBadge-undefined-1-firefox-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-m-showBadge-undefined-1-firefox-linux.png index 30ede49f24..169aa2473b 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-m-showBadge-undefined-1-firefox-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-m-showBadge-undefined-1-firefox-linux.png differ diff --git a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-m-showBadge-undefined-1-webkit-linux.png b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-m-showBadge-undefined-1-webkit-linux.png index 43753d248a..03f5260df8 100644 Binary files a/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-m-showBadge-undefined-1-webkit-linux.png and b/semcore/feature-highlight/__tests__/feature-highlight.browser-test.tsx-snapshots/-visual-TablineFH-Verify-Tabline-disabled-true-size-m-showBadge-undefined-1-webkit-linux.png differ diff --git a/semcore/feature-highlight/src/components/badge/Badge.tsx b/semcore/feature-highlight/src/components/badge/Badge.tsx index a2f63962e9..4fd62adc1b 100644 --- a/semcore/feature-highlight/src/components/badge/Badge.tsx +++ b/semcore/feature-highlight/src/components/badge/Badge.tsx @@ -1,4 +1,4 @@ -import Badge from '@semcore/badge'; +import { Box } from '@semcore/base-components'; import type { Intergalactic } from '@semcore/core'; import { createComponent, Component, Root, sstyled } from '@semcore/core'; import resolveColorEnhance from '@semcore/core/lib/utils/enhances/resolveColorEnhance'; @@ -30,7 +30,7 @@ class BadgeFHRoot extends Component< return sstyled(styles)( , ); diff --git a/semcore/feature-highlight/src/components/badge/badge.shadow.css b/semcore/feature-highlight/src/components/badge/badge.shadow.css index 2741fd1e65..4a1a2b2165 100644 --- a/semcore/feature-highlight/src/components/badge/badge.shadow.css +++ b/semcore/feature-highlight/src/components/badge/badge.shadow.css @@ -1,5 +1,19 @@ + SHighlightedBadge { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + display: inline-block; + box-sizing: border-box; + height: 16px; + align-content: center; + padding: 0 var(--intergalactic-spacing-1x, 4px); + border-radius: var(--intergalactic-badge-rounded, 4px); + white-space: nowrap; + font-size: var(--intergalactic-fs-100, 12px); + line-height: 8px; + font-weight: var(--intergalactic-medium, 500); + letter-spacing: 0.3px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + color: var(--intergalactic-badge-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); } SHighlightedBadge[use='accent'] { diff --git a/semcore/feature-highlight/src/components/checkbox/checkbox.shadow.css b/semcore/feature-highlight/src/components/checkbox/checkbox.shadow.css index b8c65da677..823a6b2d00 100644 --- a/semcore/feature-highlight/src/components/checkbox/checkbox.shadow.css +++ b/semcore/feature-highlight/src/components/checkbox/checkbox.shadow.css @@ -13,8 +13,7 @@ SHighlightedCheckbox:not([state="invalid"]) { input[data-ui-name="CheckboxFH.Value"]:checked + [data-ui-name="Value.CheckMark"] { border-color: transparent; - background: var(--intergalactic-border-feature-highlight-active, linear-gradient(90deg in oklch, oklch(0.74 0.17 303), oklch(0.74 0.117 274.1))) padding-box, - var(--intergalactic-border-feature-highlight-active, linear-gradient(90deg in oklch, oklch(0.74 0.17 303), oklch(0.74 0.117 274.1))) border-box; + background: var(--intergalactic-border-feature-highlight-active, linear-gradient(90deg in oklch, oklch(0.74 0.17 303), oklch(0.74 0.117 274.1))) padding-box, var(--intergalactic-border-feature-highlight-active, linear-gradient(90deg in oklch, oklch(0.74 0.17 303), oklch(0.74 0.117 274.1))) border-box; } [data-ui-name="Value.CheckMark"]::before { diff --git a/semcore/feature-highlight/src/components/pills/pills.shadow.css b/semcore/feature-highlight/src/components/pills/pills.shadow.css index 83fb070568..271f87ac69 100644 --- a/semcore/feature-highlight/src/components/pills/pills.shadow.css +++ b/semcore/feature-highlight/src/components/pills/pills.shadow.css @@ -1,8 +1,7 @@ SHighlightedPill { border: 1px solid transparent; background: - linear-gradient(white, white) padding-box, - var(--intergalactic-border-feature-highlight, linear-gradient(90deg in oklch, oklch(0.82 0.118 303), oklch(0.82 0.088 272.1))) border-box; + linear-gradient(white, white) padding-box, var(--intergalactic-border-feature-highlight, linear-gradient(90deg in oklch, oklch(0.82 0.118 303), oklch(0.82 0.088 272.1))) border-box; background-origin: border-box; background-clip: padding-box, border-box; z-index: 1; @@ -46,14 +45,12 @@ SHighlightedPill { } &:hover { - background: var(--intergalactic-bg-primary-feature-highlight-hover-active, linear-gradient(90deg in oklch, oklch(0.97 0.019 303.4), oklch(0.929 0.037 268))) padding-box, - var(--intergalactic-border-feature-highlight, linear-gradient(90deg in oklch, oklch(0.82 0.118 303), oklch(0.82 0.088 272.1))) border-box; + background: var(--intergalactic-bg-primary-feature-highlight-hover-active, linear-gradient(90deg in oklch, oklch(0.97 0.019 303.4), oklch(0.929 0.037 268))) padding-box, var(--intergalactic-border-feature-highlight, linear-gradient(90deg in oklch, oklch(0.82 0.118 303), oklch(0.82 0.088 272.1))) border-box; } &[selected] { background: - var(--intergalactic-bg-primary-feature-highlight-hover-active, linear-gradient(90deg in oklch, oklch(0.97 0.019 303.4), oklch(0.929 0.037 268))) padding-box, - var(--intergalactic-control-primary-feature-highlight-hover, linear-gradient(90deg in oklch, oklch(0.64 0.223 299.3), oklch(0.74 0.117 274.1))) border-box; + var(--intergalactic-bg-primary-feature-highlight-hover-active, linear-gradient(90deg in oklch, oklch(0.97 0.019 303.4), oklch(0.929 0.037 268))) padding-box, var(--intergalactic-control-primary-feature-highlight-hover, linear-gradient(90deg in oklch, oklch(0.64 0.223 299.3), oklch(0.74 0.117 274.1))) border-box; background-origin: border-box; background-clip: padding-box, border-box; border-color: transparent; diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-accent-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-accent-1-chromium-linux.png index 482518c916..ffe9847d7f 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-accent-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-accent-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-accent-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-accent-1-firefox-linux.png index d5daf3b6f2..a03f30469d 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-accent-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-accent-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-accent-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-accent-1-webkit-linux.png index 5abb5c6953..0f3cd87bc0 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-accent-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-accent-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-neutral-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-neutral-1-chromium-linux.png index c9b885d0f5..963a6bc8d7 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-neutral-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-neutral-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-neutral-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-neutral-1-firefox-linux.png index b65539c7ce..c932adae12 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-neutral-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-neutral-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-neutral-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-neutral-1-webkit-linux.png index 759679eaa7..5f470ad3da 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-neutral-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-false-and-theme-neutral-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-accent-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-accent-1-chromium-linux.png index 9db4172491..f630233e51 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-accent-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-accent-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-accent-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-accent-1-firefox-linux.png index 69a0fd92ef..fec51ccf07 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-accent-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-accent-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-accent-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-accent-1-webkit-linux.png index b4c8df2900..7d40f13c8a 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-accent-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-accent-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-neutral-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-neutral-1-chromium-linux.png index 8103acbad5..f7ddd429d2 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-neutral-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-neutral-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-neutral-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-neutral-1-firefox-linux.png index 016a4be3b6..8fed3e0e49 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-neutral-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-neutral-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-neutral-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-neutral-1-webkit-linux.png index 9c2a6638a1..e367c4b39d 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-neutral-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-closeIcon-true-and-theme-neutral-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-medium-illustration-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-medium-illustration-1-chromium-linux.png index 71f8454562..ffa17322bc 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-medium-illustration-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-medium-illustration-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-medium-illustration-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-medium-illustration-1-firefox-linux.png index 2e2109216d..3ea35702a2 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-medium-illustration-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-medium-illustration-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-medium-illustration-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-medium-illustration-1-webkit-linux.png index 40b9ffaeff..9ab3d56461 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-medium-illustration-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-styles-with-medium-illustration-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-1-chromium-linux.png index 92062782f6..b78f470478 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-1-firefox-linux.png index 222930d22c..3aae43f13f 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-1-webkit-linux.png index 141cefe12c..369b59decf 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-2-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-2-chromium-linux.png index 316023757d..45193b2bb0 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-2-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-2-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-2-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-2-firefox-linux.png index a23644093c..fe9bd2c491 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-2-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-2-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-2-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-2-webkit-linux.png index c40b2ca074..5db3d2185a 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-2-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-2-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-1-chromium-linux.png index cfdc2f40fc..f1e7d68a87 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-1-firefox-linux.png index 9f011538e4..1602636b75 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-1-webkit-linux.png index 0640c56714..97f8926340 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-2-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-2-chromium-linux.png index 574e88f716..6120f74fa4 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-2-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-2-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-2-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-2-firefox-linux.png index 7a68c3f1d6..fa13f6a486 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-2-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-2-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-2-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-2-webkit-linux.png index 4f356600c1..7e988c860b 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-2-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-end-2-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-1-chromium-linux.png index fed4c38f1f..b91d4527af 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-1-firefox-linux.png index 971cc67112..72166ebb48 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-1-webkit-linux.png index 9d0e284091..3b57d9a8da 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-2-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-2-chromium-linux.png index ee9e8ca654..55a888cc23 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-2-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-2-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-2-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-2-firefox-linux.png index 0afae0b9f4..f5c31545d2 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-2-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-2-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-2-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-2-webkit-linux.png index 482924f40b..06dc1f3ee1 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-2-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-auto-start-2-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-1-chromium-linux.png index dab3800e49..23d8fa076a 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-1-firefox-linux.png index 9cdb006dfb..fb832b8ac4 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-1-webkit-linux.png index 34b477ef4b..da51831e01 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-2-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-2-chromium-linux.png index 645b3cf296..6a96217339 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-2-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-2-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-2-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-2-firefox-linux.png index 05ba7266d3..d5692c8a55 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-2-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-2-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-2-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-2-webkit-linux.png index 3df6f25696..8fcc4445db 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-2-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-2-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-1-chromium-linux.png index ad0035d1bf..a15d42cfc0 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-1-firefox-linux.png index bbc1f2bb47..7f00c89c33 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-1-webkit-linux.png index 42e49a4aac..3e31da3377 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-2-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-2-chromium-linux.png index 0f81d8d501..a1d393b948 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-2-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-2-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-2-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-2-firefox-linux.png index d0eee01d9a..8bb6536e13 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-2-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-2-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-2-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-2-webkit-linux.png index f20f3a03d5..1dcd5a544d 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-2-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-end-2-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-1-chromium-linux.png index b8bd64b778..3c7ed52c8a 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-1-firefox-linux.png index 36712307da..95a1ad9942 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-1-webkit-linux.png index 7d7648df83..0fe61e7f27 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-2-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-2-chromium-linux.png index 26d0efd23c..54d71bed1e 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-2-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-2-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-2-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-2-firefox-linux.png index f43b74ae34..2e77646c12 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-2-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-2-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-2-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-2-webkit-linux.png index fa0bb7b166..7f80e1a5ce 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-2-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-bottom-start-2-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-1-chromium-linux.png index 36a16cb642..b8a63514c0 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-1-firefox-linux.png index f20f15dfb8..7f2e24d456 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-1-webkit-linux.png index 012a3a6153..f3938bfb1a 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-2-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-2-chromium-linux.png index 077e67b816..172e5a08c8 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-2-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-2-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-2-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-2-firefox-linux.png index c85f85acdc..255f5d128f 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-2-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-2-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-2-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-2-webkit-linux.png index 37b84d860e..8749a64825 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-2-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-2-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-1-chromium-linux.png index 3a4f644f6c..f8cb939ae2 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-1-firefox-linux.png index d6764e488e..89c8b55eb1 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-1-webkit-linux.png index ef3822410e..88133d5e11 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-2-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-2-chromium-linux.png index a967494054..c493d24f92 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-2-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-2-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-2-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-2-firefox-linux.png index 33ef3ae79e..5fca624a11 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-2-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-2-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-2-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-2-webkit-linux.png index b9e18c9e85..8fbffee0b7 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-2-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-end-2-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-1-chromium-linux.png index b38b93eab5..f2e95b595b 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-1-firefox-linux.png index 2f55577e60..225014cea4 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-1-webkit-linux.png index b159204372..a94143a6ab 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-2-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-2-chromium-linux.png index 1c689f5ed7..78cb2f5913 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-2-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-2-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-2-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-2-firefox-linux.png index ee9314c896..047d97a0a9 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-2-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-2-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-2-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-2-webkit-linux.png index e8f6044a04..7dfdcff026 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-2-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-left-start-2-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-1-chromium-linux.png index 4f2160a92b..a73c1a1296 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-1-firefox-linux.png index 29e055ff83..9f43f996db 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-1-webkit-linux.png index 9a34e4c0e9..e97693e5b6 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-2-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-2-chromium-linux.png index b050713539..59be25ef4b 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-2-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-2-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-2-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-2-firefox-linux.png index 7aa070341d..06f54a5f49 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-2-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-2-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-2-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-2-webkit-linux.png index 54340ca8cf..483b55768f 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-2-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-2-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-1-chromium-linux.png index a9cee241b5..e713d226b5 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-1-firefox-linux.png index 0c9533bb29..c96f2e1626 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-1-webkit-linux.png index 170ca574cc..9ab4761f30 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-2-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-2-chromium-linux.png index a7953b96f1..094413501a 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-2-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-2-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-2-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-2-firefox-linux.png index 972a7b0bf1..4d5263e917 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-2-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-2-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-2-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-2-webkit-linux.png index 0c8a493a37..bce525565f 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-2-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-end-2-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-1-chromium-linux.png index f9344ecb54..221547c13a 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-1-firefox-linux.png index ae3103fbde..f0956d62f9 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-1-webkit-linux.png index b3431abf0c..67c21b60a8 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-2-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-2-chromium-linux.png index 52e2bd3595..8e4bac67d9 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-2-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-2-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-2-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-2-firefox-linux.png index 2c7bf4b981..0f688e8c24 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-2-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-2-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-2-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-2-webkit-linux.png index 9be6c37695..e198b283ba 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-2-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-right-start-2-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-1-chromium-linux.png index a6eb495c9f..ee1a47f27c 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-1-firefox-linux.png index f93d421ec6..88f4b5dfb1 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-1-webkit-linux.png index 5a60014cea..0a9df989ec 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-2-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-2-chromium-linux.png index d2ec48632e..2e8dad5630 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-2-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-2-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-2-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-2-firefox-linux.png index 18bf7abb0d..215f71f579 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-2-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-2-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-2-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-2-webkit-linux.png index 5193198133..c5b8520b19 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-2-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-2-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-1-chromium-linux.png index e1d5b696c7..6c2d23a2f9 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-1-firefox-linux.png index 23fd2f684e..8317e74038 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-1-webkit-linux.png index d9919a3dbf..1b8990d3c8 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-2-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-2-chromium-linux.png index aeb27201cb..bd16a939ea 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-2-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-2-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-2-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-2-firefox-linux.png index d4bf6ec656..a90a70f624 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-2-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-2-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-2-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-2-webkit-linux.png index faaed16298..5930a7fb95 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-2-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-end-2-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-1-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-1-chromium-linux.png index 38caebd52d..c0b1b24d79 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-1-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-1-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-1-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-1-firefox-linux.png index e376eba1c7..7d36f72522 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-1-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-1-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-1-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-1-webkit-linux.png index d4517b2b6a..cca9c10b8c 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-1-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-1-webkit-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-2-chromium-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-2-chromium-linux.png index c62ee236a2..14ce21d37a 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-2-chromium-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-2-chromium-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-2-firefox-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-2-firefox-linux.png index e23aceef96..e8077dcc10 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-2-firefox-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-2-firefox-linux.png differ diff --git a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-2-webkit-linux.png b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-2-webkit-linux.png index 776741d1b6..5838898fa0 100644 Binary files a/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-2-webkit-linux.png and b/semcore/feature-popover/__tests__/feature-popover.browser-test.tsx-snapshots/-visual-Verify-Feature-popover-when-placement-top-start-2-webkit-linux.png differ diff --git a/semcore/feature-popover/src/style/feature-popover.shadow.css b/semcore/feature-popover/src/style/feature-popover.shadow.css index e4bd72c3d3..dec6a4200f 100644 --- a/semcore/feature-popover/src/style/feature-popover.shadow.css +++ b/semcore/feature-popover/src/style/feature-popover.shadow.css @@ -1,20 +1,20 @@ SFeaturePopover { - padding-top: var(--intergalactic-spacing-4x, 16px); - padding-right: var(--intergalactic-spacing-10x, 40px); - padding-bottom: var(--intergalactic-spacing-4x, 16px); - padding-left: var(--intergalactic-spacing-4x, 16px); + padding-top: var(--intergalactic-spacing-content-padding-large, 16px); + padding-right: var(--intergalactic-spacing-content-padding-xxlarge, 40px); + padding-bottom: var(--intergalactic-spacing-content-padding-large, 16px); + padding-left: var(--intergalactic-spacing-content-padding-large, 16px); border-radius: var(--intergalactic-popper-rounded, 6px); box-sizing: border-box; box-shadow: var(--intergalactic-box-shadow-popper, 1px 1px 10px 0px oklch(0.176 0.033 175.7 / 0.07)); position: relative; &[theme='accent'] { - background-color: var(--intergalactic-feature-popover-bg, oklch(0.88 0.078 303)); - color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); + background-color: var(--intergalactic-feature-popover-bg-accent, oklch(0.92 0.052 303.1)); + color: var(--intergalactic-feature-popover-text, oklch(0.1 0.03 137 / 0.899)); } &[theme='neutral'] { background-color: var(--intergalactic-feature-popover-bg-neutral, oklch(0.23 0.01 140)); - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + color: var(--intergalactic-feature-popover-text-invert, oklch(0.999 0.001 180 / 0.949)); } } @@ -94,18 +94,18 @@ SSpot { &[theme='accent'] { &::before { - background-color: var(--intergalactic-feature-popover-dot-outer-border, oklch(0.88 0.078 303)); + background-color: var(--intergalactic-feature-popover-dot-outer-border-accent, oklch(0.92 0.052 303.1)); } &::after { - background-color: var(--intergalactic-feature-popover-bg, oklch(0.88 0.078 303)); + background-color: var(--intergalactic-feature-popover-dot-accent, oklch(0.74 0.17 303)); } } &[theme='neutral'] { &::before { - background-color: var(--intergalactic-feature-popover-dot-neutral-outer-border, oklch(0.88 0.078 303)); + background-color: var(--intergalactic-feature-popover-dot-outer-border-neutral, oklch(0.74 0.17 303)); } &::after { - background-color: var(--intergalactic-feature-popover-dot-neutral, oklch(0.88 0.078 303)); + background-color: var(--intergalactic-feature-popover-dot-neutral, oklch(0.74 0.17 303)); } } } diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx index 774448fa97..1d63943f36 100644 --- a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx +++ b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx @@ -34,7 +34,15 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify base feedback form styles', { tag: [ TAG.PRIORITY_HIGH, - '@feedback-form'], + '@feedback-form', + '@base-components', + '@flex-box', + '@button-link', + '@dropdown', + '@input', + '@link', + '@textarea', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/feedback/docs/examples/default_feedback_form.tsx', 'en'); @@ -93,7 +101,15 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify base feedback form loading styles', { tag: [ TAG.PRIORITY_HIGH, - '@feedback-form'], + '@feedback-form', + '@base-components', + '@flex-box', + '@button-link', + '@dropdown', + '@input', + '@link', + '@textarea', + '@typography'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/feedback/tests/examples/feedback_form_theme_loading.tsx', 'en'); if (browserName == 'webkit') test.skip(); // unstable @@ -131,7 +147,15 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { tag: [ TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@feedback-form'], + '@feedback-form', + '@base-components', + '@flex-box', + '@button-link', + '@dropdown', + '@input', + '@link', + '@textarea', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/feedback/docs/examples/default_feedback_form.tsx', 'en'); @@ -252,7 +276,15 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { tag: [ TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@feedback-form'], + '@feedback-form', + '@base-components', + '@flex-box', + '@button-link', + '@dropdown', + '@input', + '@link', + '@textarea', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/feedback/docs/examples/default_feedback_form.tsx', 'en'); @@ -286,7 +318,15 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { tag: [ TAG.PRIORITY_HIGH, TAG.MOUSE, - '@feedback-form'], + '@feedback-form', + '@base-components', + '@flex-box', + '@button-link', + '@dropdown', + '@input', + '@link', + '@textarea', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/feedback/docs/examples/default_feedback_form.tsx', 'en'); diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-loading-styles-1-chromium-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-loading-styles-1-chromium-linux.png index a3b0656e96..64f6c27944 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-loading-styles-1-chromium-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-loading-styles-1-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-loading-styles-1-firefox-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-loading-styles-1-firefox-linux.png index 1e3ca3848b..93d90623d7 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-loading-styles-1-firefox-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-loading-styles-1-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-1-chromium-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-1-chromium-linux.png index 80c974f960..4f6999a074 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-1-chromium-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-1-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-1-firefox-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-1-firefox-linux.png index 7187ec09b5..f03a5f17e8 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-1-firefox-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-1-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-1-webkit-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-1-webkit-linux.png index e4d505ecf4..cedcc203c8 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-1-webkit-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-1-webkit-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-2-chromium-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-2-chromium-linux.png index 13f4a84c6c..fe1fabd525 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-2-chromium-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-2-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-2-firefox-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-2-firefox-linux.png index 0ecb65b20c..12589eb1f8 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-2-firefox-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-2-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-2-webkit-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-2-webkit-linux.png index 50427fb276..bff7fe6da7 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-2-webkit-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-2-webkit-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-3-chromium-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-3-chromium-linux.png index a0f5719346..9af7212328 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-3-chromium-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-3-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-3-firefox-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-3-firefox-linux.png index 8208b18a4a..89a8b74e6c 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-3-firefox-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-3-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-3-webkit-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-3-webkit-linux.png index 415dccc77f..46a2c88d46 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-3-webkit-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-3-webkit-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-4-chromium-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-4-chromium-linux.png index cb5324de4f..aa171782bc 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-4-chromium-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-4-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-4-firefox-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-4-firefox-linux.png index c365726d46..8c2d06194e 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-4-firefox-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-4-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-4-webkit-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-4-webkit-linux.png index 57123b4662..c1ca18dc04 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-4-webkit-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-4-webkit-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-5-chromium-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-5-chromium-linux.png index ab12396996..7415c3269b 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-5-chromium-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-5-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-5-firefox-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-5-firefox-linux.png index 142c7a54fe..8b7398d950 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-5-firefox-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-5-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-5-webkit-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-5-webkit-linux.png index f4e17ab537..2677565f6a 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-5-webkit-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-5-webkit-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-6-chromium-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-6-chromium-linux.png index 430048b7d8..62c152f476 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-6-chromium-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-6-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-6-firefox-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-6-firefox-linux.png index 4721d497b1..d04637aefd 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-6-firefox-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-6-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-6-webkit-linux.png b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-6-webkit-linux.png index 9b65aa7ede..a66a1086d2 100644 Binary files a/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-6-webkit-linux.png and b/semcore/feedback-form/__tests__/feedback-form.browser-test.tsx-snapshots/-visual-Verify-base-feedback-form-styles-6-webkit-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx index 3a6875a2ff..5a3a17db58 100644 --- a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx +++ b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx @@ -34,7 +34,9 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify five stars form base example styles', { tag: [ TAG.PRIORITY_HIGH, - '@feedback-form'], + '@feedback-form', + '@button', + '@link'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/patterns/ux-patterns/feedback-rating/docs/examples/feedback_rating_form.tsx', 'en'); const checkboxInput = page.getByRole('checkbox'); @@ -117,7 +119,9 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify feedback rating with error notice on submit', { tag: [ TAG.PRIORITY_HIGH, - '@feedback-form'], + '@feedback-form', + '@button', + '@link'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/feedback-rating/tests/examples/with-error-on-send.tsx', 'en'); @@ -133,7 +137,9 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify feedback rating notice with title and subtitle', { tag: [ TAG.PRIORITY_HIGH, - '@feedback-form'], + '@feedback-form', + '@button', + '@link'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/feedback-rating/tests/examples/with-title-and-subtitle.tsx', 'en'); @@ -143,7 +149,10 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify feedback rating notice with illustration and feature highlight notice', { tag: [ TAG.PRIORITY_HIGH, - '@feedback-form'], + '@feedback-form', + '@button', + '@feature-highlight', + '@link'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/feedback-rating/tests/examples/with-custom-illustration-and-notice.tsx', 'en'); @@ -154,7 +163,12 @@ test.describe(`${TAG.VISUAL}`, () => { tag: [ TAG.PRIORITY_HIGH, '@feedback-form', - '@select'], + '@base-components', + '@flex-box', + '@button', + '@link', + '@select', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/feedback-rating/tests/examples/modal-width-variants.tsx', 'en'); @@ -191,7 +205,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { tag: [ TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@feedback-form'], + '@feedback-form', + '@button', + '@link'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/patterns/ux-patterns/feedback-rating/docs/examples/feedback_rating_form.tsx', 'en'); @@ -312,7 +328,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { tag: [ TAG.PRIORITY_HIGH, TAG.MOUSE, - '@feedback-form'], + '@feedback-form', + '@button', + '@link'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/patterns/ux-patterns/feedback-rating/docs/examples/feedback_rating_form.tsx', 'en'); diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-illustration-and-feature-highlight-notice-1-chromium-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-illustration-and-feature-highlight-notice-1-chromium-linux.png index e705d8a8f6..d455b2294d 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-illustration-and-feature-highlight-notice-1-chromium-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-illustration-and-feature-highlight-notice-1-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-illustration-and-feature-highlight-notice-1-firefox-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-illustration-and-feature-highlight-notice-1-firefox-linux.png index 400141cfff..100fab399f 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-illustration-and-feature-highlight-notice-1-firefox-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-illustration-and-feature-highlight-notice-1-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-illustration-and-feature-highlight-notice-1-webkit-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-illustration-and-feature-highlight-notice-1-webkit-linux.png index a0a9f55fad..0bc01b1d4a 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-illustration-and-feature-highlight-notice-1-webkit-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-illustration-and-feature-highlight-notice-1-webkit-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-title-and-subtitle-1-chromium-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-title-and-subtitle-1-chromium-linux.png index f343db30bf..0101a02f16 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-title-and-subtitle-1-chromium-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-title-and-subtitle-1-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-title-and-subtitle-1-firefox-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-title-and-subtitle-1-firefox-linux.png index 7c9e6e66e3..f2258befce 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-title-and-subtitle-1-firefox-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-title-and-subtitle-1-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-title-and-subtitle-1-webkit-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-title-and-subtitle-1-webkit-linux.png index 3950f86685..d70a46a568 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-title-and-subtitle-1-webkit-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-notice-with-title-and-subtitle-1-webkit-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-custom-modal-width-1-chromium-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-custom-modal-width-1-chromium-linux.png index df019ca9b3..9d81b90508 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-custom-modal-width-1-chromium-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-custom-modal-width-1-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-custom-modal-width-1-firefox-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-custom-modal-width-1-firefox-linux.png index 24deca5f6d..9797dd0344 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-custom-modal-width-1-firefox-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-custom-modal-width-1-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-custom-modal-width-1-webkit-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-custom-modal-width-1-webkit-linux.png index 4c2fd05941..c9286beddd 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-custom-modal-width-1-webkit-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-custom-modal-width-1-webkit-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-error-notice-on-submit-1-chromium-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-error-notice-on-submit-1-chromium-linux.png index 54f7da47e4..e06413f3cb 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-error-notice-on-submit-1-chromium-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-error-notice-on-submit-1-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-error-notice-on-submit-1-firefox-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-error-notice-on-submit-1-firefox-linux.png index a6fc70cf55..e001ed3bd1 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-error-notice-on-submit-1-firefox-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-error-notice-on-submit-1-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-error-notice-on-submit-1-webkit-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-error-notice-on-submit-1-webkit-linux.png index 450a78eed0..5b491a676c 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-error-notice-on-submit-1-webkit-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-feedback-rating-with-error-notice-on-submit-1-webkit-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-1-chromium-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-1-chromium-linux.png index 5532d1b1f7..e432d09d71 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-1-chromium-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-1-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-1-firefox-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-1-firefox-linux.png index d56691ba0a..795ba9e80c 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-1-firefox-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-1-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-1-webkit-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-1-webkit-linux.png index 0d05c5823c..e18c76f47e 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-1-webkit-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-1-webkit-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-2-chromium-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-2-chromium-linux.png index 6ca1284607..129de23250 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-2-chromium-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-2-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-2-firefox-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-2-firefox-linux.png index f60388de0b..3dc8bb212f 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-2-firefox-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-2-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-2-webkit-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-2-webkit-linux.png index df45dd86f6..f4e9e4f115 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-2-webkit-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-2-webkit-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-3-chromium-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-3-chromium-linux.png index 5aca0b1321..6f0d1a5a77 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-3-chromium-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-3-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-3-firefox-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-3-firefox-linux.png index 9460b42402..5842a07cb8 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-3-firefox-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-3-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-3-webkit-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-3-webkit-linux.png index 0ed055f30f..beb8dfafb9 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-3-webkit-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-3-webkit-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-4-chromium-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-4-chromium-linux.png index c690265b26..0114764543 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-4-chromium-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-4-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-4-firefox-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-4-firefox-linux.png index 502f0dbad0..65ea624396 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-4-firefox-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-4-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-5-chromium-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-5-chromium-linux.png index 525db91a58..6184ce7fad 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-5-chromium-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-5-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-5-firefox-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-5-firefox-linux.png index d0e5a4a9a0..7ba45d0b5d 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-5-firefox-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-5-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-6-chromium-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-6-chromium-linux.png index 3e651e33fa..3cfa35a283 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-6-chromium-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-6-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-6-firefox-linux.png b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-6-firefox-linux.png index 0174eb1469..5c6e3cf547 100644 Binary files a/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-6-firefox-linux.png and b/semcore/feedback-form/__tests__/five-star-form.browser-test.tsx-snapshots/-visual-Verify-five-stars-form-base-example-styles-6-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx index b972cd8041..8030018d29 100644 --- a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx +++ b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx @@ -45,8 +45,15 @@ test.describe(`${TAG.VISUAL}`, () => { tag: [ TAG.PRIORITY_HIGH, '@feedback-form', + '@base-components', + '@flex-box', + '@button', '@dropdown', - '@notice'], + '@input', + '@link', + '@notice', + '@textarea', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/feedback-yes-no/docs/examples/feedback-yes-no-example.tsx', 'en'); @@ -100,8 +107,15 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@feedback-form', + '@base-components', + '@flex-box', + '@button', '@dropdown', - '@notice'], + '@input', + '@link', + '@notice', + '@textarea', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/feedback-yes-no/docs/examples/feedback-yes-no-example.tsx', 'en'); @@ -239,8 +253,15 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { TAG.PRIORITY_HIGH, TAG.MOUSE, '@feedback-form', + '@base-components', + '@flex-box', + '@button', '@dropdown', - '@notice'], + '@input', + '@link', + '@notice', + '@textarea', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/feedback-yes-no/docs/examples/feedback-yes-no-example.tsx', 'en'); diff --git a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-1-chromium-linux.png b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-1-chromium-linux.png index a4db86da5a..f9a53d42af 100644 Binary files a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-1-chromium-linux.png and b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-1-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-1-firefox-linux.png b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-1-firefox-linux.png index cc4e143be9..be883ccfa2 100644 Binary files a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-1-firefox-linux.png and b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-1-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-1-webkit-linux.png b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-1-webkit-linux.png index 734ceee87e..3e5e5f7fcb 100644 Binary files a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-1-webkit-linux.png and b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-1-webkit-linux.png differ diff --git a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-2-chromium-linux.png b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-2-chromium-linux.png index a3a81d702e..0a2a2dcb20 100644 Binary files a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-2-chromium-linux.png and b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-2-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-2-firefox-linux.png b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-2-firefox-linux.png index 3d7ac7ee37..702c268407 100644 Binary files a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-2-firefox-linux.png and b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-2-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-2-webkit-linux.png b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-2-webkit-linux.png index 7fad369fcb..f0e0ec5635 100644 Binary files a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-2-webkit-linux.png and b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-2-webkit-linux.png differ diff --git a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-3-chromium-linux.png b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-3-chromium-linux.png index 4d7b9dc35e..db6c4c7d09 100644 Binary files a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-3-chromium-linux.png and b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-3-chromium-linux.png differ diff --git a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-3-firefox-linux.png b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-3-firefox-linux.png index 3b4aa44f2e..ce93dd6e4b 100644 Binary files a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-3-firefox-linux.png and b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-3-firefox-linux.png differ diff --git a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-3-webkit-linux.png b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-3-webkit-linux.png index b38057038a..cb4b667437 100644 Binary files a/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-3-webkit-linux.png and b/semcore/feedback-form/__tests__/yes-no-form.browser-test.tsx-snapshots/-visual-Verify-yes-no-form-base-example-styles-3-webkit-linux.png differ diff --git a/semcore/feedback-form/src/style/checkbox-button.shadow.css b/semcore/feedback-form/src/style/checkbox-button.shadow.css index ee72f4f557..85e31f1d07 100644 --- a/semcore/feedback-form/src/style/checkbox-button.shadow.css +++ b/semcore/feedback-form/src/style/checkbox-button.shadow.css @@ -1,6 +1,7 @@ SCheckboxButton { margin-top: var(--intergalactic-spacing-2x, 8px); - border: 1px solid var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); + /* add background-color: var(--intergalactic-control-checkbox-button-bg-normal); */ + border: 1px solid var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); /* TODO: --intergalactic-control-checkbox-button-border */ border-radius: var(--intergalactic-rounded-medium, 6px); label { @@ -12,10 +13,10 @@ SCheckboxButton { SCheckboxButton:hover, SCheckboxButton[checked] { cursor: pointer; - border-color: var(--intergalactic-border-info-active, oklch(0.7 0.131 275.2)); - background-color: rgba(0, 143, 248, 0.10); + border-color: var(--intergalactic-border-info-active, oklch(0.7 0.131 275.2)); /* TODO: --intergalactic-control-checkbox-button-border-selected */ + background-color: rgba(0, 143, 248, 0.10); /* TODO: --intergalactic-control-checkbox-button-bg-hover on :hover:not([checked]), --intergalactic-control-checkbox-button-bg-selected on [checked] */ } SCheckboxButton[checked]:hover { - background-color: rgba(0, 143, 248, 0.20); + background-color: rgba(0, 143, 248, 0.20); /* TODO: --intergalactic-control-checkbox-button-bg-selected-hover */ } diff --git a/semcore/feedback-form/src/style/slider-rating.shadow.css b/semcore/feedback-form/src/style/slider-rating.shadow.css index e0a3494905..530efc85a7 100644 --- a/semcore/feedback-form/src/style/slider-rating.shadow.css +++ b/semcore/feedback-form/src/style/slider-rating.shadow.css @@ -19,10 +19,10 @@ SStar[filled]:active { } SStar path { - fill: var(--intergalactic-slider-rating-normal, oklch(0.7 0.003 162.2)); -} + fill: var(--intergalactic-slider-rating-normal, oklch(0.8 0.003 169.6)); +} /* TODO: --intergalactic-control-slider-rating-icon */ SStar[filled] path { stroke-width: 0; - fill: var(--intergalactic-slider-rating-hover-active, oklch(0.66 0.212 300.1)); + fill: var(--intergalactic-slider-rating-hover-active, oklch(0.66 0.212 300.1)); /* TODO: --intergalactic-control-slider-rating-icon-hover-active */ } diff --git a/semcore/flags/src/style/flags.shadow.css b/semcore/flags/src/style/flags.shadow.css index 6f1e406439..910cd86196 100644 --- a/semcore/flags/src/style/flags.shadow.css +++ b/semcore/flags/src/style/flags.shadow.css @@ -12,7 +12,7 @@ SFlags { display: block; width: 14px; height: 11px; - background-color: var(--intergalactic-bg-secondary-neutral-active, oklch(0.94 0.002 180)); + background-color: var(--intergalactic-bg-secondary-neutral-active, oklch(0.96 0.001 180)); z-index: -1; } } @@ -21,7 +21,7 @@ SFlags[data-capital-letters] { display: inline-flex; justify-content: center; align-items: center; - background: var(--intergalactic-bg-primary-neutral-active, oklch(0.97 0.001 180)); + background: var(--intergalactic-bg-primary-neutral-active, oklch(0.96 0.001 180)); &::before { content: attr(data-capital-letters); diff --git a/semcore/fullscreen-modal/__tests__/__snapshots__/index.test.tsx.snap b/semcore/fullscreen-modal/__tests__/__snapshots__/index.test.tsx.snap index 5997ac9dca..a3f6c1dbf1 100644 --- a/semcore/fullscreen-modal/__tests__/__snapshots__/index.test.tsx.snap +++ b/semcore/fullscreen-modal/__tests__/__snapshots__/index.test.tsx.snap @@ -56,8 +56,13 @@ exports[`FullscreenModal > Verify data-ui-name 1`] = ` "uiName": "Link.Addon", }, { - "children": [], - "uiName": "ButtonLink.Text", + "children": [ + { + "children": [], + "uiName": "ButtonLink.Text", + }, + ], + "uiName": "Link.Text", }, ], "uiName": "FullscreenModal.Back.InnerWrapper", diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-1-chromium-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-1-chromium-linux.png index bc5af5ad54..a113c11c41 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-1-chromium-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-1-chromium-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-1-firefox-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-1-firefox-linux.png index 910b5afb44..ab27e9295e 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-1-firefox-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-1-firefox-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-1-webkit-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-1-webkit-linux.png index d2cc120f52..d12f7ec3b0 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-1-webkit-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-1-webkit-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-2-chromium-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-2-chromium-linux.png index 3556ce7ff6..6777fe7d30 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-2-chromium-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-2-chromium-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-2-firefox-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-2-firefox-linux.png index 910b5afb44..ab27e9295e 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-2-firefox-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-2-firefox-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-2-webkit-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-2-webkit-linux.png index e102a6dc82..ea1941895d 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-2-webkit-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-dual-zone-render-and-styles-2-webkit-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-all-features-enabled-1-chromium-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-all-features-enabled-1-chromium-linux.png index 9f8f4c5c63..36943b24ac 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-all-features-enabled-1-chromium-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-all-features-enabled-1-chromium-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-all-features-enabled-1-firefox-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-all-features-enabled-1-firefox-linux.png index 4d117ccdd9..e4fa5f326e 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-all-features-enabled-1-firefox-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-all-features-enabled-1-firefox-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-all-features-enabled-1-webkit-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-all-features-enabled-1-webkit-linux.png index e55efa5a9c..3845d8b049 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-all-features-enabled-1-webkit-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-all-features-enabled-1-webkit-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-back-long-title-no-custom-close-1-chromium-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-back-long-title-no-custom-close-1-chromium-linux.png index c7b44ca07a..822b4dec83 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-back-long-title-no-custom-close-1-chromium-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-back-long-title-no-custom-close-1-chromium-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-back-long-title-no-custom-close-1-firefox-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-back-long-title-no-custom-close-1-firefox-linux.png index 85a7d95cf3..cbe596c95e 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-back-long-title-no-custom-close-1-firefox-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-back-long-title-no-custom-close-1-firefox-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-back-long-title-no-custom-close-1-webkit-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-back-long-title-no-custom-close-1-webkit-linux.png index a53317c386..b5b49c8af6 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-back-long-title-no-custom-close-1-webkit-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-back-long-title-no-custom-close-1-webkit-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-back-title-desc-tooltip-1-chromium-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-back-title-desc-tooltip-1-chromium-linux.png index 61aa884a30..a02386bc72 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-back-title-desc-tooltip-1-chromium-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-back-title-desc-tooltip-1-chromium-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-back-title-desc-tooltip-1-firefox-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-back-title-desc-tooltip-1-firefox-linux.png index ea2b53cc61..bf2f13a331 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-back-title-desc-tooltip-1-firefox-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-back-title-desc-tooltip-1-firefox-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-back-title-desc-tooltip-1-webkit-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-back-title-desc-tooltip-1-webkit-linux.png index 26d92c72c2..c03ad9d8cc 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-back-title-desc-tooltip-1-webkit-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-back-title-desc-tooltip-1-webkit-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-desc-only-1-chromium-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-desc-only-1-chromium-linux.png index ed30fb4833..879ba3d8c8 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-desc-only-1-chromium-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-desc-only-1-chromium-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-desc-only-1-firefox-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-desc-only-1-firefox-linux.png index 9f6fdd40a7..b1573904b8 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-desc-only-1-firefox-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-desc-only-1-firefox-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-desc-only-1-webkit-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-desc-only-1-webkit-linux.png index d8bc99a4e6..82c98e575d 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-desc-only-1-webkit-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-desc-only-1-webkit-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-short-title-desc-1-chromium-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-short-title-desc-1-chromium-linux.png index 4eeeaee8b5..4c1962c315 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-short-title-desc-1-chromium-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-short-title-desc-1-chromium-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-short-title-desc-1-firefox-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-short-title-desc-1-firefox-linux.png index 3f57ba9cfc..f532750dd4 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-short-title-desc-1-firefox-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-short-title-desc-1-firefox-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-short-title-desc-1-webkit-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-short-title-desc-1-webkit-linux.png index b0f4e06738..a8b2ef01ee 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-short-title-desc-1-webkit-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-close-short-title-desc-1-webkit-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-empty-header-1-chromium-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-empty-header-1-chromium-linux.png index f8e8e3478a..4f13e7d2ef 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-empty-header-1-chromium-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-empty-header-1-chromium-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-empty-header-1-firefox-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-empty-header-1-firefox-linux.png index 26bc8fe0b9..b25876d471 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-empty-header-1-firefox-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-empty-header-1-firefox-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-empty-header-1-webkit-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-empty-header-1-webkit-linux.png index b163b03417..180e4669b7 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-empty-header-1-webkit-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-empty-header-1-webkit-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-long-title-desc-wrapping-1-chromium-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-long-title-desc-wrapping-1-chromium-linux.png index 2bb0f8a162..42de17f122 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-long-title-desc-wrapping-1-chromium-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-long-title-desc-wrapping-1-chromium-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-long-title-desc-wrapping-1-firefox-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-long-title-desc-wrapping-1-firefox-linux.png index 70358f4684..9a5cab82b6 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-long-title-desc-wrapping-1-firefox-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-long-title-desc-wrapping-1-firefox-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-long-title-desc-wrapping-1-webkit-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-long-title-desc-wrapping-1-webkit-linux.png index 1f98b78c2f..a42e9df797 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-long-title-desc-wrapping-1-webkit-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-long-title-desc-wrapping-1-webkit-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-not-closable-no-close-button-1-chromium-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-not-closable-no-close-button-1-chromium-linux.png index 0bf8f040a3..e3ff8d7859 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-not-closable-no-close-button-1-chromium-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-not-closable-no-close-button-1-chromium-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-not-closable-no-close-button-1-firefox-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-not-closable-no-close-button-1-firefox-linux.png index 7f93c5ac93..f7b6f873e0 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-not-closable-no-close-button-1-firefox-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-not-closable-no-close-button-1-firefox-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-not-closable-no-close-button-1-webkit-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-not-closable-no-close-button-1-webkit-linux.png index 1863839894..fdc3f43e8d 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-not-closable-no-close-button-1-webkit-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-configuration-not-closable-no-close-button-1-webkit-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-is-fixed-when-scrolling-body-1-chromium-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-is-fixed-when-scrolling-body-1-chromium-linux.png index 6cc7137c1f..047e7e85c5 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-is-fixed-when-scrolling-body-1-chromium-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-is-fixed-when-scrolling-body-1-chromium-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-is-fixed-when-scrolling-body-1-firefox-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-is-fixed-when-scrolling-body-1-firefox-linux.png index f541ba8ab2..a09ed39a2e 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-is-fixed-when-scrolling-body-1-firefox-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-header-is-fixed-when-scrolling-body-1-firefox-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-1-chromium-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-1-chromium-linux.png index 4949369049..49a647f106 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-1-chromium-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-1-chromium-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-1-firefox-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-1-firefox-linux.png index 0535090efe..c9cd8305d3 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-1-firefox-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-1-firefox-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-1-webkit-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-1-webkit-linux.png index d8470ee1ca..0245178fd3 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-1-webkit-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-1-webkit-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-2-chromium-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-2-chromium-linux.png index f4e7066bd8..060e2f3796 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-2-chromium-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-2-chromium-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-2-firefox-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-2-firefox-linux.png index 1f08ccdd5f..f7b7801de5 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-2-firefox-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-2-firefox-linux.png differ diff --git a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-2-webkit-linux.png b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-2-webkit-linux.png index a04d32905e..cc709bcfbc 100644 Binary files a/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-2-webkit-linux.png and b/semcore/fullscreen-modal/__tests__/fullscreen-modal.browser-test.tsx-snapshots/-visual-Verify-navigation-when-no-footer-and-1-zone-in-body-2-webkit-linux.png differ diff --git a/semcore/fullscreen-modal/src/FullscreenModal.jsx b/semcore/fullscreen-modal/src/FullscreenModal.jsx index 9700d9d5e9..ec9b28378b 100644 --- a/semcore/fullscreen-modal/src/FullscreenModal.jsx +++ b/semcore/fullscreen-modal/src/FullscreenModal.jsx @@ -124,7 +124,7 @@ function Close(props) { const { getI18nText } = props; return sstyled(props.styles)( - + , diff --git a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-editable-tag-with-save-button-hover-1-chromium-linux.png b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-editable-tag-with-save-button-hover-1-chromium-linux.png index b494704456..0df8ef5384 100644 Binary files a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-editable-tag-with-save-button-hover-1-chromium-linux.png and b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-editable-tag-with-save-button-hover-1-chromium-linux.png differ diff --git a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-editable-tag-with-save-button-hover-1-firefox-linux.png b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-editable-tag-with-save-button-hover-1-firefox-linux.png index bbed767a20..a50d2ce1f0 100644 Binary files a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-editable-tag-with-save-button-hover-1-firefox-linux.png and b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-editable-tag-with-save-button-hover-1-firefox-linux.png differ diff --git a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-editable-tag-with-save-button-hover-1-webkit-linux.png b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-editable-tag-with-save-button-hover-1-webkit-linux.png index f1ec673343..268e68b45d 100644 Binary files a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-editable-tag-with-save-button-hover-1-webkit-linux.png and b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-editable-tag-with-save-button-hover-1-webkit-linux.png differ diff --git a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-1-chromium-linux.png b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-1-chromium-linux.png index e774a5d6a8..f414d8b66e 100644 Binary files a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-1-chromium-linux.png and b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-1-chromium-linux.png differ diff --git a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-1-firefox-linux.png b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-1-firefox-linux.png index aa3b2062bb..f41647db41 100644 Binary files a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-1-firefox-linux.png and b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-1-firefox-linux.png differ diff --git a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-1-webkit-linux.png b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-1-webkit-linux.png index dbb86def71..56501426e8 100644 Binary files a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-1-webkit-linux.png and b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-1-webkit-linux.png differ diff --git a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-2-chromium-linux.png b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-2-chromium-linux.png index f5825ea958..c3ae0511ab 100644 Binary files a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-2-chromium-linux.png and b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-2-chromium-linux.png differ diff --git a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-2-firefox-linux.png b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-2-firefox-linux.png index c6fe2e0d29..79ced5b8a3 100644 Binary files a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-2-firefox-linux.png and b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-2-firefox-linux.png differ diff --git a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-2-webkit-linux.png b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-2-webkit-linux.png index 8579e65f14..aaf9cbfa03 100644 Binary files a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-2-webkit-linux.png and b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-2-webkit-linux.png differ diff --git a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-3-chromium-linux.png b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-3-chromium-linux.png index 5621349f56..7cb47edd00 100644 Binary files a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-3-chromium-linux.png and b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-3-chromium-linux.png differ diff --git a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-3-firefox-linux.png b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-3-firefox-linux.png index da89366fdd..5471cd3deb 100644 Binary files a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-3-firefox-linux.png and b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-3-firefox-linux.png differ diff --git a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-3-webkit-linux.png b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-3-webkit-linux.png index bf35712433..5fadc007b6 100644 Binary files a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-3-webkit-linux.png and b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-3-webkit-linux.png differ diff --git a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-4-chromium-linux.png b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-4-chromium-linux.png index cd3e98847b..beeeac9da1 100644 Binary files a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-4-chromium-linux.png and b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-4-chromium-linux.png differ diff --git a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-4-firefox-linux.png b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-4-firefox-linux.png index f7ed0c9cfb..9f5d54ff59 100644 Binary files a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-4-firefox-linux.png and b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-4-firefox-linux.png differ diff --git a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-4-webkit-linux.png b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-4-webkit-linux.png index c1b8682084..73f7dcf375 100644 Binary files a/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-4-webkit-linux.png and b/semcore/inline-edit/__tests__/inline-edit.browser-test.tsx-snapshots/-visual-Verify-simple-use-visual-states-4-webkit-linux.png differ diff --git a/semcore/inline-edit/src/style/inline-edit.shadow.css b/semcore/inline-edit/src/style/inline-edit.shadow.css index 899a3d0fa3..72569162c1 100644 --- a/semcore/inline-edit/src/style/inline-edit.shadow.css +++ b/semcore/inline-edit/src/style/inline-edit.shadow.css @@ -17,4 +17,5 @@ SEdit { SView { cursor: pointer; + border-radius: calc(var(--intergalactic-control-rounded, 6px) - 2px); } diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx b/semcore/inline-input/__tests__/inline-input.browser-test.tsx index 9578e071d6..d0a302fd37 100644 --- a/semcore/inline-input/__tests__/inline-input.browser-test.tsx +++ b/semcore/inline-input/__tests__/inline-input.browser-test.tsx @@ -22,22 +22,6 @@ export const locators = { }; -// Matches the CSS fallback colors after the test bundle normalizes them. -const cssVarColorFallbacks: Record = { - '--intergalactic-bg-primary-neutral': 'oklch(1 0 0)', -}; - -const getCssVarColor = async (page: Page, varName: string) => { - return page.evaluate(({ name, fallback }) => { - const probe = document.createElement('div'); - probe.style.backgroundColor = fallback ? `var(${name}, ${fallback})` : `var(${name})`; - document.body.appendChild(probe); - const color = getComputedStyle(probe).backgroundColor; - probe.remove(); - return color; - }, { name: varName, fallback: cssVarColorFallbacks[varName] }); -}; - /* ===================================================== @visual Visual states, hover and focus styles, paddings, margins, and snapshots. @@ -61,9 +45,9 @@ test.describe(`${TAG.VISUAL} `, () => { const confirm = flex.locator('[data-ui-name="InlineInput.ConfirmControl"]'); const cancel = flex.locator('[data-ui-name="InlineInput.CancelControl"]'); - await expect(value.first()).toHaveCSS('padding', '0px 4px'); + await expect(value.first()).toHaveCSS('padding', '4px'); await expect(confirm.first()).toHaveCSS('padding', '0px 4px'); - await expect(cancel.first()).toHaveCSS('padding', '0px 4px'); + await expect(cancel.first()).toHaveCSS('padding', '0px 4px 0px 0px'); await expect(page).toHaveScreenshot(); }); @@ -90,9 +74,9 @@ test.describe(`${TAG.VISUAL} `, () => { await page.keyboard.press('Tab'); await expect(page).toHaveScreenshot(); - await expect(value.first()).toHaveCSS('padding', '0px 4px'); + await expect(value.first()).toHaveCSS('padding', '4px'); await expect(confirm.first()).toHaveCSS('padding', '0px 4px'); - await expect(cancel.first()).toHaveCSS('padding', '0px 4px'); + await expect(cancel.first()).toHaveCSS('padding', '0px 4px 0px 0px'); await expect(addon.first()).toHaveCSS('padding', '0px 4px'); }); }); @@ -109,7 +93,6 @@ test.describe(`${TAG.VISUAL} `, () => { '@input-number'], }, async ({ page }) => { await loadPage(page, 'stories/components/inline-input/tests/examples/styles.tsx', 'en', item); - const bgPrimary = await getCssVarColor(page, '--intergalactic-bg-primary-neutral'); const flex = await page.locator('[data-testid="no-controls"]'); const value = flex.locator('[data-ui-name="InlineInput.Value"]'); @@ -117,11 +100,11 @@ test.describe(`${TAG.VISUAL} `, () => { await page.keyboard.press('Tab'); await expect(page).toHaveScreenshot(); - await expect(value.first()).toHaveCSS('padding', '0px 4px'); + await expect(value.first()).toHaveCSS('padding', '4px'); await expect(input.first()).toHaveCSS('align-items', 'center'); await expect(input.first()).toHaveCSS('vertical-align', 'middle'); await expect(input.first()).toHaveCSS('padding', '1px'); - await expect(input.first()).toHaveCSS('background-color', bgPrimary); + await expect(input.first()).toHaveCSS('background-color', 'rgba(0, 0, 0, 0)'); }); }); @@ -151,15 +134,20 @@ test.describe(`${TAG.VISUAL} `, () => { await loadPage(page, 'stories/components/inline-input/docs/examples/basic_usage.tsx', 'en'); const inlineInput = page.locator('[data-ui-name="InlineInput"]'); - const addon = page.locator('[data-ui-name="InlineInput.Addon"]'); const value = page.locator('[data-ui-name="InlineInput.Value"]'); const save = inlineInput.locator('[data-ui-name="InlineInput.ConfirmControl"]'); + const cancel = inlineInput.locator('[data-ui-name="InlineInput.CancelControl"]'); await test.step('Verify Hint shown on Hover and Focus is on Input', async () => { await expect(value).toHaveAttribute('value', 'John Doe'); + await expect(save).toBeHidden(); + await expect(cancel).toBeHidden(); - await addon.click(); + await value.click(); + await expect(value).toBeFocused(); + await expect(save).toBeVisible(); + await expect(cancel).toBeVisible(); await save.hover(); await page.waitForSelector('text="Save"'); @@ -539,11 +527,17 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { await loadPage(page, 'stories/components/inline-input/docs/examples/basic_usage.tsx', 'en'); const save = locators.inlineInput(page).locator('[data-ui-name="InlineInput.ConfirmControl"]'); + const cancel = locators.inlineInput(page).locator('[data-ui-name="InlineInput.CancelControl"]'); - await test.step('Verify input focuses when clicking on addon', async () => { + await test.step('Verify Save and Cancel appear when clicking on input', async () => { await expect(locators.value(page)).toHaveAttribute('value', 'John Doe'); - await locators.addon(page).click(); + await expect(save).toBeHidden(); + await expect(cancel).toBeHidden(); + + await locators.value(page).click(); await expect(locators.value(page)).toBeFocused(); + await expect(save).toBeVisible(); + await expect(cancel).toBeVisible(); }); await test.step('Verify focuse removes when clicking on button', async () => { diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-1-chromium-linux.png index e33ce9a64a..3444eda95f 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-1-firefox-linux.png index 1a08fbe04e..2bd36df94f 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-1-webkit-linux.png index 6419e48c14..0658128430 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-1-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-chromium-linux.png index 6021e8ee1a..38d7a7fafb 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-firefox-linux.png index c1fafea998..fcd4eb95ac 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-webkit-linux.png index 3d89f94502..71231e1228 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-chromium-linux.png index 896c8c766d..12433a74ca 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-firefox-linux.png index 89fc21d6fc..1378c35d21 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-webkit-linux.png index 28bc315f27..1f0e9cb702 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-1-chromium-linux.png index 0bdb59ef18..fee45ed59c 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-1-firefox-linux.png index e071354b34..b466f57763 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-1-webkit-linux.png index 45f297d768..da1411f2ba 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-1-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-2-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-2-chromium-linux.png index fe143193cc..2cf8565e05 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-2-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-2-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-2-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-2-firefox-linux.png index 6751146c3c..b466f57763 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-2-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-2-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-2-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-2-webkit-linux.png index d4a38c2866..1c32843e8d 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-2-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Inheriting-text-size-2-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-chromium-linux.png index 25ed9940e6..660d2aefc7 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-firefox-linux.png index 9a9325feda..13c2d89c72 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-webkit-linux.png index 903f8101e6..0ae864c8b7 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-chromium-linux.png index 13ceedfcb8..b2976b1a95 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-firefox-linux.png index 7a9ffc6e05..7e5f674972 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-webkit-linux.png index 43da486764..4d400ba411 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-invalid-default-value-Joe-John-placeholder-null-styles-and-focus-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-invalid-default-value-Joe-John-placeholder-null-styles-and-focus-1-chromium-linux.png index 3695351808..81c2ed4fda 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-invalid-default-value-Joe-John-placeholder-null-styles-and-focus-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-invalid-default-value-Joe-John-placeholder-null-styles-and-focus-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-invalid-default-value-Joe-John-placeholder-null-styles-and-focus-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-invalid-default-value-Joe-John-placeholder-null-styles-and-focus-1-firefox-linux.png index 1e8a32d040..0721fdba36 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-invalid-default-value-Joe-John-placeholder-null-styles-and-focus-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-invalid-default-value-Joe-John-placeholder-null-styles-and-focus-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-invalid-default-value-Joe-John-placeholder-null-styles-and-focus-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-invalid-default-value-Joe-John-placeholder-null-styles-and-focus-1-webkit-linux.png index a6e183eba0..c4e639bcf0 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-invalid-default-value-Joe-John-placeholder-null-styles-and-focus-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-invalid-default-value-Joe-John-placeholder-null-styles-and-focus-1-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-normal-default-v-ea08f-hn-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-normal-default-v-ea08f-hn-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png index 7a0909645f..c5d58eebb2 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-normal-default-v-ea08f-hn-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-normal-default-v-ea08f-hn-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-normal-default-v-ea08f-hn-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-normal-default-v-ea08f-hn-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png index c154ad9a0c..de253f620a 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-normal-default-v-ea08f-hn-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-normal-default-v-ea08f-hn-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-normal-default-v-ea08f-hn-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-normal-default-v-ea08f-hn-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png index 8739586203..ac77369f8b 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-normal-default-v-ea08f-hn-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-normal-default-v-ea08f-hn-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-valid-default-va-d00dd-ll-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-valid-default-va-d00dd-ll-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png index f762cebd16..b33dba6076 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-valid-default-va-d00dd-ll-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-valid-default-va-d00dd-ll-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-valid-default-va-d00dd-ll-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-valid-default-va-d00dd-ll-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png index 147c9d2e29..13b9d39d58 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-valid-default-va-d00dd-ll-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-valid-default-va-d00dd-ll-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-valid-default-va-d00dd-ll-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-valid-default-va-d00dd-ll-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png index 19f7fa73a6..f3a9b5be65 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-valid-default-va-d00dd-ll-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-active-state-valid-default-va-d00dd-ll-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-chromium-linux.png index b65b389dc5..fd040a9fbb 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-firefox-linux.png index 70147c9f08..b5d38122bf 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-webkit-linux.png index b1da3654d8..d470b1d34d 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-chromium-linux.png index 37edcf823d..5e4adddfbc 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-firefox-linux.png index f837537ae3..667e05726a 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-webkit-linux.png index 90ddd8b599..ef2b0713da 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-invalid-defaul-4e0eb--Joe-John-placeholder-null-styles-and-focus-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-invalid-defaul-4e0eb--Joe-John-placeholder-null-styles-and-focus-1-chromium-linux.png index 3ad12d34b9..fd13052f14 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-invalid-defaul-4e0eb--Joe-John-placeholder-null-styles-and-focus-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-invalid-defaul-4e0eb--Joe-John-placeholder-null-styles-and-focus-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-invalid-defaul-4e0eb--Joe-John-placeholder-null-styles-and-focus-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-invalid-defaul-4e0eb--Joe-John-placeholder-null-styles-and-focus-1-firefox-linux.png index 0085fa93f9..da7d455b21 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-invalid-defaul-4e0eb--Joe-John-placeholder-null-styles-and-focus-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-invalid-defaul-4e0eb--Joe-John-placeholder-null-styles-and-focus-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-invalid-defaul-4e0eb--Joe-John-placeholder-null-styles-and-focus-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-invalid-defaul-4e0eb--Joe-John-placeholder-null-styles-and-focus-1-webkit-linux.png index b0ef1968b5..cff739f4e4 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-invalid-defaul-4e0eb--Joe-John-placeholder-null-styles-and-focus-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-invalid-defaul-4e0eb--Joe-John-placeholder-null-styles-and-focus-1-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-normal-default-e79e6-hn-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-normal-default-e79e6-hn-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png index 80857d164d..be7639c58d 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-normal-default-e79e6-hn-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-normal-default-e79e6-hn-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-normal-default-e79e6-hn-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-normal-default-e79e6-hn-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png index e938b1e995..684ae81fa9 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-normal-default-e79e6-hn-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-normal-default-e79e6-hn-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-normal-default-e79e6-hn-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-normal-default-e79e6-hn-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png index 0fda58e273..58bf226096 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-normal-default-e79e6-hn-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-normal-default-e79e6-hn-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-valid-default--c39f2-ll-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-valid-default--c39f2-ll-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png index 025d5e2c30..a244f972df 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-valid-default--c39f2-ll-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-valid-default--c39f2-ll-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-valid-default--c39f2-ll-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-valid-default--c39f2-ll-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png index a864b03a86..ccc724e3d1 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-valid-default--c39f2-ll-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-valid-default--c39f2-ll-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-valid-default--c39f2-ll-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-valid-default--c39f2-ll-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png index 03e89df115..8ea91967d3 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-valid-default--c39f2-ll-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-disabled-state-valid-default--c39f2-ll-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-invalid-default-40d39--Joe-John-placeholder-null-styles-and-focus-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-invalid-default-40d39--Joe-John-placeholder-null-styles-and-focus-1-chromium-linux.png index 97c41bc428..955f994c7c 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-invalid-default-40d39--Joe-John-placeholder-null-styles-and-focus-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-invalid-default-40d39--Joe-John-placeholder-null-styles-and-focus-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-invalid-default-40d39--Joe-John-placeholder-null-styles-and-focus-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-invalid-default-40d39--Joe-John-placeholder-null-styles-and-focus-1-firefox-linux.png index e147cc8a75..13d445f70e 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-invalid-default-40d39--Joe-John-placeholder-null-styles-and-focus-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-invalid-default-40d39--Joe-John-placeholder-null-styles-and-focus-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-invalid-default-40d39--Joe-John-placeholder-null-styles-and-focus-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-invalid-default-40d39--Joe-John-placeholder-null-styles-and-focus-1-webkit-linux.png index 81d328c711..9cd18db7ce 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-invalid-default-40d39--Joe-John-placeholder-null-styles-and-focus-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-invalid-default-40d39--Joe-John-placeholder-null-styles-and-focus-1-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-normal-default--09234-hn-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-normal-default--09234-hn-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png index 44d9d858eb..963dea85af 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-normal-default--09234-hn-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-normal-default--09234-hn-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-normal-default--09234-hn-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-normal-default--09234-hn-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png index 3a7984a63d..a5c60f3e65 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-normal-default--09234-hn-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-normal-default--09234-hn-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-normal-default--09234-hn-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-normal-default--09234-hn-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png index 5f1322ea2f..010fc89317 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-normal-default--09234-hn-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-normal-default--09234-hn-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-valid-default-v-7fa0b-ll-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-valid-default-v-7fa0b-ll-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png index 179944ef98..c5c4433c26 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-valid-default-v-7fa0b-ll-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-valid-default-v-7fa0b-ll-placeholder-Placeholder-styles-and-focus-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-valid-default-v-7fa0b-ll-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-valid-default-v-7fa0b-ll-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png index 30812e0d92..a4669aade9 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-valid-default-v-7fa0b-ll-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-valid-default-v-7fa0b-ll-placeholder-Placeholder-styles-and-focus-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-valid-default-v-7fa0b-ll-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-valid-default-v-7fa0b-ll-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png index 4ec446d5a8..97da9dd295 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-valid-default-v-7fa0b-ll-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-loading-state-valid-default-v-7fa0b-ll-placeholder-Placeholder-styles-and-focus-1-webkit-linux.png differ diff --git a/semcore/inline-input/src/InlineInput.tsx b/semcore/inline-input/src/InlineInput.tsx index bc7be7da45..6a4f97fb52 100644 --- a/semcore/inline-input/src/InlineInput.tsx +++ b/semcore/inline-input/src/InlineInput.tsx @@ -1,4 +1,4 @@ -import { Box, InvalidStateBox } from '@semcore/base-components'; +import { Box } from '@semcore/base-components'; import { ButtonLink } from '@semcore/button'; import type { Intergalactic } from '@semcore/core'; import { createComponent, Component, sstyled, Root, lastInteraction } from '@semcore/core'; @@ -224,13 +224,11 @@ class InlineInputBase extends Component< render() { const SInlineInput = Root; const SUnderline = 'div'; - const SInvalidPattern = InvalidStateBox; - const { Children, styles, state } = this.asProps; + const { Children, styles } = this.asProps; return sstyled(styles)( - {state === 'invalid' && } , diff --git a/semcore/inline-input/src/style/inline-input.shadow.css b/semcore/inline-input/src/style/inline-input.shadow.css index b2f2b32e07..930bb99c48 100644 --- a/semcore/inline-input/src/style/inline-input.shadow.css +++ b/semcore/inline-input/src/style/inline-input.shadow.css @@ -1,20 +1,17 @@ SInlineInput { display: inline-flex; - width: 100%; + width: fit-content; + max-width: 100%; height: 100%; align-items: center; position: relative; - z-index: 0; vertical-align: middle; /* disable-tokens-validator */ padding: 1px; box-sizing: border-box; - background-color: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); - SConfirmIcon:not([color]) { - color: var(--intergalactic-icon-secondary-success, oklch(0.711 0.146 166.9)); - cursor: pointer; + color: var(--intergalactic-icon-secondary-success, oklch(0.787 0.16 167.8 / 0.898)); } SConfirmIcon:not([color]):hover { @@ -22,8 +19,7 @@ SInlineInput { } SCancelIcon:not([color]) { - color: var(--intergalactic-icon-secondary-neutral, oklch(0.104 0.023 162.3 / 0.385)); - cursor: pointer; + color: var(--intergalactic-icon-secondary-neutral, oklch(0.118 0.023 170.1 / 0.262)); } SCancelIcon:not([color]):hover { @@ -31,12 +27,13 @@ SInlineInput { } SValue { - /* hack for firefox */ + flex: 0 1 auto; min-width: 0; + max-width: 100%; + width: auto; - width: 100%; height: 100%; - padding: 0 var(--intergalactic-spacing-1x, 4px); + padding: var(--intergalactic-spacing-1x, 4px); border: none; box-sizing: border-box; color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); @@ -46,6 +43,11 @@ SInlineInput { font-family: inherit; background: transparent; min-height: 1em; + text-decoration-line: underline; + text-decoration-style: dotted; + text-decoration-thickness: 2px; + text-decoration-color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); + text-underline-offset: 17%; &:focus, &:focus-visible { outline: none; @@ -79,15 +81,26 @@ SInlineInput[disabled] { SUnderline { display: flex; - flex-direction: row; align-items: center; - flex-grow: 1; + min-width: 0; width: 100%; height: 100%; min-height: 1em; border: 1px solid transparent; - border-bottom: 1px solid var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); + border-radius: var(--intergalactic-control-rounded, 6px); outline-color: transparent; + transition-duration: calc(var(--intergalactic-duration-extra-fast, 100) * 1ms); + transition-timing-function: ease-in-out; + transition-property: background-color; +} + +SInlineInput:hover:not(:focus-within):not([disabled]) SUnderline { + background-color: var(--intergalactic-control-secondary-neutral, oklch(0.166 0.031 175.8 / 0.097)); +} + +SInlineInput:hover:not(:focus-within):not([disabled]) SAddon, +SInlineInput:hover:not(:focus-within):not([disabled]) SValue { + cursor: pointer; } SAddon { @@ -96,8 +109,8 @@ SAddon { align-items: center; flex: 0 0 auto; height: 100%; - color: var(--intergalactic-icon-secondary-neutral, oklch(0.104 0.023 162.3 / 0.385)); - padding: 0 var(--intergalactic-spacing-1x, 4px); + color: var(--intergalactic-icon-secondary-neutral, oklch(0.118 0.023 170.1 / 0.262)); + padding: 0 var(--intergalactic-spacing-content-gap-small, 4px); } SAddon[disabled] { @@ -106,38 +119,49 @@ SAddon[disabled] { pointer-events: none; } -SUnderline:has(input:focus-visible) { - border-bottom-color: var(--intergalactic-border-info-active, oklch(0.7 0.131 275.2)); - @mixin focus-outline-mixin; +[data-ui-name='InlineInput.CancelControl'] { + padding-left: 0; } -SInlineInput[state='valid'] SUnderline { - border-bottom-color: var(--intergalactic-border-success-active, oklch(0.7 0.166 170)); +SInlineInput:not(:focus-within):not([loading]) [data-ui-name='InlineInput.ConfirmControl'], +SInlineInput:not(:focus-within):not([loading]) [data-ui-name='InlineInput.CancelControl'] { + display: none; } -SInlineInput[state='valid'] SUnderline:has(input:focus-visible) { - border-bottom-color: var(--intergalactic-border-success-active, oklch(0.7 0.166 170)); - @mixin focus-outline-mixin; - outline-color: var(--intergalactic-keyboard-focus-valid-outline, oklch(0.711 0.146 166.9)); +SUnderline:has(input:focus-visible) { + background-color: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); + @mixin focus-outline-mixin { + outline-offset: 0; + transition-property: outline-color, outline-width; + } } -SInlineInput[state='invalid'] SUnderline { - border-bottom-color: var(--intergalactic-border-critical-active, oklch(0.7 0.21 23)); +SInlineInput[state='valid'] SUnderline:has(input:focus-visible) { + outline-color: var(--intergalactic-keyboard-focus-valid-outline, oklch(0.711 0.146 166.9)); } SInlineInput[state='invalid'] SUnderline:has(input:focus-visible) { - border-bottom-color: var(--intergalactic-border-critical-active, oklch(0.7 0.21 23)); - @mixin focus-outline-mixin; outline-color: var(--intergalactic-keyboard-focus-invalid-outline, oklch(0.628 0.257 28.9 / 0.652)); } +SInlineInput[state='valid'] SValue { + text-decoration-color: var(--intergalactic-border-success-active, oklch(0.7 0.166 170)); +} + +SInlineInput[state='invalid'] SValue { + text-decoration-color: var(--intergalactic-border-critical-active, oklch(0.7 0.21 23)); +} + +SInlineInput[state]:focus-within SValue { + text-decoration-color: transparent; +} + SValue:focus~SControls { display: flex; } -SInvalidPattern { - margin-left: -1px; - margin-top: -1px; - border-radius: 0; - height: calc(100% - 3px); +@supports (field-sizing: content) { + SValue { + field-sizing: content; + } } diff --git a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Aliases-example-1-chromium-linux.png b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Aliases-example-1-chromium-linux.png index 7bcd23ff83..7f96d77607 100644 Binary files a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Aliases-example-1-chromium-linux.png and b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Aliases-example-1-chromium-linux.png differ diff --git a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Aliases-example-1-firefox-linux.png b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Aliases-example-1-firefox-linux.png index a1a6c4669c..04a2e4af3a 100644 Binary files a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Aliases-example-1-firefox-linux.png and b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Aliases-example-1-firefox-linux.png differ diff --git a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Aliases-example-1-webkit-linux.png b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Aliases-example-1-webkit-linux.png index 540788eacb..8c5839742d 100644 Binary files a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Aliases-example-1-webkit-linux.png and b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Aliases-example-1-webkit-linux.png differ diff --git a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-1-chromium-linux.png b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-1-chromium-linux.png index 36ebb4222a..e8853109ca 100644 Binary files a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-1-chromium-linux.png and b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-1-chromium-linux.png differ diff --git a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-1-firefox-linux.png b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-1-firefox-linux.png index 28341fa939..6431a1f3e8 100644 Binary files a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-1-firefox-linux.png and b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-1-firefox-linux.png differ diff --git a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-1-webkit-linux.png b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-1-webkit-linux.png index 80c829203b..84feb0816b 100644 Binary files a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-1-webkit-linux.png and b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-1-webkit-linux.png differ diff --git a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-2-chromium-linux.png b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-2-chromium-linux.png index c5e82fc185..55e83e0005 100644 Binary files a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-2-chromium-linux.png and b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-2-chromium-linux.png differ diff --git a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-2-firefox-linux.png b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-2-firefox-linux.png index 354326f2d2..5452d9d858 100644 Binary files a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-2-firefox-linux.png and b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-2-firefox-linux.png differ diff --git a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-2-webkit-linux.png b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-2-webkit-linux.png index de084c01a8..bf297eb3ac 100644 Binary files a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-2-webkit-linux.png and b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-Pipe-example-2-webkit-linux.png differ diff --git a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-1-chromium-linux.png b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-1-chromium-linux.png index 57a4ee6aa8..4033af34f3 100644 Binary files a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-1-chromium-linux.png and b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-1-chromium-linux.png differ diff --git a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-1-firefox-linux.png b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-1-firefox-linux.png index 128897276e..da3fabe506 100644 Binary files a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-1-firefox-linux.png and b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-1-firefox-linux.png differ diff --git a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-1-webkit-linux.png b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-1-webkit-linux.png index 43bfbb6ef7..3ac7ac8df4 100644 Binary files a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-1-webkit-linux.png and b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-1-webkit-linux.png differ diff --git a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-2-chromium-linux.png b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-2-chromium-linux.png index 0c26f557be..2c9a5c3dc4 100644 Binary files a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-2-chromium-linux.png and b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-2-chromium-linux.png differ diff --git a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-2-firefox-linux.png b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-2-firefox-linux.png index 8f4f9aa9c0..9aa5ea57d8 100644 Binary files a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-2-firefox-linux.png and b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-2-firefox-linux.png differ diff --git a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-2-webkit-linux.png b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-2-webkit-linux.png index 9f1223bf00..bfd1c04a43 100644 Binary files a/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-2-webkit-linux.png and b/semcore/input-mask/__tests__/input-mask.browser-test.tsx-snapshots/-visual-Verify-InputMask-basic-example-2-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-358ef-rols-true-value-1234-56-placeholder-undefined-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-358ef-rols-true-value-1234-56-placeholder-undefined-1-chromium-linux.png index 6db13ba77e..b0d5b628c4 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-358ef-rols-true-value-1234-56-placeholder-undefined-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-358ef-rols-true-value-1234-56-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-358ef-rols-true-value-1234-56-placeholder-undefined-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-358ef-rols-true-value-1234-56-placeholder-undefined-1-firefox-linux.png index 8f7388e961..6df4b6269f 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-358ef-rols-true-value-1234-56-placeholder-undefined-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-358ef-rols-true-value-1234-56-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-358ef-rols-true-value-1234-56-placeholder-undefined-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-358ef-rols-true-value-1234-56-placeholder-undefined-1-webkit-linux.png index 4704dccdd3..8aec344f7a 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-358ef-rols-true-value-1234-56-placeholder-undefined-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-358ef-rols-true-value-1234-56-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-74afc-ols-false-value-9876-54-placeholder-undefined-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-74afc-ols-false-value-9876-54-placeholder-undefined-1-chromium-linux.png index 2cf03b7c29..1bf022f2e2 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-74afc-ols-false-value-9876-54-placeholder-undefined-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-74afc-ols-false-value-9876-54-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-74afc-ols-false-value-9876-54-placeholder-undefined-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-74afc-ols-false-value-9876-54-placeholder-undefined-1-firefox-linux.png index 9889d5a5ba..f58312cfa1 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-74afc-ols-false-value-9876-54-placeholder-undefined-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-74afc-ols-false-value-9876-54-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-74afc-ols-false-value-9876-54-placeholder-undefined-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-74afc-ols-false-value-9876-54-placeholder-undefined-1-webkit-linux.png index f167b25e4c..c467eb9d41 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-74afc-ols-false-value-9876-54-placeholder-undefined-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-74afc-ols-false-value-9876-54-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-7ed1c-rue-value-undefined-placeholder-Enter-a-value-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-7ed1c-rue-value-undefined-placeholder-Enter-a-value-1-chromium-linux.png index 251edefc03..9bba632e4d 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-7ed1c-rue-value-undefined-placeholder-Enter-a-value-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-7ed1c-rue-value-undefined-placeholder-Enter-a-value-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-7ed1c-rue-value-undefined-placeholder-Enter-a-value-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-7ed1c-rue-value-undefined-placeholder-Enter-a-value-1-firefox-linux.png index fb975044de..3cf1058c9c 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-7ed1c-rue-value-undefined-placeholder-Enter-a-value-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-7ed1c-rue-value-undefined-placeholder-Enter-a-value-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-7ed1c-rue-value-undefined-placeholder-Enter-a-value-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-7ed1c-rue-value-undefined-placeholder-Enter-a-value-1-webkit-linux.png index 3d30b7c9ce..16944a9d04 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-7ed1c-rue-value-undefined-placeholder-Enter-a-value-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-7ed1c-rue-value-undefined-placeholder-Enter-a-value-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-df53c-rols-true-value-1234-56-placeholder-undefined-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-df53c-rols-true-value-1234-56-placeholder-undefined-1-chromium-linux.png index 18ef5b049c..79b9b5acf8 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-df53c-rols-true-value-1234-56-placeholder-undefined-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-df53c-rols-true-value-1234-56-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-df53c-rols-true-value-1234-56-placeholder-undefined-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-df53c-rols-true-value-1234-56-placeholder-undefined-1-firefox-linux.png index 5e0e3d0704..e6bf817782 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-df53c-rols-true-value-1234-56-placeholder-undefined-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-df53c-rols-true-value-1234-56-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-df53c-rols-true-value-1234-56-placeholder-undefined-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-df53c-rols-true-value-1234-56-placeholder-undefined-1-webkit-linux.png index 081a5fbb8c..af2debdef3 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-df53c-rols-true-value-1234-56-placeholder-undefined-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-Input-Number-with-Addon-and-st-df53c-rols-true-value-1234-56-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1dd41-ntrols-false-value-2500-placeholder-undefined-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1dd41-ntrols-false-value-2500-placeholder-undefined-1-chromium-linux.png index 076327b78e..30aa60116c 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1dd41-ntrols-false-value-2500-placeholder-undefined-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1dd41-ntrols-false-value-2500-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1dd41-ntrols-false-value-2500-placeholder-undefined-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1dd41-ntrols-false-value-2500-placeholder-undefined-1-firefox-linux.png index 4967402f68..8d77c81fc1 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1dd41-ntrols-false-value-2500-placeholder-undefined-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1dd41-ntrols-false-value-2500-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1dd41-ntrols-false-value-2500-placeholder-undefined-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1dd41-ntrols-false-value-2500-placeholder-undefined-1-webkit-linux.png index 4a9b566557..bc3bf5a078 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1dd41-ntrols-false-value-2500-placeholder-undefined-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1dd41-ntrols-false-value-2500-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1f965-ontrols-true-value-1000-placeholder-undefined-2-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1f965-ontrols-true-value-1000-placeholder-undefined-2-chromium-linux.png index 0f1994ca9d..7b54ac559c 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1f965-ontrols-true-value-1000-placeholder-undefined-2-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1f965-ontrols-true-value-1000-placeholder-undefined-2-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1f965-ontrols-true-value-1000-placeholder-undefined-2-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1f965-ontrols-true-value-1000-placeholder-undefined-2-firefox-linux.png index dcb977ccf4..4895c389ac 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1f965-ontrols-true-value-1000-placeholder-undefined-2-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1f965-ontrols-true-value-1000-placeholder-undefined-2-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1f965-ontrols-true-value-1000-placeholder-undefined-2-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1f965-ontrols-true-value-1000-placeholder-undefined-2-webkit-linux.png index 13e9e91dee..9b2b4f403b 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1f965-ontrols-true-value-1000-placeholder-undefined-2-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-1f965-ontrols-true-value-1000-placeholder-undefined-2-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-27718-lse-value-undefined-placeholder-Enter-a-value-2-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-27718-lse-value-undefined-placeholder-Enter-a-value-2-chromium-linux.png index a4c7ff5fcd..49e5042e39 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-27718-lse-value-undefined-placeholder-Enter-a-value-2-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-27718-lse-value-undefined-placeholder-Enter-a-value-2-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-27718-lse-value-undefined-placeholder-Enter-a-value-2-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-27718-lse-value-undefined-placeholder-Enter-a-value-2-firefox-linux.png index 8780e13357..ce4a8ed326 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-27718-lse-value-undefined-placeholder-Enter-a-value-2-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-27718-lse-value-undefined-placeholder-Enter-a-value-2-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-27718-lse-value-undefined-placeholder-Enter-a-value-2-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-27718-lse-value-undefined-placeholder-Enter-a-value-2-webkit-linux.png index f1b3eb01d8..610eae392e 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-27718-lse-value-undefined-placeholder-Enter-a-value-2-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-27718-lse-value-undefined-placeholder-Enter-a-value-2-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-4829e-rols-true-value-1234-56-placeholder-undefined-2-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-4829e-rols-true-value-1234-56-placeholder-undefined-2-chromium-linux.png index 5261451787..1b3d85a228 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-4829e-rols-true-value-1234-56-placeholder-undefined-2-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-4829e-rols-true-value-1234-56-placeholder-undefined-2-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-4829e-rols-true-value-1234-56-placeholder-undefined-2-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-4829e-rols-true-value-1234-56-placeholder-undefined-2-firefox-linux.png index 5c8045d0b4..68735610eb 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-4829e-rols-true-value-1234-56-placeholder-undefined-2-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-4829e-rols-true-value-1234-56-placeholder-undefined-2-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-4829e-rols-true-value-1234-56-placeholder-undefined-2-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-4829e-rols-true-value-1234-56-placeholder-undefined-2-webkit-linux.png index 704896cdd2..961d1dca2d 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-4829e-rols-true-value-1234-56-placeholder-undefined-2-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-4829e-rols-true-value-1234-56-placeholder-undefined-2-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-6b2d9-ols-false-value-9876-54-placeholder-undefined-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-6b2d9-ols-false-value-9876-54-placeholder-undefined-1-chromium-linux.png index 3b1e8b827d..6d995c5044 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-6b2d9-ols-false-value-9876-54-placeholder-undefined-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-6b2d9-ols-false-value-9876-54-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-6b2d9-ols-false-value-9876-54-placeholder-undefined-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-6b2d9-ols-false-value-9876-54-placeholder-undefined-1-firefox-linux.png index 023b69cfd9..f0c0b6c751 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-6b2d9-ols-false-value-9876-54-placeholder-undefined-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-6b2d9-ols-false-value-9876-54-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-6b2d9-ols-false-value-9876-54-placeholder-undefined-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-6b2d9-ols-false-value-9876-54-placeholder-undefined-1-webkit-linux.png index 2d0f001e48..58fc63f4a5 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-6b2d9-ols-false-value-9876-54-placeholder-undefined-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-6b2d9-ols-false-value-9876-54-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-91a1b-rols-true-value-1234-56-placeholder-undefined-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-91a1b-rols-true-value-1234-56-placeholder-undefined-1-chromium-linux.png index c47d5d9d9a..3c2aef103e 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-91a1b-rols-true-value-1234-56-placeholder-undefined-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-91a1b-rols-true-value-1234-56-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-91a1b-rols-true-value-1234-56-placeholder-undefined-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-91a1b-rols-true-value-1234-56-placeholder-undefined-1-firefox-linux.png index aa982f712d..114831cc33 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-91a1b-rols-true-value-1234-56-placeholder-undefined-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-91a1b-rols-true-value-1234-56-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-91a1b-rols-true-value-1234-56-placeholder-undefined-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-91a1b-rols-true-value-1234-56-placeholder-undefined-1-webkit-linux.png index 61a1d574f6..1974259e32 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-91a1b-rols-true-value-1234-56-placeholder-undefined-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-91a1b-rols-true-value-1234-56-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-92269-ntrols-false-value-2500-placeholder-undefined-2-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-92269-ntrols-false-value-2500-placeholder-undefined-2-chromium-linux.png index a31f80eb57..3a72a6ab18 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-92269-ntrols-false-value-2500-placeholder-undefined-2-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-92269-ntrols-false-value-2500-placeholder-undefined-2-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-92269-ntrols-false-value-2500-placeholder-undefined-2-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-92269-ntrols-false-value-2500-placeholder-undefined-2-firefox-linux.png index 01ad855681..820e1ffe46 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-92269-ntrols-false-value-2500-placeholder-undefined-2-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-92269-ntrols-false-value-2500-placeholder-undefined-2-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-92269-ntrols-false-value-2500-placeholder-undefined-2-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-92269-ntrols-false-value-2500-placeholder-undefined-2-webkit-linux.png index 54e1d6473f..6ac8395e91 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-92269-ntrols-false-value-2500-placeholder-undefined-2-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-92269-ntrols-false-value-2500-placeholder-undefined-2-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d10bf-ue-value-undefined-placeholder-Type-something-2-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d10bf-ue-value-undefined-placeholder-Type-something-2-chromium-linux.png index 05e669ba9d..222f4ab8d4 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d10bf-ue-value-undefined-placeholder-Type-something-2-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d10bf-ue-value-undefined-placeholder-Type-something-2-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d10bf-ue-value-undefined-placeholder-Type-something-2-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d10bf-ue-value-undefined-placeholder-Type-something-2-firefox-linux.png index 17d197a92c..d82304fb60 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d10bf-ue-value-undefined-placeholder-Type-something-2-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d10bf-ue-value-undefined-placeholder-Type-something-2-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d10bf-ue-value-undefined-placeholder-Type-something-2-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d10bf-ue-value-undefined-placeholder-Type-something-2-webkit-linux.png index 506558066b..6ab0648216 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d10bf-ue-value-undefined-placeholder-Type-something-2-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d10bf-ue-value-undefined-placeholder-Type-something-2-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d7e7a-ols-false-value-9876-54-placeholder-undefined-2-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d7e7a-ols-false-value-9876-54-placeholder-undefined-2-chromium-linux.png index 3f3fd97487..8dcefcd516 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d7e7a-ols-false-value-9876-54-placeholder-undefined-2-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d7e7a-ols-false-value-9876-54-placeholder-undefined-2-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d7e7a-ols-false-value-9876-54-placeholder-undefined-2-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d7e7a-ols-false-value-9876-54-placeholder-undefined-2-firefox-linux.png index 39ef35d4a2..de705c3960 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d7e7a-ols-false-value-9876-54-placeholder-undefined-2-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d7e7a-ols-false-value-9876-54-placeholder-undefined-2-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d7e7a-ols-false-value-9876-54-placeholder-undefined-2-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d7e7a-ols-false-value-9876-54-placeholder-undefined-2-webkit-linux.png index e22f23d24d..f53ba4f1a0 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d7e7a-ols-false-value-9876-54-placeholder-undefined-2-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-d7e7a-ols-false-value-9876-54-placeholder-undefined-2-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-dcf30-lse-value-undefined-placeholder-Enter-a-value-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-dcf30-lse-value-undefined-placeholder-Enter-a-value-1-chromium-linux.png index 58db3ed707..5e5695ad90 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-dcf30-lse-value-undefined-placeholder-Enter-a-value-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-dcf30-lse-value-undefined-placeholder-Enter-a-value-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-dcf30-lse-value-undefined-placeholder-Enter-a-value-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-dcf30-lse-value-undefined-placeholder-Enter-a-value-1-firefox-linux.png index fc8c9fff4f..5a438967ba 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-dcf30-lse-value-undefined-placeholder-Enter-a-value-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-dcf30-lse-value-undefined-placeholder-Enter-a-value-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-dcf30-lse-value-undefined-placeholder-Enter-a-value-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-dcf30-lse-value-undefined-placeholder-Enter-a-value-1-webkit-linux.png index b648f71857..7419b85a20 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-dcf30-lse-value-undefined-placeholder-Enter-a-value-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-dcf30-lse-value-undefined-placeholder-Enter-a-value-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-e1885-ontrols-true-value-1000-placeholder-undefined-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-e1885-ontrols-true-value-1000-placeholder-undefined-1-chromium-linux.png index 8d8b03bba8..6af1a1910d 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-e1885-ontrols-true-value-1000-placeholder-undefined-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-e1885-ontrols-true-value-1000-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-e1885-ontrols-true-value-1000-placeholder-undefined-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-e1885-ontrols-true-value-1000-placeholder-undefined-1-firefox-linux.png index 8f24827114..e5c2f22f7d 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-e1885-ontrols-true-value-1000-placeholder-undefined-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-e1885-ontrols-true-value-1000-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-e1885-ontrols-true-value-1000-placeholder-undefined-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-e1885-ontrols-true-value-1000-placeholder-undefined-1-webkit-linux.png index 05c5885874..b5f46533ca 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-e1885-ontrols-true-value-1000-placeholder-undefined-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-e1885-ontrols-true-value-1000-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-f50ab-ue-value-undefined-placeholder-Type-something-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-f50ab-ue-value-undefined-placeholder-Type-something-1-chromium-linux.png index c3ce774376..592fa25417 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-f50ab-ue-value-undefined-placeholder-Type-something-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-f50ab-ue-value-undefined-placeholder-Type-something-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-f50ab-ue-value-undefined-placeholder-Type-something-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-f50ab-ue-value-undefined-placeholder-Type-something-1-firefox-linux.png index d3bbacc999..561476acdc 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-f50ab-ue-value-undefined-placeholder-Type-something-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-f50ab-ue-value-undefined-placeholder-Type-something-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-f50ab-ue-value-undefined-placeholder-Type-something-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-f50ab-ue-value-undefined-placeholder-Type-something-1-webkit-linux.png index acb5b76584..cbf5977a34 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-f50ab-ue-value-undefined-placeholder-Type-something-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-active-Input-Number-with-state-f50ab-ue-value-undefined-placeholder-Type-something-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-1-chromium-linux.png index 9724afb0ea..6fb6857a59 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-1-firefox-linux.png index b71f025976..5eefd58f5b 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-1-webkit-linux.png index 9298ccc8ac..502fca61e9 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-2-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-2-chromium-linux.png index 92c658f3c4..623b2f72b5 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-2-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-2-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-2-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-2-firefox-linux.png index 8ade3d2d64..5eae058f65 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-2-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-2-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-2-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-2-webkit-linux.png index 69695ac40b..a4929141c7 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-2-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-2-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-3-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-3-chromium-linux.png index 3477cacee0..c7e7650389 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-3-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-3-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-3-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-3-firefox-linux.png index ee9a2f294a..990928483d 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-3-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-3-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-3-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-3-webkit-linux.png index 9edbc40123..15327502e5 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-3-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-custom-appearance-3-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-1e276-rue-value-undefined-placeholder-Enter-a-value-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-1e276-rue-value-undefined-placeholder-Enter-a-value-1-chromium-linux.png index 62fd583b49..8b0ce61649 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-1e276-rue-value-undefined-placeholder-Enter-a-value-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-1e276-rue-value-undefined-placeholder-Enter-a-value-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-1e276-rue-value-undefined-placeholder-Enter-a-value-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-1e276-rue-value-undefined-placeholder-Enter-a-value-1-firefox-linux.png index 92b6684c22..c5aba058d2 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-1e276-rue-value-undefined-placeholder-Enter-a-value-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-1e276-rue-value-undefined-placeholder-Enter-a-value-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-1e276-rue-value-undefined-placeholder-Enter-a-value-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-1e276-rue-value-undefined-placeholder-Enter-a-value-1-webkit-linux.png index 5d3c734e68..e1b59c23dc 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-1e276-rue-value-undefined-placeholder-Enter-a-value-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-1e276-rue-value-undefined-placeholder-Enter-a-value-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-501fa-ls-undefined-value-2500-placeholder-undefined-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-501fa-ls-undefined-value-2500-placeholder-undefined-1-chromium-linux.png index fc21edf7fc..2273df9ab8 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-501fa-ls-undefined-value-2500-placeholder-undefined-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-501fa-ls-undefined-value-2500-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-501fa-ls-undefined-value-2500-placeholder-undefined-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-501fa-ls-undefined-value-2500-placeholder-undefined-1-firefox-linux.png index 967c557e22..2e44a773b6 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-501fa-ls-undefined-value-2500-placeholder-undefined-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-501fa-ls-undefined-value-2500-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-501fa-ls-undefined-value-2500-placeholder-undefined-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-501fa-ls-undefined-value-2500-placeholder-undefined-1-webkit-linux.png index bf6d32e119..ed613f24b9 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-501fa-ls-undefined-value-2500-placeholder-undefined-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-501fa-ls-undefined-value-2500-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-51cd8-ed-value-undefined-placeholder-Type-something-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-51cd8-ed-value-undefined-placeholder-Type-something-1-chromium-linux.png index e7390b88cc..e6e524c1d0 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-51cd8-ed-value-undefined-placeholder-Type-something-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-51cd8-ed-value-undefined-placeholder-Type-something-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-51cd8-ed-value-undefined-placeholder-Type-something-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-51cd8-ed-value-undefined-placeholder-Type-something-1-firefox-linux.png index 5e905d83eb..b4d60cf832 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-51cd8-ed-value-undefined-placeholder-Type-something-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-51cd8-ed-value-undefined-placeholder-Type-something-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-51cd8-ed-value-undefined-placeholder-Type-something-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-51cd8-ed-value-undefined-placeholder-Type-something-1-webkit-linux.png index 311fdab36f..ffe7da22a5 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-51cd8-ed-value-undefined-placeholder-Type-something-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-51cd8-ed-value-undefined-placeholder-Type-something-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-71850-rue-value-undefined-placeholder-Enter-a-value-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-71850-rue-value-undefined-placeholder-Enter-a-value-1-chromium-linux.png index 6e837e0169..a16899e53c 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-71850-rue-value-undefined-placeholder-Enter-a-value-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-71850-rue-value-undefined-placeholder-Enter-a-value-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-71850-rue-value-undefined-placeholder-Enter-a-value-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-71850-rue-value-undefined-placeholder-Enter-a-value-1-firefox-linux.png index bb58d9e65b..5b5c946cfb 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-71850-rue-value-undefined-placeholder-Enter-a-value-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-71850-rue-value-undefined-placeholder-Enter-a-value-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-71850-rue-value-undefined-placeholder-Enter-a-value-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-71850-rue-value-undefined-placeholder-Enter-a-value-1-webkit-linux.png index e3302d86e3..94ac644b74 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-71850-rue-value-undefined-placeholder-Enter-a-value-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-71850-rue-value-undefined-placeholder-Enter-a-value-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-9c4c7-ls-undefined-value-1000-placeholder-undefined-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-9c4c7-ls-undefined-value-1000-placeholder-undefined-1-chromium-linux.png index 58e3a38f8a..f625c56a8a 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-9c4c7-ls-undefined-value-1000-placeholder-undefined-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-9c4c7-ls-undefined-value-1000-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-9c4c7-ls-undefined-value-1000-placeholder-undefined-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-9c4c7-ls-undefined-value-1000-placeholder-undefined-1-firefox-linux.png index 786bb267f1..4decb0c93b 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-9c4c7-ls-undefined-value-1000-placeholder-undefined-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-9c4c7-ls-undefined-value-1000-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-9c4c7-ls-undefined-value-1000-placeholder-undefined-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-9c4c7-ls-undefined-value-1000-placeholder-undefined-1-webkit-linux.png index b052ab3139..f14d0f2b3a 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-9c4c7-ls-undefined-value-1000-placeholder-undefined-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-9c4c7-ls-undefined-value-1000-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-f1f9f-undefined-value-9876-54-placeholder-undefined-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-f1f9f-undefined-value-9876-54-placeholder-undefined-1-chromium-linux.png index 1c1fa20014..77e3cf8680 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-f1f9f-undefined-value-9876-54-placeholder-undefined-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-f1f9f-undefined-value-9876-54-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-f1f9f-undefined-value-9876-54-placeholder-undefined-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-f1f9f-undefined-value-9876-54-placeholder-undefined-1-firefox-linux.png index a9b83fccb1..4ebad6e041 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-f1f9f-undefined-value-9876-54-placeholder-undefined-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-f1f9f-undefined-value-9876-54-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-f1f9f-undefined-value-9876-54-placeholder-undefined-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-f1f9f-undefined-value-9876-54-placeholder-undefined-1-webkit-linux.png index 0478dab0ec..cc6f8f3c8c 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-f1f9f-undefined-value-9876-54-placeholder-undefined-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-not-active-Input-Number-with-s-f1f9f-undefined-value-9876-54-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-1-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-1-chromium-linux.png index 2be067b8db..c475cec69e 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-1-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-1-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-1-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-1-firefox-linux.png index 89ffdf6b37..13d9f8dc64 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-1-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-1-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-1-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-1-webkit-linux.png index beefb27fce..6751801bd2 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-1-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-1-webkit-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-2-chromium-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-2-chromium-linux.png index 07d208d0d8..864f986172 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-2-chromium-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-2-chromium-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-2-firefox-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-2-firefox-linux.png index b194244d55..c5522537ef 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-2-firefox-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-2-firefox-linux.png differ diff --git a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-2-webkit-linux.png b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-2-webkit-linux.png index 1aa021ac3b..8fdff3b3cc 100644 Binary files a/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-2-webkit-linux.png and b/semcore/input-number/__tests__/input-number.browser-test.tsx-snapshots/-visual-Verify-range-of-values-appearance-2-webkit-linux.png differ diff --git a/semcore/input-number/src/style/input-number.shadow.css b/semcore/input-number/src/style/input-number.shadow.css index a2b7922dbe..3e6314818c 100644 --- a/semcore/input-number/src/style/input-number.shadow.css +++ b/semcore/input-number/src/style/input-number.shadow.css @@ -18,7 +18,7 @@ SUp, SDown { padding: 0; width: 16px; - color: var(--intergalactic-icon-secondary-neutral, oklch(0.104 0.023 162.3 / 0.385)); + color: var(--intergalactic-icon-secondary-neutral, oklch(0.118 0.023 170.1 / 0.262)); box-sizing: border-box; display: inline-flex; justify-content: center; diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx b/semcore/input-tags/__tests__/input-tags.browser-test.tsx index 99620aff03..a59daf2936 100644 --- a/semcore/input-tags/__tests__/input-tags.browser-test.tsx +++ b/semcore/input-tags/__tests__/input-tags.browser-test.tsx @@ -93,33 +93,39 @@ test.describe(`${TAG.VISUAL} `, () => { await test.step('Verify inputTagsM styles', async () => { await testHelpers.verifyCSSForAll(input_tags_m, { - 'padding-left': '4px', - 'padding-right': '6px', + 'padding-top': '2px', + 'padding-bottom': '2px', + 'padding-left': '12px', + 'padding-right': '12px', }); }); await test.step('Verify inputTagsL styles', async () => { await testHelpers.verifyCSSForAll(input_tags_l, { - 'padding-left': '8px', - 'padding-right': '10px', + 'padding-top': '4px', + 'padding-bottom': '4px', + 'padding-left': '12px', + 'padding-right': '12px', }); }); await test.step('Verify InputTags.Tag styles', async () => { await testHelpers.verifyCSSForAll(locators.tag(page), { - margin: '2px', + 'margin-top': '2px', + 'margin-right': '2px', + 'margin-bottom': '2px', + 'margin-left': '0px', }); }); - await test.step('Verify TagContainer.Tag styles', async () => { - const tagContainer = page.locator(`li[data-ui-name="TagContainer.Tag"]`); - await testHelpers.verifyCSSForAll(tagContainer, { + await test.step('Verify InputTags.Tag.Text styles', async () => { + await testHelpers.verifyCSSForAll(locators.inputText(page), { 'padding-left': '4px', - 'padding-right': '4px', - 'border': '1px', + 'padding-right': '2px', + 'border-width': '1px', }); - await testHelpers.verifyAttributesForAll(tagContainer, { - tabindex: '-1', + await testHelpers.verifyAttributesForAll(locators.inputText(page), { + tabindex: item.disabled ? '-1' : '0', }); }); diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png index 5b0d03da23..a6fffcdf4c 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png index 2f4c258f6a..689550494b 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png index 21d0e1cd7f..d0e727e695 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-chromium-linux.png index 6a60de7582..2327578862 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-firefox-linux.png index 25104811e4..de7334b90e 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-webkit-linux.png index 3d3d247839..8f47d389c7 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png index 93aff00acc..0b6e884d3b 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png index 0d6502bb52..7703868f59 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png index c159e4df56..f220f51433 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-chromium-linux.png index 6fdeed6cf6..dbd019acb3 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-firefox-linux.png index 572e617c30..bce2950bf5 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-webkit-linux.png index 0a46a70764..5db433754d 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-chromium-linux.png index 8008188b0a..b00422042e 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-firefox-linux.png index 21eda531c6..4cb5c38768 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-webkit-linux.png index 6de990b9d4..bd0e95cd47 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png index aa38b19472..ed9375da94 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png index af1afb6847..40f861a206 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png index 4721d14b78..b338b0fe28 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-chromium-linux.png index 2b8c1433f6..bd81ce2f1f 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-firefox-linux.png index 3d3c72f7f4..294fdefb7b 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-webkit-linux.png index fdb904e0bb..f7e196f8c8 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png index 14ebdbe4ee..0233259371 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png index 187ae28516..aa72f29a2f 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png index 3eb93d1e54..fb29d8dfd3 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-5d736--size-m-disabled-true-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-5d736--size-m-disabled-true-unfocused-and-focused-1-chromium-linux.png index fd3007ad93..1c1144d680 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-5d736--size-m-disabled-true-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-5d736--size-m-disabled-true-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-5d736--size-m-disabled-true-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-5d736--size-m-disabled-true-unfocused-and-focused-1-firefox-linux.png index d17143c799..81774a5722 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-5d736--size-m-disabled-true-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-5d736--size-m-disabled-true-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-5d736--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-5d736--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png index 5d904ea34b..34015a89ee 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-5d736--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-5d736--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-6bda9--size-m-disabled-true-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-6bda9--size-m-disabled-true-unfocused-and-focused-1-chromium-linux.png index acd4aff822..00885dfa91 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-6bda9--size-m-disabled-true-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-6bda9--size-m-disabled-true-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-6bda9--size-m-disabled-true-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-6bda9--size-m-disabled-true-unfocused-and-focused-1-firefox-linux.png index d978a1401d..d27e73478f 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-6bda9--size-m-disabled-true-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-6bda9--size-m-disabled-true-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-6bda9--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-6bda9--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png index ff923cee35..cd471d909b 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-6bda9--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-6bda9--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png index 6934edbd8d..716d639645 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png index 97c8a40326..c3e2a0ff9e 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png index e09952231c..8b7ffe9c97 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png index 8ff0f91bc2..1fa0b01cf7 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png index 9e88ddd0c1..52b8f26d50 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png index 4d7846a514..40c9c8b62b 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png index 303fc10f99..764f32c9fa 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png index b76af09c7f..c57875a8f7 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png index 09d6164d78..c560b3ef37 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png index 7bdbc9ad63..952545d85c 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png index 5904c9a316..50c0aa667d 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png index 795803ba73..8b23aa04a1 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b55c6--size-m-disabled-true-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b55c6--size-m-disabled-true-unfocused-and-focused-1-chromium-linux.png index 995130d5b7..ca8eceb46b 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b55c6--size-m-disabled-true-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b55c6--size-m-disabled-true-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b55c6--size-m-disabled-true-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b55c6--size-m-disabled-true-unfocused-and-focused-1-firefox-linux.png index 66e4e55362..f80420ebc5 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b55c6--size-m-disabled-true-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b55c6--size-m-disabled-true-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b55c6--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b55c6--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png index 8765f4cdbc..4132ab7652 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b55c6--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b55c6--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-chromium-linux.png index 4fe61db102..25155f44fc 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-firefox-linux.png index c78146eb6b..08858589d8 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-webkit-linux.png index 07b1c55257..2b806b1f7e 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png index 7e6345c2f0..c3bf582946 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png index d071ead2e2..6ecdd9525a 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png index 36ec258b98..53c4e3e693 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png index 7a22addd77..b1ada00962 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png index 96c87b1200..9a54fdf5f3 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png index c624ccb205..f3cea15cd3 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png index d55e47b592..606d74ccf8 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png index b8ba1d157b..ae79b20680 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png index e512f0c73a..9f886fa701 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png index 709909c603..6b05cf218f 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png index 42c9cf3fa1..020d5dcb37 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png index e095951432..cb0b018e53 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-chromium-linux.png index 62f568a875..a5abdeb261 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-firefox-linux.png index 2a722665b2..dc758e7b23 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-webkit-linux.png index bde434451c..91215255b5 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-chromium-linux.png index b7ded3e15c..6f129abc4a 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-firefox-linux.png index fc9261fb71..f5ab9c9edb 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-webkit-linux.png index d9045d6b99..73eeffd0ef 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png index 3d1d5b8c52..306ac0404c 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png index 1f742bfd78..0b56a8199e 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png index edc9f2e19c..870b418cea 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png index e12a9b4eab..b9f40a1516 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png index cef80fb03c..244a989b48 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png index 87765d5f7e..b28679ce3f 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-chromium-linux.png index 5ca234428f..7b95f22c0b 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-firefox-linux.png index 5a9decae39..20ad1fc942 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-webkit-linux.png index 8113667064..f387995778 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png index 0b3d32e7af..4ba35522f9 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png index 31ace6953f..b6016baffe 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png index 2bd102574a..1fd616327d 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-chromium-linux.png index 267aa585d7..4ff60d92bc 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-firefox-linux.png index 6a5dccc1f0..71ac7ece87 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-webkit-linux.png index f543513a3e..5baca0856b 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-chromium-linux.png index 19b0f7f0c1..500d5fde5a 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-firefox-linux.png index ec782c8ff4..acfd4465d1 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-webkit-linux.png index 869fdab784..f35f975427 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-chromium-linux.png index dca8423fe6..e4f0cac313 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-firefox-linux.png index b2f382d2df..89ae39f21a 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-webkit-linux.png index dbdfa24b89..34211b9bde 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-chromium-linux.png index 8cd9ce8bae..74dee622b9 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-firefox-linux.png index ed4167864b..ceb1c52575 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-webkit-linux.png index ae440f1da5..26d6cd7751 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-chromium-linux.png index 2c564ca18c..0de73a0294 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-firefox-linux.png index 01455f0569..e55f3e35c4 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-webkit-linux.png index 99033f52c2..e7286eb909 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-chromium-linux.png index 61b39494ea..1812355713 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-firefox-linux.png index 1b7e035248..3f35f0d3a6 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-webkit-linux.png index 9c8595c436..36aefff6e1 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-chromium-linux.png index d2db0d9ad8..33991ee06e 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-firefox-linux.png index 57d2399ec4..bef417667d 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-webkit-linux.png index 068895e439..8885bb38c2 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-chromium-linux.png index 3247fc6e98..32589b1d0b 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-firefox-linux.png index 5ec7a7d089..5076226308 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-webkit-linux.png index eeeed7acd3..dab36722ca 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-chromium-linux.png index 8f8fbc59a0..e3c849f516 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-firefox-linux.png index ed4167864b..ceb1c52575 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-webkit-linux.png index dded1ad2af..43d76301fa 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-chromium-linux.png index 1988bcda6d..c7729455c1 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-firefox-linux.png index 66915487db..247d2d0669 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-webkit-linux.png index 2b9562e169..c0e6099d30 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-chromium-linux.png index f5544d22c2..9e2100d3a8 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-firefox-linux.png index a8275b79e0..e90811895d 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-webkit-linux.png index fac1bf9b61..5a1bfcfdfd 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--d4bf2-elect-visual-states-when-interacting-by-mouse-3-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--d4bf2-elect-visual-states-when-interacting-by-mouse-3-chromium-linux.png index 22cfc1d47f..3e3c9281d0 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--d4bf2-elect-visual-states-when-interacting-by-mouse-3-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--d4bf2-elect-visual-states-when-interacting-by-mouse-3-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--d4bf2-elect-visual-states-when-interacting-by-mouse-3-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--d4bf2-elect-visual-states-when-interacting-by-mouse-3-firefox-linux.png index 8d63b8e48b..a2954573d4 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--d4bf2-elect-visual-states-when-interacting-by-mouse-3-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--d4bf2-elect-visual-states-when-interacting-by-mouse-3-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--d4bf2-elect-visual-states-when-interacting-by-mouse-3-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--d4bf2-elect-visual-states-when-interacting-by-mouse-3-webkit-linux.png index da81571096..6f5ae655ea 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--d4bf2-elect-visual-states-when-interacting-by-mouse-3-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--d4bf2-elect-visual-states-when-interacting-by-mouse-3-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-chromium-linux.png index dae7004f27..9d8c719b9e 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-firefox-linux.png index a6e2deb85d..ec0130c235 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-webkit-linux.png index f86fc54603..f670db03e0 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-chromium-linux.png index 6ec264b0d9..1689ca5295 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-firefox-linux.png index 01455f0569..e55f3e35c4 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-webkit-linux.png index 6eb069042c..dd73552ce2 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-chromium-linux.png index d78941ae77..c113654cdb 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-firefox-linux.png index 81a89ee972..fad38d03bb 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-webkit-linux.png index 69225dfe0c..43662ae448 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-chromium-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-chromium-linux.png index 52711caf7a..f62e50e2ce 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-chromium-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-firefox-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-firefox-linux.png index bb641c9ca1..72df8e454e 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-firefox-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-webkit-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-webkit-linux.png index 17b584261b..2f056c4fe1 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-webkit-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-chromium-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-chromium-linux.png index 9269efa650..db6688cfea 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-chromium-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-firefox-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-firefox-linux.png index 2602f95da1..baec97d429 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-firefox-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-webkit-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-webkit-linux.png index 8faeac48c8..632ec8e1ba 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-webkit-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-chromium-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-chromium-linux.png index e6c7da18b2..e0e868b9d1 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-chromium-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-firefox-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-firefox-linux.png index cb15b0d0ca..2bde21fec4 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-firefox-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-webkit-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-webkit-linux.png index c0e9ec059c..d3433aee28 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-webkit-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-chromium-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-chromium-linux.png index 3115479102..d98f72ef20 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-chromium-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-firefox-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-firefox-linux.png index 726e4bf63b..03aa842cdb 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-firefox-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-webkit-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-webkit-linux.png index 6b9416e40e..1086e3d1a5 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-webkit-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-chromium-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-chromium-linux.png index 3132a95a94..5208496446 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-chromium-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-firefox-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-firefox-linux.png index 7ad7c8e1cb..08820bf1dc 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-firefox-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-webkit-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-webkit-linux.png index 4669541afe..6892d56105 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-webkit-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-webkit-linux.png differ diff --git a/semcore/input-tags/src/style/input-tag.shadow.css b/semcore/input-tags/src/style/input-tag.shadow.css index 94f59f4cac..4ce8540053 100644 --- a/semcore/input-tags/src/style/input-tag.shadow.css +++ b/semcore/input-tags/src/style/input-tag.shadow.css @@ -1,13 +1,9 @@ SInputTags { box-sizing: border-box; cursor: text; - align-items: flex-start; + align-items: center; /* reset for ScrollArea because cut box-shadow */ overflow: initial; - - li:first-of-type { - padding-left: var(--intergalactic-spacing-05x, 2px); - } } SInputTags[disabled] { @@ -41,15 +37,15 @@ SInputTags>div[data-ui-name='ScrollArea.Bar'][orientation='vertical'] { } SInputTags[size='m'] { - min-height: var(--intergalactic-form-control-m, 28px); + min-height: var(--intergalactic-form-control-m, 32px); height: auto; - padding: 0 calc(var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px)) 0 var(--intergalactic-spacing-1x, 4px); + padding: var(--intergalactic-spacing-content-padding-xxsmall, 2px) var(--intergalactic-spacing-content-padding-medium, 12px); } SInputTags[size='l'] { - min-height: var(--intergalactic-form-control-l, 40px); + min-height: var(--intergalactic-form-control-l, 44px); height: auto; - padding: 0 calc(var(--intergalactic-spacing-2x, 8px) + var(--intergalactic-spacing-05x, 2px)) 0 var(--intergalactic-spacing-2x, 8px); + padding: var(--intergalactic-spacing-content-padding-xsmall, 4px) var(--intergalactic-spacing-content-padding-medium, 12px); } SInputTags STag:focus-visible, SInputTags STagContainerClose:focus-visible { @@ -59,20 +55,20 @@ SInputTags STag:focus-visible, SInputTags STagContainerClose:focus-visible { } } -STagContainer { - margin: var(--intergalactic-spacing-05x, 2px); +STagContainer[size='m'] { + margin: var(--intergalactic-spacing-05x, 2px) var(--intergalactic-spacing-05x, 2px) var(--intergalactic-spacing-05x, 2px) 0; } -STagContainer[editable] { - cursor: pointer; +STagContainer[size='l'] { + margin: var(--intergalactic-spacing-05x, 2px) var(--intergalactic-spacing-05x, 2px) var(--intergalactic-spacing-05x, 2px) 0; } -SInputTags[size='m'] SValue { - height: calc(var(--intergalactic-form-control-m, 28px) - var(--intergalactic-spacing-1x, 4px)); +STagContainer[size='xl'] { + margin: var(--intergalactic-spacing-05x, 2px) var(--intergalactic-spacing-05x, 2px) var(--intergalactic-spacing-05x, 2px) 0; } -SInputTags[size='l'] SValue { - height: calc(var(--intergalactic-form-control-l, 40px) - var(--intergalactic-spacing-1x, 4px)); +STagContainer[editable] { + cursor: pointer; } SValue { diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-1-chromium-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-1-chromium-linux.png index 9c5ae954f7..38dbc77232 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-1-chromium-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-1-firefox-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-1-firefox-linux.png index 9f59a6ce88..6ceecc146a 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-1-firefox-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-1-webkit-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-1-webkit-linux.png index 67af5d97b3..ca176ea69b 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-1-webkit-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-2-chromium-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-2-chromium-linux.png index 1b9921d983..ec682d811e 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-2-chromium-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-2-firefox-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-2-firefox-linux.png index 1e012deff0..2375ce7019 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-2-firefox-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-2-webkit-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-2-webkit-linux.png index a5d34192df..9823569483 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-2-webkit-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-3-chromium-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-3-chromium-linux.png index ff15c20520..5c3587edba 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-3-chromium-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-3-chromium-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-3-firefox-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-3-firefox-linux.png index da6e1434d4..44f4fc3011 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-3-firefox-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-3-firefox-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-3-webkit-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-3-webkit-linux.png index 901583c9c9..00e1944c49 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-3-webkit-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Dynamic-search-3-webkit-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-1-chromium-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-1-chromium-linux.png index 6fc4d95345..b8be9c0f44 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-1-chromium-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-1-firefox-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-1-firefox-linux.png index c2e950de3d..2c39d5d9b8 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-1-firefox-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-1-webkit-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-1-webkit-linux.png index 3150b5ad87..0c7399dfaf 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-1-webkit-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-2-chromium-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-2-chromium-linux.png index cff540f1ab..29ff828e84 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-2-chromium-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-2-firefox-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-2-firefox-linux.png index 9f3fcaf78a..deca34cae9 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-2-firefox-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-2-webkit-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-2-webkit-linux.png index acad34fdd2..701e4885a2 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-2-webkit-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-3-chromium-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-3-chromium-linux.png index 16b8d63b31..4785e7ec54 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-3-chromium-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-3-chromium-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-3-firefox-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-3-firefox-linux.png index eab3c0e601..a534b839f7 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-3-firefox-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-3-firefox-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-3-webkit-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-3-webkit-linux.png index eb5bc2da6d..e3c20b62b5 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-3-webkit-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-by-button-3-webkit-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-1-chromium-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-1-chromium-linux.png index 9a24e4f523..9a6bf941b4 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-1-chromium-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-1-firefox-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-1-firefox-linux.png index f6e0a8cea1..033b20c731 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-1-firefox-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-1-webkit-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-1-webkit-linux.png index 694cf0ec22..efd71974c0 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-1-webkit-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-2-chromium-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-2-chromium-linux.png index e855eaafdf..13f9983dd9 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-2-chromium-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-2-firefox-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-2-firefox-linux.png index 9a9ff2ae97..5d0890f690 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-2-firefox-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-2-webkit-linux.png b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-2-webkit-linux.png index a619287ec9..9da255151f 100644 Binary files a/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-2-webkit-linux.png and b/semcore/input/__tests__/filters-with-input/filter-search.browser-test.tsx-snapshots/-visual-Verify-Search-with-Select-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx b/semcore/input/__tests__/input.browser-test.tsx index 096b4a34c3..5e7945c52a 100644 --- a/semcore/input/__tests__/input.browser-test.tsx +++ b/semcore/input/__tests__/input.browser-test.tsx @@ -66,7 +66,7 @@ test.describe(`${TAG.VISUAL} `, () => { if (item.size == 'm') { await test.step('Verify m styles ', async () => { for (let i = 0; i < count; i++) { - await expect(locators.input(page).nth(i)).toHaveCSS('height', '26px'); + await expect(locators.input(page).nth(i)).toHaveCSS('height', '30px'); } }); } @@ -74,7 +74,7 @@ test.describe(`${TAG.VISUAL} `, () => { if (item.size == 'l') { await test.step('Verify l styles ', async () => { for (let i = 0; i < count; i++) { - await expect(locators.input(page).nth(i)).toHaveCSS('height', '38px'); + await expect(locators.input(page).nth(i)).toHaveCSS('height', '42px'); } }); } diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-Text-with-addon-keyboard-interactions-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-Text-with-addon-keyboard-interactions-1-chromium-linux.png index 817d1ad5b8..5c3ab76ec0 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-Text-with-addon-keyboard-interactions-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-Text-with-addon-keyboard-interactions-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-Text-with-addon-keyboard-interactions-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-Text-with-addon-keyboard-interactions-1-webkit-linux.png index c6cc7554fa..ca828e347b 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-Text-with-addon-keyboard-interactions-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-Text-with-addon-keyboard-interactions-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-counter-and-badge-keyboard-interactions-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-counter-and-badge-keyboard-interactions-1-chromium-linux.png index 63a56aa80f..dd1c7cdff0 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-counter-and-badge-keyboard-interactions-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-counter-and-badge-keyboard-interactions-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-counter-and-badge-keyboard-interactions-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-counter-and-badge-keyboard-interactions-1-firefox-linux.png index 30858850c3..c1b00d8deb 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-counter-and-badge-keyboard-interactions-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-counter-and-badge-keyboard-interactions-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-counter-and-badge-keyboard-interactions-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-counter-and-badge-keyboard-interactions-1-webkit-linux.png index 5e90f79049..191c1dcc4d 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-counter-and-badge-keyboard-interactions-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-counter-and-badge-keyboard-interactions-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-submit-button-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-submit-button-1-chromium-linux.png index 52deafc2ce..3ababa7d89 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-submit-button-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-submit-button-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-submit-button-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-submit-button-1-firefox-linux.png index 06acaff163..4caa664ec3 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-submit-button-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-submit-button-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-submit-button-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-submit-button-1-webkit-linux.png index b894f14bf0..1ebedb3e99 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-submit-button-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-Input-with-submit-button-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-3e89d-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-3e89d-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png index 1e52c4f9a3..7fdbb6514e 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-3e89d-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-3e89d-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-3e89d-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-3e89d-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png index a633c67b49..0241291ef0 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-3e89d-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-3e89d-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-3e89d-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-3e89d-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png index 3789dc00cc..1628453aad 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-3e89d-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-3e89d-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c816f-alse-autoFocus-true-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c816f-alse-autoFocus-true-placeholder-Placeholder-1-chromium-linux.png index 40f93f090b..7e1c459b06 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c816f-alse-autoFocus-true-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c816f-alse-autoFocus-true-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c816f-alse-autoFocus-true-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c816f-alse-autoFocus-true-placeholder-Placeholder-1-firefox-linux.png index 9e98b6aac8..963a659c96 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c816f-alse-autoFocus-true-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c816f-alse-autoFocus-true-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c816f-alse-autoFocus-true-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c816f-alse-autoFocus-true-placeholder-Placeholder-1-webkit-linux.png index 16c45db525..62de6fa8cd 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c816f-alse-autoFocus-true-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c816f-alse-autoFocus-true-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c9d51-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c9d51-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png index dbf650a114..55ab672039 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c9d51-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c9d51-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c9d51-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c9d51-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png index d955c129be..6b1474b4ec 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c9d51-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c9d51-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c9d51-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c9d51-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png index ad5980bf06..e2c32dea22 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c9d51-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-c9d51-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-d4ab3-alse-autoFocus-true-placeholder-Placeholder-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-d4ab3-alse-autoFocus-true-placeholder-Placeholder-2-chromium-linux.png index f73b49c5fb..a935e45d20 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-d4ab3-alse-autoFocus-true-placeholder-Placeholder-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-d4ab3-alse-autoFocus-true-placeholder-Placeholder-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-d4ab3-alse-autoFocus-true-placeholder-Placeholder-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-d4ab3-alse-autoFocus-true-placeholder-Placeholder-2-firefox-linux.png index 9e98b6aac8..963a659c96 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-d4ab3-alse-autoFocus-true-placeholder-Placeholder-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-d4ab3-alse-autoFocus-true-placeholder-Placeholder-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-d4ab3-alse-autoFocus-true-placeholder-Placeholder-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-d4ab3-alse-autoFocus-true-placeholder-Placeholder-2-webkit-linux.png index bede468754..b5b23cdc46 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-d4ab3-alse-autoFocus-true-placeholder-Placeholder-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-inval-d4ab3-alse-autoFocus-true-placeholder-Placeholder-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-3d4fb-false-autoFocus-false-placeholder-undefined-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-3d4fb-false-autoFocus-false-placeholder-undefined-2-chromium-linux.png index bf9849c90f..d87c65bed7 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-3d4fb-false-autoFocus-false-placeholder-undefined-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-3d4fb-false-autoFocus-false-placeholder-undefined-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-3d4fb-false-autoFocus-false-placeholder-undefined-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-3d4fb-false-autoFocus-false-placeholder-undefined-2-firefox-linux.png index 3c219ba3f2..3f18cadb65 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-3d4fb-false-autoFocus-false-placeholder-undefined-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-3d4fb-false-autoFocus-false-placeholder-undefined-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-3d4fb-false-autoFocus-false-placeholder-undefined-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-3d4fb-false-autoFocus-false-placeholder-undefined-2-webkit-linux.png index 328a2e68c9..50d7bf1d78 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-3d4fb-false-autoFocus-false-placeholder-undefined-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-3d4fb-false-autoFocus-false-placeholder-undefined-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-7c779-false-autoFocus-false-placeholder-undefined-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-7c779-false-autoFocus-false-placeholder-undefined-1-chromium-linux.png index b5ab0df095..61894ad7d4 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-7c779-false-autoFocus-false-placeholder-undefined-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-7c779-false-autoFocus-false-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-7c779-false-autoFocus-false-placeholder-undefined-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-7c779-false-autoFocus-false-placeholder-undefined-1-firefox-linux.png index dd09bc010c..e506a87862 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-7c779-false-autoFocus-false-placeholder-undefined-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-7c779-false-autoFocus-false-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-7c779-false-autoFocus-false-placeholder-undefined-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-7c779-false-autoFocus-false-placeholder-undefined-1-webkit-linux.png index 9398849bcd..73550ada6c 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-7c779-false-autoFocus-false-placeholder-undefined-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-norma-7c779-false-autoFocus-false-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-24a2d--false-autoFocus-true-placeholder-undefined-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-24a2d--false-autoFocus-true-placeholder-undefined-1-chromium-linux.png index 09b966e7d9..cc7351aad2 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-24a2d--false-autoFocus-true-placeholder-undefined-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-24a2d--false-autoFocus-true-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-24a2d--false-autoFocus-true-placeholder-undefined-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-24a2d--false-autoFocus-true-placeholder-undefined-1-firefox-linux.png index f0be81c431..99c837b42f 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-24a2d--false-autoFocus-true-placeholder-undefined-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-24a2d--false-autoFocus-true-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-24a2d--false-autoFocus-true-placeholder-undefined-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-24a2d--false-autoFocus-true-placeholder-undefined-1-webkit-linux.png index 106141283e..6da6eebb65 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-24a2d--false-autoFocus-true-placeholder-undefined-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-24a2d--false-autoFocus-true-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-58716-lse-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-58716-lse-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png index 32b8552340..7910446220 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-58716-lse-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-58716-lse-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-58716-lse-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-58716-lse-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png index 535910f11b..4410bd7b82 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-58716-lse-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-58716-lse-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-58716-lse-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-58716-lse-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png index fd380957cf..490a48719b 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-58716-lse-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-58716-lse-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-80808-y-true-autoFocus-true-placeholder-undefined-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-80808-y-true-autoFocus-true-placeholder-undefined-2-chromium-linux.png index 25139b1df1..1bebc47771 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-80808-y-true-autoFocus-true-placeholder-undefined-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-80808-y-true-autoFocus-true-placeholder-undefined-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-80808-y-true-autoFocus-true-placeholder-undefined-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-80808-y-true-autoFocus-true-placeholder-undefined-2-firefox-linux.png index 24a233a384..1b01365e78 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-80808-y-true-autoFocus-true-placeholder-undefined-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-80808-y-true-autoFocus-true-placeholder-undefined-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-80808-y-true-autoFocus-true-placeholder-undefined-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-80808-y-true-autoFocus-true-placeholder-undefined-2-webkit-linux.png index 69d443e1f7..f0db0fb029 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-80808-y-true-autoFocus-true-placeholder-undefined-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-80808-y-true-autoFocus-true-placeholder-undefined-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-b8da6-y-true-autoFocus-true-placeholder-undefined-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-b8da6-y-true-autoFocus-true-placeholder-undefined-1-chromium-linux.png index 365abd46fb..fa2d7df819 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-b8da6-y-true-autoFocus-true-placeholder-undefined-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-b8da6-y-true-autoFocus-true-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-b8da6-y-true-autoFocus-true-placeholder-undefined-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-b8da6-y-true-autoFocus-true-placeholder-undefined-1-firefox-linux.png index 24a233a384..1b01365e78 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-b8da6-y-true-autoFocus-true-placeholder-undefined-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-b8da6-y-true-autoFocus-true-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-b8da6-y-true-autoFocus-true-placeholder-undefined-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-b8da6-y-true-autoFocus-true-placeholder-undefined-1-webkit-linux.png index 43692893b2..1556120fbf 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-b8da6-y-true-autoFocus-true-placeholder-undefined-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-b8da6-y-true-autoFocus-true-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-facd2-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-facd2-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png index 3860133ed2..4344bd972a 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-facd2-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-facd2-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-facd2-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-facd2-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png index 44594537b5..b1ffda0609 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-facd2-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-facd2-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-facd2-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-facd2-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png index eb34495022..4ca57a9008 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-facd2-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-l-state-valid-facd2-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-282c4-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-282c4-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png index c540d191e4..10c83f31fe 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-282c4-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-282c4-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-282c4-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-282c4-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png index 715c10d802..83392a99ad 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-282c4-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-282c4-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-282c4-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-282c4-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png index b9f1d22699..fc4dfbb8c5 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-282c4-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-282c4-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-71cab-lse-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-71cab-lse-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png index 01e079ef31..e118f18549 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-71cab-lse-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-71cab-lse-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-71cab-lse-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-71cab-lse-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png index e30e68db54..f8375b93e9 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-71cab-lse-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-71cab-lse-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-71cab-lse-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-71cab-lse-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png index ef9f3ac8f2..323c0e7e39 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-71cab-lse-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-71cab-lse-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-9d0db-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-9d0db-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png index 807f23d718..a936354058 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-9d0db-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-9d0db-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-9d0db-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-9d0db-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png index 84b289cb60..7ae92cda6e 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-9d0db-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-9d0db-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-9d0db-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-9d0db-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png index 80736f9f4d..935e00e8ba 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-9d0db-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-inval-9d0db-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-16059-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-16059-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png index 25cacc0d04..2d9f392651 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-16059-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-16059-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-16059-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-16059-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png index 976ee7138e..6c901ec68b 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-16059-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-16059-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-16059-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-16059-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png index c1cecab62f..4f852ef964 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-16059-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-16059-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-2b84f-alse-autoFocus-true-placeholder-Placeholder-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-2b84f-alse-autoFocus-true-placeholder-Placeholder-2-chromium-linux.png index 6f242152d2..e98278cf6d 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-2b84f-alse-autoFocus-true-placeholder-Placeholder-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-2b84f-alse-autoFocus-true-placeholder-Placeholder-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-2b84f-alse-autoFocus-true-placeholder-Placeholder-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-2b84f-alse-autoFocus-true-placeholder-Placeholder-2-firefox-linux.png index 029a147711..486310361c 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-2b84f-alse-autoFocus-true-placeholder-Placeholder-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-2b84f-alse-autoFocus-true-placeholder-Placeholder-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-2b84f-alse-autoFocus-true-placeholder-Placeholder-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-2b84f-alse-autoFocus-true-placeholder-Placeholder-2-webkit-linux.png index 1ec1c1d21d..bd70396ffc 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-2b84f-alse-autoFocus-true-placeholder-Placeholder-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-2b84f-alse-autoFocus-true-placeholder-Placeholder-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-44852-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-44852-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png index cf5b95d06c..41d2145f91 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-44852-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-44852-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-44852-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-44852-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png index 869fe16db1..83ed8b0648 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-44852-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-44852-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-44852-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-44852-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png index 2b51ea76b1..dd59b26c07 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-44852-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-44852-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-5c458-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-5c458-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png index 3f7f588f6f..c0a73193df 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-5c458-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-5c458-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-5c458-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-5c458-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png index 1c2663786d..ec4205f35d 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-5c458-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-5c458-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-5c458-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-5c458-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png index db544a22b3..fcc9720935 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-5c458-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-5c458-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-9a228-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-9a228-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png index c460492c1b..3b58a18d90 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-9a228-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-9a228-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-9a228-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-9a228-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png index 8ea08ff9f6..9e31064b53 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-9a228-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-9a228-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-9a228-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-9a228-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png index 80e6f03c7b..86109df2f8 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-9a228-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-9a228-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-a23d9-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-a23d9-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png index 25cacc0d04..2d9f392651 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-a23d9-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-a23d9-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-a23d9-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-a23d9-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png index 976ee7138e..6c901ec68b 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-a23d9-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-a23d9-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-a23d9-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-a23d9-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png index c1cecab62f..4f852ef964 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-a23d9-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-a23d9-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-c81ff-alse-autoFocus-true-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-c81ff-alse-autoFocus-true-placeholder-Placeholder-1-chromium-linux.png index 12190928aa..48b6207c2f 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-c81ff-alse-autoFocus-true-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-c81ff-alse-autoFocus-true-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-c81ff-alse-autoFocus-true-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-c81ff-alse-autoFocus-true-placeholder-Placeholder-1-firefox-linux.png index 029a147711..486310361c 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-c81ff-alse-autoFocus-true-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-c81ff-alse-autoFocus-true-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-c81ff-alse-autoFocus-true-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-c81ff-alse-autoFocus-true-placeholder-Placeholder-1-webkit-linux.png index 750d2f5fed..fc4a5826e7 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-c81ff-alse-autoFocus-true-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-norma-c81ff-alse-autoFocus-true-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-71a98-false-autoFocus-false-placeholder-undefined-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-71a98-false-autoFocus-false-placeholder-undefined-2-chromium-linux.png index 2e582632dd..ca273420bb 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-71a98-false-autoFocus-false-placeholder-undefined-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-71a98-false-autoFocus-false-placeholder-undefined-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-71a98-false-autoFocus-false-placeholder-undefined-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-71a98-false-autoFocus-false-placeholder-undefined-2-firefox-linux.png index 57c6aa14f3..50d154bab7 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-71a98-false-autoFocus-false-placeholder-undefined-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-71a98-false-autoFocus-false-placeholder-undefined-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-71a98-false-autoFocus-false-placeholder-undefined-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-71a98-false-autoFocus-false-placeholder-undefined-2-webkit-linux.png index ac75387833..7ba1a0413d 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-71a98-false-autoFocus-false-placeholder-undefined-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-71a98-false-autoFocus-false-placeholder-undefined-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-7ce60-false-autoFocus-false-placeholder-undefined-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-7ce60-false-autoFocus-false-placeholder-undefined-1-chromium-linux.png index cc003509e5..f519a3874f 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-7ce60-false-autoFocus-false-placeholder-undefined-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-7ce60-false-autoFocus-false-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-7ce60-false-autoFocus-false-placeholder-undefined-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-7ce60-false-autoFocus-false-placeholder-undefined-1-firefox-linux.png index fd4131e331..337011c962 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-7ce60-false-autoFocus-false-placeholder-undefined-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-7ce60-false-autoFocus-false-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-7ce60-false-autoFocus-false-placeholder-undefined-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-7ce60-false-autoFocus-false-placeholder-undefined-1-webkit-linux.png index 1e16affb33..0f588cf0ef 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-7ce60-false-autoFocus-false-placeholder-undefined-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-base-state-m-state-valid-7ce60-false-autoFocus-false-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-1-chromium-linux.png index ceeb00fc35..3fa531c75f 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-1-firefox-linux.png index e11bec6ff7..4e96c96bfc 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-1-webkit-linux.png index bce6ec64b9..71d1fd30fe 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-2-chromium-linux.png index e6dcd0398d..346f5ef379 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-2-firefox-linux.png index e11bec6ff7..4e96c96bfc 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-2-webkit-linux.png index 9a679d8328..f4e9d4e1ac 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-loading-state-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0cc56-false-autoFocus-false-placeholder-undefined-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0cc56-false-autoFocus-false-placeholder-undefined-1-chromium-linux.png index 48996b7ab3..7ed9a07f83 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0cc56-false-autoFocus-false-placeholder-undefined-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0cc56-false-autoFocus-false-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0cc56-false-autoFocus-false-placeholder-undefined-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0cc56-false-autoFocus-false-placeholder-undefined-1-firefox-linux.png index 4880ab0083..f3633f4f2a 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0cc56-false-autoFocus-false-placeholder-undefined-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0cc56-false-autoFocus-false-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0cc56-false-autoFocus-false-placeholder-undefined-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0cc56-false-autoFocus-false-placeholder-undefined-1-webkit-linux.png index 62acf24b10..0649606374 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0cc56-false-autoFocus-false-placeholder-undefined-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0cc56-false-autoFocus-false-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0eae4-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0eae4-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png index 19f3b8e88e..d1f711a9b6 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0eae4-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0eae4-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0eae4-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0eae4-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png index e60c412e7a..ce3e0dbd50 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0eae4-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0eae4-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0eae4-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0eae4-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png index 79867d881e..d1982f674d 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0eae4-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-0eae4-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1451f-alse-autoFocus-true-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1451f-alse-autoFocus-true-placeholder-Placeholder-1-chromium-linux.png index 6f955ee824..e51f873edf 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1451f-alse-autoFocus-true-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1451f-alse-autoFocus-true-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1451f-alse-autoFocus-true-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1451f-alse-autoFocus-true-placeholder-Placeholder-1-firefox-linux.png index ab849c7f05..4e3bb4efcf 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1451f-alse-autoFocus-true-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1451f-alse-autoFocus-true-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1451f-alse-autoFocus-true-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1451f-alse-autoFocus-true-placeholder-Placeholder-1-webkit-linux.png index e3b07ffd2f..0dde0db288 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1451f-alse-autoFocus-true-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1451f-alse-autoFocus-true-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-14808-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-14808-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png index 168c6198f8..bd354a1e34 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-14808-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-14808-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-14808-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-14808-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png index b0f13ce007..ae87ffe81f 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-14808-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-14808-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-14808-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-14808-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png index fb9d17f876..f0584243c4 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-14808-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-14808-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1df7c-alse-autoFocus-true-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1df7c-alse-autoFocus-true-placeholder-Placeholder-1-chromium-linux.png index 3c2c8a2e8c..94e1ed03f6 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1df7c-alse-autoFocus-true-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1df7c-alse-autoFocus-true-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1df7c-alse-autoFocus-true-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1df7c-alse-autoFocus-true-placeholder-Placeholder-1-firefox-linux.png index facc2ab08a..f9862a2862 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1df7c-alse-autoFocus-true-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1df7c-alse-autoFocus-true-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1df7c-alse-autoFocus-true-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1df7c-alse-autoFocus-true-placeholder-Placeholder-1-webkit-linux.png index 73b48ab4b9..3992937759 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1df7c-alse-autoFocus-true-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-1df7c-alse-autoFocus-true-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-45847-alse-autoFocus-true-placeholder-Placeholder-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-45847-alse-autoFocus-true-placeholder-Placeholder-2-chromium-linux.png index ddf7648b97..01ddfe6c39 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-45847-alse-autoFocus-true-placeholder-Placeholder-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-45847-alse-autoFocus-true-placeholder-Placeholder-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-45847-alse-autoFocus-true-placeholder-Placeholder-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-45847-alse-autoFocus-true-placeholder-Placeholder-2-firefox-linux.png index facc2ab08a..f9862a2862 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-45847-alse-autoFocus-true-placeholder-Placeholder-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-45847-alse-autoFocus-true-placeholder-Placeholder-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-45847-alse-autoFocus-true-placeholder-Placeholder-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-45847-alse-autoFocus-true-placeholder-Placeholder-2-webkit-linux.png index 861a084bee..aa1330ad6e 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-45847-alse-autoFocus-true-placeholder-Placeholder-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-45847-alse-autoFocus-true-placeholder-Placeholder-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-4a872-lse-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-4a872-lse-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png index 1e1cfa382f..a7b455bca0 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-4a872-lse-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-4a872-lse-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-4a872-lse-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-4a872-lse-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png index 5e9d9ddfb3..02663534c0 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-4a872-lse-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-4a872-lse-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-4a872-lse-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-4a872-lse-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png index 4738ee6853..738caee94f 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-4a872-lse-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-4a872-lse-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-50a17-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-50a17-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png index b98d66df2a..32be62f22c 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-50a17-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-50a17-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-50a17-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-50a17-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png index d154299371..fe03ad79de 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-50a17-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-50a17-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-50a17-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-50a17-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png index a66dd41cc7..90254c4bd7 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-50a17-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-50a17-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-6610c--false-autoFocus-true-placeholder-undefined-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-6610c--false-autoFocus-true-placeholder-undefined-1-chromium-linux.png index f299be838a..652776646b 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-6610c--false-autoFocus-true-placeholder-undefined-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-6610c--false-autoFocus-true-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-6610c--false-autoFocus-true-placeholder-undefined-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-6610c--false-autoFocus-true-placeholder-undefined-1-firefox-linux.png index 658cd51f56..53c2e07ee1 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-6610c--false-autoFocus-true-placeholder-undefined-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-6610c--false-autoFocus-true-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-6610c--false-autoFocus-true-placeholder-undefined-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-6610c--false-autoFocus-true-placeholder-undefined-1-webkit-linux.png index e3e3e9c932..9ce50c95d7 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-6610c--false-autoFocus-true-placeholder-undefined-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-6610c--false-autoFocus-true-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-820f5-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-820f5-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png index 6c6a88f068..4a6450db33 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-820f5-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-820f5-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-820f5-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-820f5-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png index f55bca1ce7..cd5fa18896 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-820f5-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-820f5-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-820f5-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-820f5-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png index 4bedfb1846..440d94ebca 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-820f5-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-820f5-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-836ef-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-836ef-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png index 576cb15acc..b391378507 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-836ef-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-836ef-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-836ef-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-836ef-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png index bfe14b6937..849548b05f 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-836ef-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-836ef-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-836ef-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-836ef-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png index a0446c168a..3439a0e72b 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-836ef-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-836ef-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-a7efe-y-true-autoFocus-true-placeholder-undefined-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-a7efe-y-true-autoFocus-true-placeholder-undefined-1-chromium-linux.png index ad48405a7a..fd436e2169 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-a7efe-y-true-autoFocus-true-placeholder-undefined-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-a7efe-y-true-autoFocus-true-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-a7efe-y-true-autoFocus-true-placeholder-undefined-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-a7efe-y-true-autoFocus-true-placeholder-undefined-1-firefox-linux.png index 53f67939e0..ddd12e747c 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-a7efe-y-true-autoFocus-true-placeholder-undefined-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-a7efe-y-true-autoFocus-true-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-a7efe-y-true-autoFocus-true-placeholder-undefined-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-a7efe-y-true-autoFocus-true-placeholder-undefined-1-webkit-linux.png index bc471df50a..0e6b03d9f0 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-a7efe-y-true-autoFocus-true-placeholder-undefined-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-a7efe-y-true-autoFocus-true-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ab3f8-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ab3f8-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png index 19f3b8e88e..d1f711a9b6 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ab3f8-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ab3f8-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ab3f8-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ab3f8-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png index e60c412e7a..ce3e0dbd50 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ab3f8-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ab3f8-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ab3f8-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ab3f8-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png index 79867d881e..d1982f674d 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ab3f8-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ab3f8-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-bd8f2-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-bd8f2-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png index 9969d4ef9f..d191c65d02 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-bd8f2-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-bd8f2-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-bd8f2-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-bd8f2-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png index f521b977fd..a76f7e9bbe 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-bd8f2-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-bd8f2-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-bd8f2-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-bd8f2-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png index 576ea44925..63a57141ee 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-bd8f2-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-bd8f2-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c1adc-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c1adc-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png index 183780589b..6aa8c2c861 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c1adc-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c1adc-rue-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c1adc-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c1adc-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png index d2704be764..afd9af9bfe 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c1adc-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c1adc-rue-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c1adc-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c1adc-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png index a7aaf2fa85..8dfeac893f 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c1adc-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c1adc-rue-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c464d-lse-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c464d-lse-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png index 06e5db4fc1..c17dc97685 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c464d-lse-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c464d-lse-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c464d-lse-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c464d-lse-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png index c1105330e9..a50329a21d 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c464d-lse-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c464d-lse-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c464d-lse-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c464d-lse-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png index 0dd91294e6..5afbba347d 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c464d-lse-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-c464d-lse-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cb891-alse-autoFocus-true-placeholder-Placeholder-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cb891-alse-autoFocus-true-placeholder-Placeholder-2-chromium-linux.png index e261b30473..edbcf72a56 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cb891-alse-autoFocus-true-placeholder-Placeholder-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cb891-alse-autoFocus-true-placeholder-Placeholder-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cb891-alse-autoFocus-true-placeholder-Placeholder-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cb891-alse-autoFocus-true-placeholder-Placeholder-2-firefox-linux.png index ab849c7f05..4e3bb4efcf 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cb891-alse-autoFocus-true-placeholder-Placeholder-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cb891-alse-autoFocus-true-placeholder-Placeholder-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cb891-alse-autoFocus-true-placeholder-Placeholder-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cb891-alse-autoFocus-true-placeholder-Placeholder-2-webkit-linux.png index 653c73e804..2a379935a4 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cb891-alse-autoFocus-true-placeholder-Placeholder-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cb891-alse-autoFocus-true-placeholder-Placeholder-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ce847-false-autoFocus-false-placeholder-undefined-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ce847-false-autoFocus-false-placeholder-undefined-2-chromium-linux.png index 961e7a8e5f..2473183aa8 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ce847-false-autoFocus-false-placeholder-undefined-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ce847-false-autoFocus-false-placeholder-undefined-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ce847-false-autoFocus-false-placeholder-undefined-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ce847-false-autoFocus-false-placeholder-undefined-2-firefox-linux.png index 9085f3514c..f797309ed5 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ce847-false-autoFocus-false-placeholder-undefined-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ce847-false-autoFocus-false-placeholder-undefined-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ce847-false-autoFocus-false-placeholder-undefined-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ce847-false-autoFocus-false-placeholder-undefined-2-webkit-linux.png index 5043c30b90..70e10dbdc1 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ce847-false-autoFocus-false-placeholder-undefined-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-ce847-false-autoFocus-false-placeholder-undefined-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cf5a9-false-autoFocus-false-placeholder-undefined-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cf5a9-false-autoFocus-false-placeholder-undefined-2-chromium-linux.png index 662040ed12..1a5ee1f810 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cf5a9-false-autoFocus-false-placeholder-undefined-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cf5a9-false-autoFocus-false-placeholder-undefined-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cf5a9-false-autoFocus-false-placeholder-undefined-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cf5a9-false-autoFocus-false-placeholder-undefined-2-firefox-linux.png index fe53db8e76..690517bfd4 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cf5a9-false-autoFocus-false-placeholder-undefined-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cf5a9-false-autoFocus-false-placeholder-undefined-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cf5a9-false-autoFocus-false-placeholder-undefined-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cf5a9-false-autoFocus-false-placeholder-undefined-2-webkit-linux.png index d3f9c8c4ce..bf11c68366 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cf5a9-false-autoFocus-false-placeholder-undefined-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-cf5a9-false-autoFocus-false-placeholder-undefined-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-dadb3-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-dadb3-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png index f9bca46afa..97f58ae9f2 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-dadb3-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-dadb3-rue-autoFocus-false-placeholder-Placeholder-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-dadb3-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-dadb3-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png index 0a5e82e5f3..51ff5e1b61 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-dadb3-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-dadb3-rue-autoFocus-false-placeholder-Placeholder-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-dadb3-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-dadb3-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png index 1a955c5c78..370e05f8aa 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-dadb3-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-dadb3-rue-autoFocus-false-placeholder-Placeholder-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-e889c-y-true-autoFocus-true-placeholder-undefined-2-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-e889c-y-true-autoFocus-true-placeholder-undefined-2-chromium-linux.png index 16e9ffe525..8b91b4eb35 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-e889c-y-true-autoFocus-true-placeholder-undefined-2-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-e889c-y-true-autoFocus-true-placeholder-undefined-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-e889c-y-true-autoFocus-true-placeholder-undefined-2-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-e889c-y-true-autoFocus-true-placeholder-undefined-2-firefox-linux.png index 53f67939e0..ddd12e747c 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-e889c-y-true-autoFocus-true-placeholder-undefined-2-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-e889c-y-true-autoFocus-true-placeholder-undefined-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-e889c-y-true-autoFocus-true-placeholder-undefined-2-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-e889c-y-true-autoFocus-true-placeholder-undefined-2-webkit-linux.png index d50f3ee91b..ccee984851 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-e889c-y-true-autoFocus-true-placeholder-undefined-2-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-e889c-y-true-autoFocus-true-placeholder-undefined-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-f82bc-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-f82bc-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png index 76cfe42d7a..4a231064b9 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-f82bc-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-f82bc-lse-autoFocus-false-placeholder-Placeholder-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-f82bc-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-f82bc-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png index 9a877f725f..f4f98dc235 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-f82bc-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-f82bc-lse-autoFocus-false-placeholder-Placeholder-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-f82bc-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-f82bc-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png index a50b118398..1c554c517e 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-f82bc-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-f82bc-lse-autoFocus-false-placeholder-Placeholder-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-fa413-false-autoFocus-false-placeholder-undefined-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-fa413-false-autoFocus-false-placeholder-undefined-1-chromium-linux.png index dd960fc9e3..05de185cdc 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-fa413-false-autoFocus-false-placeholder-undefined-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-fa413-false-autoFocus-false-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-fa413-false-autoFocus-false-placeholder-undefined-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-fa413-false-autoFocus-false-placeholder-undefined-1-firefox-linux.png index 62014bee08..4f88f6d96d 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-fa413-false-autoFocus-false-placeholder-undefined-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-fa413-false-autoFocus-false-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-fa413-false-autoFocus-false-placeholder-undefined-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-fa413-false-autoFocus-false-placeholder-undefined-1-webkit-linux.png index 1ad5bf0da5..20fe6a9d08 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-fa413-false-autoFocus-false-placeholder-undefined-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-input-with-neighbor-location-s-fa413-false-autoFocus-false-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-password-input-1-chromium-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-password-input-1-chromium-linux.png index 3f73f3afd3..ddf535039c 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-password-input-1-chromium-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-password-input-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-password-input-1-firefox-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-password-input-1-firefox-linux.png index 57d266a14e..d22ce23816 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-password-input-1-firefox-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-password-input-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-password-input-1-webkit-linux.png b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-password-input-1-webkit-linux.png index c5022193a6..1eca660e0e 100644 Binary files a/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-password-input-1-webkit-linux.png and b/semcore/input/__tests__/input.browser-test.tsx-snapshots/-visual-Verify-password-input-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-1-chromium-linux.png b/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-1-chromium-linux.png index ad6dc1d7d8..7cc8571d42 100644 Binary files a/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-1-chromium-linux.png and b/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-1-firefox-linux.png b/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-1-firefox-linux.png index e8ae4e4463..86b68e91cf 100644 Binary files a/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-1-firefox-linux.png and b/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-1-webkit-linux.png b/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-1-webkit-linux.png index c2ad11de73..a3018a77f9 100644 Binary files a/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-1-webkit-linux.png and b/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-2-chromium-linux.png b/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-2-chromium-linux.png index 3f01dc32a5..c23415801b 100644 Binary files a/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-2-chromium-linux.png and b/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-2-firefox-linux.png b/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-2-firefox-linux.png index 27a2658c7f..11d5de2cf0 100644 Binary files a/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-2-firefox-linux.png and b/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-2-webkit-linux.png b/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-2-webkit-linux.png index 7dc6fb41c4..0b40d17e4c 100644 Binary files a/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-2-webkit-linux.png and b/semcore/input/__tests__/ux-patterns-with-input/form.browser-test.tsx-snapshots/-visual-Verify-login-form-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-1-chromium-linux.png b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-1-chromium-linux.png index d381f0105d..49a0629f59 100644 Binary files a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-1-chromium-linux.png and b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-1-firefox-linux.png b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-1-firefox-linux.png index b8705e1dd7..4707af5a9c 100644 Binary files a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-1-firefox-linux.png and b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-1-webkit-linux.png b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-1-webkit-linux.png index de663b5b8e..244a0e568f 100644 Binary files a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-1-webkit-linux.png and b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-1-webkit-linux.png differ diff --git a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-2-chromium-linux.png b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-2-chromium-linux.png index 8ac5ce1be6..56b2e9ebd3 100644 Binary files a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-2-chromium-linux.png and b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-2-chromium-linux.png differ diff --git a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-2-firefox-linux.png b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-2-firefox-linux.png index cdfd6d5af5..43d35d2ce3 100644 Binary files a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-2-firefox-linux.png and b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-2-firefox-linux.png differ diff --git a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-2-webkit-linux.png b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-2-webkit-linux.png index f5298f292d..d50d559251 100644 Binary files a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-2-webkit-linux.png and b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-Unknown-country-and-number-format-2-webkit-linux.png differ diff --git a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-known-country-and-unknown-number-format-1-chromium-linux.png b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-known-country-and-unknown-number-format-1-chromium-linux.png index f08d5e06ed..98d4172944 100644 Binary files a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-known-country-and-unknown-number-format-1-chromium-linux.png and b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-known-country-and-unknown-number-format-1-chromium-linux.png differ diff --git a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-known-country-and-unknown-number-format-1-firefox-linux.png b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-known-country-and-unknown-number-format-1-firefox-linux.png index 0ed6fabfb4..11ff0c3398 100644 Binary files a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-known-country-and-unknown-number-format-1-firefox-linux.png and b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-known-country-and-unknown-number-format-1-firefox-linux.png differ diff --git a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-known-country-and-unknown-number-format-1-webkit-linux.png b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-known-country-and-unknown-number-format-1-webkit-linux.png index 1b57cd2332..02cd38eae9 100644 Binary files a/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-known-country-and-unknown-number-format-1-webkit-linux.png and b/semcore/input/__tests__/ux-patterns-with-input/input-phone.browser-test.tsx-snapshots/-visual-Verify-known-country-and-unknown-number-format-1-webkit-linux.png differ diff --git a/semcore/input/src/style/input.shadow.css b/semcore/input/src/style/input.shadow.css index 644ad97eb4..26a5d72a9c 100644 --- a/semcore/input/src/style/input.shadow.css +++ b/semcore/input/src/style/input.shadow.css @@ -83,9 +83,9 @@ SAddon { justify-content: center; align-items: center; flex: 0 0 auto; - padding: 0 var(--intergalactic-spacing-2x, 8px); + padding: 0 var(--intergalactic-spacing-content-padding-medium, 12px); height: 100%; - color: var(--intergalactic-icon-secondary-neutral, oklch(0.104 0.023 162.3 / 0.385)); + color: var(--intergalactic-icon-secondary-neutral, oklch(0.118 0.023 170.1 / 0.262)); } SAddon[interactive] { @@ -102,16 +102,14 @@ SAddon[disabled] { pointer-events: none; } -SAddon[size='m']:not(SButton) { - padding: 0 var(--intergalactic-spacing-2x, 8px); -} - +SAddon[size='m'][neighborLocation='right']:not(SButton), SAddon[size='l'][neighborLocation='right']:not(SButton) { - padding: 0 var(--intergalactic-spacing-2x, 8px) 0 var(--intergalactic-spacing-3x, 12px); + padding: 0 var(--intergalactic-spacing-content-gap-medium, 6px) 0 var(--intergalactic-spacing-content-padding-medium, 12px); } +SAddon[size='m'][neighborLocation='left']:not(SButton), SAddon[size='l'][neighborLocation='left']:not(SButton) { - padding: 0 var(--intergalactic-spacing-3x, 12px) 0 var(--intergalactic-spacing-2x, 8px); + padding: 0 var(--intergalactic-spacing-content-padding-medium, 12px) 0 var(--intergalactic-spacing-content-gap-medium, 6px); } SInput SAddon:nth-last-child(2) { @@ -119,21 +117,21 @@ SInput SAddon:nth-last-child(2) { } SValue[size='m'] { - padding: 0 var(--intergalactic-spacing-2x, 8px); + padding: 0 var(--intergalactic-spacing-content-padding-medium, 12px); } SValue[size='l'] { - padding: 0 var(--intergalactic-spacing-3x, 12px); + padding: 0 var(--intergalactic-spacing-content-padding-medium, 12px); } SInput[size='m'] { font-size: var(--intergalactic-fs-200, 14px); - height: var(--intergalactic-form-control-m, 28px); + height: var(--intergalactic-form-control-m, 32px); } SInput[size='l'] { font-size: var(--intergalactic-fs-300, 16px); - height: var(--intergalactic-form-control-l, 40px); + height: var(--intergalactic-form-control-l, 44px); } SInput:has(SValue:focus-visible) { diff --git a/semcore/link/__tests__/__snapshots__/link-external.test.tsx.snap b/semcore/link/__tests__/__snapshots__/link-external.test.tsx.snap new file mode 100644 index 0000000000..5f04b33392 --- /dev/null +++ b/semcore/link/__tests__/__snapshots__/link-external.test.tsx.snap @@ -0,0 +1,74 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`Link external children composition > Verify Link.Addon children stay siblings of Link.Text in external mode 1`] = ` +{ + "children": [ + { + "children": [ + { + "children": [], + "uiName": "Link.Addon", + }, + { + "children": [], + "uiName": "Link.Addon", + }, + ], + "uiName": "Link.InnerWrapper", + }, + ], + "uiName": "Link", +} +`; + +exports[`Link external children composition > Verify neither documented external-link shape double-wraps Link.Text > Link.Text with explicit Link.ExternalIcon 1`] = ` +{ + "children": [ + { + "children": [ + { + "children": [], + "uiName": "Link.Text", + }, + { + "children": [ + { + "children": [], + "uiName": null, + }, + ], + "uiName": "Link.ExternalIcon", + }, + ], + "uiName": "Link.InnerWrapper", + }, + ], + "uiName": "Link", +} +`; + +exports[`Link external children composition > Verify neither documented external-link shape double-wraps Link.Text > string child, icon injected 1`] = ` +{ + "children": [ + { + "children": [ + { + "children": [], + "uiName": "Link.Text", + }, + { + "children": [ + { + "children": [], + "uiName": null, + }, + ], + "uiName": "Link.ExternalIcon", + }, + ], + "uiName": "Link.InnerWrapper", + }, + ], + "uiName": "Link", +} +`; diff --git a/semcore/link/__tests__/link-external.test.tsx b/semcore/link/__tests__/link-external.test.tsx new file mode 100644 index 0000000000..179bc686a2 --- /dev/null +++ b/semcore/link/__tests__/link-external.test.tsx @@ -0,0 +1,214 @@ +// @vitest-environment jsdom +import { extractUIName } from '@semcore/testing-utils/shared/extractUINameTree'; +import { cleanup, render } from '@semcore/testing-utils/testing-library'; +import { expect, test, describe, beforeEach } from '@semcore/testing-utils/vitest'; +import React from 'react'; + +import Link from '../src'; + +/** + * Decision table for Link's external-link auto-detection, plus the DOM and composition + * the external branch produces. + * + * link.browser-test.tsx covers the three cases that need a real browser — an external + * href, `isExternal={false}` overriding one, and detection from string children — using + * `loadPageWithOrigin`. Everything here is deliberately NOT repeated there: the remaining + * rows are pure branch coverage of isExternalLink(), which is cheap in jsdom and would + * cost a page load per case per engine in Playwright. + * + * Note isExternalLink() resolves the href against `window.location.origin` and treats an + * "Invalid base URL" throw as external, so a couple of hrefs classify differently where + * the origin is unavailable (about:blank, sandboxed iframes). Rows below record the jsdom + * answer and flag where that diverges. + */ + +/** Derived at runtime so the suite does not depend on the jsdom origin staying fixed. */ +const SAME_HOST_URL = `${window.location.origin}/internal-page`; +const EXTERNAL_URL = 'https://other.example.com/page'; + +const getLink = (container: HTMLElement) => + container.querySelector('[data-ui-name="Link"]') as HTMLAnchorElement; + +/** Whether auto-injected or written by hand, the icon renders as Link.ExternalIcon. */ +const getExternalIcons = (container: HTMLElement) => + container.querySelectorAll('[data-ui-name="Link.ExternalIcon"]'); + +type Case = { + desc: string; + props: Record; + children?: React.ReactNode; + external: boolean; +}; + +const cases: Case[] = [ + { desc: 'isExternal=true wins over a relative href', props: { isExternal: true, href: '/local' }, children: 'Text', external: true }, + { desc: 'isExternal=true with no href', props: { isExternal: true }, children: 'Text', external: true }, + { desc: 'plain http href on another host', props: { href: 'http://other.example.com' }, children: 'Text', external: true }, + { desc: 'absolute href on the same host', props: { href: SAME_HOST_URL }, children: 'Text', external: false }, + { desc: 'relative href', props: { href: '/relative' }, children: 'Text', external: false }, + // A hrefless anchor navigates nowhere, so there is nothing to open in a new tab — the + // children branch only decides externality once an href exists. + { desc: 'string children holding a URL are not external without an href', props: {}, children: EXTERNAL_URL, external: false }, + { desc: 'string children holding a same-host URL lose to nothing', props: { href: '/local' }, children: SAME_HOST_URL, external: false }, + { desc: 'element children fall back to href', props: { href: EXTERNAL_URL }, children: Text, external: true }, + + // Scheme edge cases that isUrl() is meant to handle. + { desc: 'protocol-relative //host href', props: { href: '//other.example.com' }, children: 'Text', external: true }, + { desc: 'uppercase HTTPS:// href', props: { href: 'HTTPS://other.example.com' }, children: 'Text', external: true }, + { desc: 'mailto: href is not external', props: { href: 'mailto:a@b.com' }, children: 'a@b.com', external: false }, + // isUrl() is a prefix check, so this relative href counts as a URL. With an origin + // available it resolves against it and lands on the same host; without one `new URL` + // throws and isExternalLink() treats the throw as external. Same href, opposite answer. + { desc: 'relative href starting with the letters "http"', props: { href: 'http-docs/page' }, children: 'Text', external: false }, +]; + +describe('Link external detection', () => { + beforeEach(cleanup); + + cases.forEach(({ desc, props, children, external }) => { + test(`Verify ${desc}`, () => { + const { container } = render({children}); + const link = getLink(container); + + if (external) { + expect(link.getAttribute('target')).toBe('_blank'); + } else { + expect(link.getAttribute('target')).toBe(null); + } + }); + }); + + test('Verify external link with no children renders no icon', () => { + const { container } = render(); + + expect(getLink(container).getAttribute('target')).toBe('_blank'); + expect(getExternalIcons(container)).toHaveLength(0); + }); + + test('Verify the external icon is injected only for an external href', () => { + const { container: external } = render(Text); + const { container: internal } = render(Text); + + expect(getExternalIcons(external)).toHaveLength(1); + expect(getExternalIcons(internal)).toHaveLength(0); + }); + + test('Verify string children that are themselves a URL get no icon', () => { + const { container } = render({EXTERNAL_URL}); + + expect(getExternalIcons(container)).toHaveLength(0); + }); + + test('Verify element children get no icon on their own', () => { + const { container } = render( + + Text + , + ); + + expect(getLink(container).getAttribute('target')).toBe('_blank'); + expect(getExternalIcons(container)).toHaveLength(0); + }); + + test('Verify Link.ExternalIcon renders where the consumer puts it', () => { + const { container } = render( + + Text + + , + ); + + const inner = container.querySelector('[data-ui-name="Link.InnerWrapper"]')!; + const order = Array.from(inner.children).map((el) => el.getAttribute('data-ui-name')); + + expect(getExternalIcons(container)).toHaveLength(1); + expect(order.indexOf('Link.ExternalIcon')).toBeGreaterThan(order.indexOf('Link.Text')); + }); + + test('Verify Link.ExternalIcon takes its size from the parent Link', () => { + const { container } = render( + + Text + + , + ); + + expect(getExternalIcons(container)[0].getAttribute('width')).toBe('29'); + }); +}); + +describe('Link external DOM attributes', () => { + beforeEach(cleanup); + + test('Verify internal link carries no rel', () => { + const { container } = render(Text); + + expect(getLink(container).getAttribute('rel')).toBe(null); + }); + + test('Verify external link is announced as opening in a new tab', () => { + const { container } = render(Text); + const describedBy = getLink(container).getAttribute('aria-describedby'); + + expect(describedBy).toBeTruthy(); + expect(container.querySelector(`#${describedBy}`)?.textContent).toBe('Opens in a new tab'); + }); + + test('Verify internal link has no new-tab announcement', () => { + const { container } = render(Text); + + expect(getLink(container).getAttribute('aria-describedby')).toBe(null); + expect(container.textContent).not.toContain('Opens in a new tab'); + }); +}); + +describe('Link external children composition', () => { + beforeEach(cleanup); + + /* + External mode runs the same addonTextChildren() call as internal mode and appends the + icon as a sibling. The snapshots cover both shapes the docs advertise plus Link.Addon + children, which used to end up inside Link.Text. Prop addons render outside the branch + entirely and never regressed, so they are left to the decision table above. + */ + + test('Verify neither documented external-link shape double-wraps Link.Text', () => { + // The two shapes from docs/examples/external_links.tsx: a bare string child, where the + // icon is injected automatically, and Link.Text plus an explicit Link.ExternalIcon. + // The second is what stories and DataTable's LinkAction use, and it is the one that + // used to get double-wrapped — doubling text-decoration and breaking the ellipsis + // container. + const { container: autoIcon } = render( + Primary external link, + ); + const { container: manualIcon } = render( + + Secondary external link + + , + ); + + expect(extractUIName(getLink(autoIcon))).toMatchSnapshot('string child, icon injected'); + expect(extractUIName(getLink(manualIcon))).toMatchSnapshot('Link.Text with explicit Link.ExternalIcon'); + + for (const container of [autoIcon, manualIcon]) { + expect(container.querySelectorAll('[data-ui-name="Link.Text"] [data-ui-name="Link.Text"]')) + .toHaveLength(0); + expect(getExternalIcons(container)).toHaveLength(1); + } + }); + + test('Verify Link.Addon children stay siblings of Link.Text in external mode', () => { + const { container } = render( + + L + Text + R + , + ); + + expect(extractUIName(getLink(container))).toMatchSnapshot(); + expect(container.querySelectorAll('[data-ui-name="Link.Text"] [data-ui-name="Link.Addon"]')) + .toHaveLength(0); + }); +}); diff --git a/semcore/link/__tests__/link.browser-test.tsx b/semcore/link/__tests__/link.browser-test.tsx index 2a6d9b250c..db68640218 100644 --- a/semcore/link/__tests__/link.browser-test.tsx +++ b/semcore/link/__tests__/link.browser-test.tsx @@ -1,5 +1,5 @@ import { expect, test } from '@semcore/testing-utils/playwright'; -import type { Page } from '@semcore/testing-utils/playwright'; +import type { Page, Locator } from '@semcore/testing-utils/playwright'; import { loadPage } from '@semcore/testing-utils/shared/helpers'; import { TAG } from '@semcore/testing-utils/shared/tags'; @@ -20,22 +20,85 @@ export const locators = { }; const storyPath = 'stories/components/link/tests/examples/basic_usage.tsx'; +const hintStoryPath = 'stories/components/link/tests/examples/link-hint.tsx'; +/** Stacks all 9 sizes in one render, so a single screenshot covers the whole size sweep. */ +const sizesStoryPath = 'stories/components/link/tests/examples/link-different-sizes.tsx'; + +const APP_ORIGIN = 'https://app.example.test'; +const EXTERNAL_HREF = 'https://developer.semrush.com/intergalactic/components/link/link-api'; + +const loadPageWithOrigin = async (page: Page, props: Record) => { + await page.route(`${APP_ORIGIN}/**`, (route) => route.fulfill({ + contentType: 'text/html', + body: '', + })); + await page.goto(`${APP_ORIGIN}/`); + await loadPage(page, storyPath, 'en', props); +}; -// Matches the CSS fallback colors after the test bundle normalizes them. -const cssVarColorFallbacks: Record = { - '--intergalactic-text-link': 'oklch(0.53 0.21 263)', - '--intergalactic-text-link-hover-active': 'oklch(0.51 0.202 263)', +/** + * Resolves a design token to the exact string the current engine reports. + * + * Probing in-page rather than hardcoding an `rgb()` literal keeps assertions portable: + * chromium, firefox and webkit each serialize `oklch()` differently. The empty-string + * check catches a renamed token, which would otherwise compare a property's initial + * value against itself and pass. + */ +const getCssVarColor = async (page: Page, varName: string, prop = 'color') => { + const value = await page.evaluate( + ({ name, cssProp }: { name: string; cssProp: string }) => { + const probe = document.createElement('div'); + probe.style.setProperty(cssProp, `var(${name})`); + document.body.appendChild(probe); + const computed = getComputedStyle(probe).getPropertyValue(cssProp); + probe.remove(); + return computed; + }, + { name: varName, cssProp: prop }, + ); + + expect(value, `Design token ${varName} does not resolve — is it defined in the theme?`).not.toBe(''); + + return value; }; -const getCssVarColor = async (page: Page, varName: string) => { - return page.evaluate(({ name, fallback }) => { - const probe = document.createElement('div'); - probe.style.color = fallback ? `var(${name}, ${fallback})` : `var(${name})`; - document.body.appendChild(probe); - const color = getComputedStyle(probe).color; - probe.remove(); - return color; - }, { name: varName, fallback: cssVarColorFallbacks[varName] }); +/** + * Waits past the Hint open delay (250ms, see `timeout={[250, 50]}` in Link.tsx) and then + * for the fade-in to finish. Rows where no hint appears fall through the same check, so + * this is safe to call without knowing whether the text ended up truncated. + */ +const settleHint = async (page: Page) => { + await page.waitForTimeout(600); + await page.waitForFunction(() => { + const el = document.querySelector('[data-ui-name="Hint"]'); + return !el || getComputedStyle(el).opacity === '1'; + }); +}; + +/** + * Waits until the ellipsis Hint is fully painted, and fails if it never opens. + */ +const waitForHint = async (page: Page) => { + await expect(locators.hint(page).first()).toBeVisible(); + + await page.waitForFunction(() => { + const el = document.querySelector('[data-ui-name="Hint"]'); + if (!el) return false; + if (getComputedStyle(el).opacity !== '1') return false; + if (el.getAnimations?.().some((animation) => animation.playState === 'running')) return false; + + const { x, y, width, height } = el.getBoundingClientRect(); + const previous = (window as any).__hintRect; + (window as any).__hintRect = { x, y, width, height }; + + if (!previous) return false; + + return previous.x === x && previous.y === y && previous.width === width && previous.height === height; + }); + + await page.evaluate(() => { + delete (window as any).__hintRect; + }); }; async function getTextClip(page: Page) { @@ -49,129 +112,201 @@ async function getTextClip(page: Page) { const longText = 'The quick brown fox jumps over the lazy dog and even more text to ensure truncation'; /* ===================================================== -@visual -Visual states, hover and focus styles, paddings, margins, and snapshots. +Pairwise tables. + +- SIZE_SWEEP runs on link-different-sizes.tsx, which stacks all 9 sizes in a single render. + `size` therefore costs one screenshot instead of nine and drops out of the combinatorics. + This is where `theme` and external links get their size coverage, including the 9 entries + of `externalIconSizeMap`. The story paints a dark background under theme='invert', whose + near-white link colour is otherwise invisible. +- DETAIL_MATRIX runs on basic_usage.tsx and carries only what the sizes story cannot + express: ellipsis crop variants, per-side addon types, addonPassMethod, `color` and the + disabled state. `size` is cut to the 300/600 boundary, where the icon addon and + `addonWidth` switch (20px -> 28px). ===================================================== */ -test.describe(` ${TAG.VISUAL}`, () => { - // Section 1: Size * addon position * ellipsis * addonType * color * merged rotation - const sizes = [100, 200, 300, 400, 500, 600, 700, 800]; - const addonTypes = ['icon', 'badge', 'counter', 'spin']; - - const addonCombos = [ - { desc: 'no addons', showAddonLeft: false, showAddonRight: false }, - { desc: 'addonLeft', showAddonLeft: true, showAddonRight: false }, - { desc: 'addonRight', showAddonLeft: false, showAddonRight: true }, - { desc: 'both addons', showAddonLeft: true, showAddonRight: true }, - ]; +const ADDONS = ['none', 'icon', 'badge', 'counter', 'spin'] as const; +const THEMES = ['default', 'light', 'accent', 'invert'] as const; + +// 25 rows over 4 themes: 25 % 4 === 1, so the stride visits every theme and pairs it with +// a different addon combination each time round. +const SIZE_SWEEP = Array.from({ length: 25 }, (_, i) => ({ + addonLeft: ADDONS[Math.floor(i / 5)], + addonRight: ADDONS[i % 5], + theme: THEMES[i % 4], + external: i % 2 === 1, + ellipsis: Math.floor(i / 2) % 2 === 0, + active: Math.floor(i / 3) % 2 === 1, +})); + +type DetailRow = { + ellipsis: 'off' | 'true' | 'middle' | 'middleLast2' | 'endMaxLine2'; + addons: 'none' | 'left' | 'right' | 'both'; + /* null exactly when there is no addon */ + addonType: 'icon' | 'badge' | 'counter' | 'spin' | null; + /* only the <600 / >=600 boundary */ + size: 300 | 600; + state: 'default' | 'active' | 'disabled'; + theme: 'default' | 'light' | 'accent' | 'invert'; + /* null unless the addon is an icon */ + passMethod: 'children' | 'tag' | null; + external: boolean; + /* only alongside theme='default' - a color prop overrides the [theme] block */ + color: 'text-critical' | null; +}; - const ellipsisVariants = [ - { desc: 'ellipsis: true', vars: { ellipsis: { ellipsis: true } } }, - { desc: 'cropPosition: middle', vars: { ellipsis: { 'ellipsis:cropPosition': 'middle' } } }, - { desc: 'middle, lastRequired: 2', vars: { ellipsis: { 'ellipsis:cropPosition': 'middle', 'ellipsis:lastRequiredSymbols': 2 } } }, - { desc: 'end, maxLine: 2', vars: { ellipsis: { 'ellipsis:cropPosition': 'end', 'ellipsis:maxLine': 2 } } }, - ]; +/* + All-pairs over the 9 columns above under three constraints: + addonType is set exactly when addons !== 'none' + passMethod is set exactly when addonType === 'icon' + color is set only when theme === 'default' + */ +const DETAIL_MATRIX: DetailRow[] = [ + { ellipsis: 'off', addons: 'none', addonType: null, size: 300, state: 'default', theme: 'default', passMethod: null, external: false, color: null }, + { ellipsis: 'true', addons: 'left', addonType: 'icon', size: 600, state: 'active', theme: 'default', passMethod: 'children', external: true, color: 'text-critical' }, + { ellipsis: 'middle', addons: 'right', addonType: 'icon', size: 300, state: 'disabled', theme: 'invert', passMethod: 'tag', external: true, color: null }, + { ellipsis: 'middleLast2', addons: 'both', addonType: 'badge', size: 600, state: 'active', theme: 'invert', passMethod: null, external: false, color: null }, + { ellipsis: 'endMaxLine2', addons: 'right', addonType: 'counter', size: 600, state: 'disabled', theme: 'default', passMethod: null, external: false, color: 'text-critical' }, + { ellipsis: 'endMaxLine2', addons: 'left', addonType: 'spin', size: 300, state: 'default', theme: 'accent', passMethod: null, external: true, color: null }, + { ellipsis: 'true', addons: 'both', addonType: 'icon', size: 300, state: 'default', theme: 'invert', passMethod: 'children', external: false, color: null }, + { ellipsis: 'middle', addons: 'both', addonType: 'spin', size: 600, state: 'default', theme: 'default', passMethod: null, external: false, color: 'text-critical' }, + { ellipsis: 'off', addons: 'none', addonType: null, size: 600, state: 'active', theme: 'light', passMethod: null, external: true, color: null }, + { ellipsis: 'middleLast2', addons: 'left', addonType: 'icon', size: 300, state: 'default', theme: 'default', passMethod: 'tag', external: false, color: 'text-critical' }, + { ellipsis: 'off', addons: 'both', addonType: 'icon', size: 600, state: 'disabled', theme: 'accent', passMethod: 'tag', external: true, color: null }, + { ellipsis: 'true', addons: 'right', addonType: 'counter', size: 300, state: 'active', theme: 'accent', passMethod: null, external: true, color: null }, + { ellipsis: 'off', addons: 'left', addonType: 'badge', size: 300, state: 'disabled', theme: 'default', passMethod: null, external: true, color: 'text-critical' }, + { ellipsis: 'middleLast2', addons: 'none', addonType: null, size: 300, state: 'disabled', theme: 'default', passMethod: null, external: true, color: 'text-critical' }, + { ellipsis: 'middle', addons: 'none', addonType: null, size: 300, state: 'active', theme: 'accent', passMethod: null, external: false, color: null }, + { ellipsis: 'middle', addons: 'left', addonType: 'counter', size: 300, state: 'default', theme: 'light', passMethod: null, external: false, color: null }, + { ellipsis: 'middleLast2', addons: 'right', addonType: 'badge', size: 300, state: 'default', theme: 'light', passMethod: null, external: false, color: null }, + { ellipsis: 'endMaxLine2', addons: 'both', addonType: 'icon', size: 300, state: 'active', theme: 'light', passMethod: 'tag', external: false, color: null }, + { ellipsis: 'off', addons: 'right', addonType: 'icon', size: 300, state: 'disabled', theme: 'invert', passMethod: 'children', external: false, color: null }, + { ellipsis: 'true', addons: 'right', addonType: 'spin', size: 300, state: 'disabled', theme: 'light', passMethod: null, external: false, color: null }, + { ellipsis: 'off', addons: 'left', addonType: 'spin', size: 300, state: 'active', theme: 'default', passMethod: null, external: false, color: null }, + { ellipsis: 'off', addons: 'both', addonType: 'counter', size: 300, state: 'default', theme: 'default', passMethod: null, external: false, color: null }, + { ellipsis: 'true', addons: 'none', addonType: null, size: 300, state: 'default', theme: 'default', passMethod: null, external: false, color: null }, + { ellipsis: 'endMaxLine2', addons: 'none', addonType: null, size: 300, state: 'default', theme: 'default', passMethod: null, external: false, color: null }, + { ellipsis: 'true', addons: 'left', addonType: 'icon', size: 300, state: 'default', theme: 'default', passMethod: 'tag', external: false, color: null }, + { ellipsis: 'true', addons: 'left', addonType: 'badge', size: 300, state: 'default', theme: 'default', passMethod: null, external: false, color: null }, + { ellipsis: 'middle', addons: 'left', addonType: 'icon', size: 300, state: 'default', theme: 'default', passMethod: 'children', external: false, color: null }, + { ellipsis: 'middle', addons: 'left', addonType: 'badge', size: 300, state: 'default', theme: 'default', passMethod: null, external: false, color: null }, + { ellipsis: 'middleLast2', addons: 'left', addonType: 'icon', size: 300, state: 'default', theme: 'default', passMethod: 'children', external: false, color: null }, + { ellipsis: 'middleLast2', addons: 'left', addonType: 'counter', size: 300, state: 'default', theme: 'default', passMethod: null, external: false, color: null }, + { ellipsis: 'middleLast2', addons: 'left', addonType: 'spin', size: 300, state: 'default', theme: 'default', passMethod: null, external: false, color: null }, + { ellipsis: 'endMaxLine2', addons: 'left', addonType: 'icon', size: 300, state: 'default', theme: 'default', passMethod: 'children', external: false, color: null }, + { ellipsis: 'endMaxLine2', addons: 'left', addonType: 'badge', size: 300, state: 'default', theme: 'default', passMethod: null, external: false, color: null }, +]; + +const ELLIPSIS_VARS: Record> = { + off: { ellipsis: false }, + true: { ellipsis: true }, + middle: { 'ellipsis:cropPosition': 'middle' }, + middleLast2: { 'ellipsis:cropPosition': 'middle', 'ellipsis:lastRequiredSymbols': 2 }, + endMaxLine2: { 'ellipsis:cropPosition': 'end', 'ellipsis:maxLine': 2 }, +}; - const colorBySize: Record = { - 200: 'text-success', 300: 'text-critical', - 600: 'text-success', 700: 'text-critical', +/** + * Every column contributes to the snapshot name, making each filename unique and + * descriptive. Only missing values are omitted: `addonType` and `passMethod` when + * `null`, and `color` when the default `use` colors are used. + */ +const detailTestName = (row: DetailRow) => [ + `addons=${row.addons}`, + row.addonType ? `addonType=${row.addonType}` : null, + row.passMethod ? `passMethod=${row.passMethod}` : null, + `ellipsis=${row.ellipsis}`, + `size=${row.size}`, + `state=${row.state}`, + `theme=${row.theme}`, + `href=${row.external ? 'external' : 'internal'}`, + row.color ? `color=${row.color}` : null, +].filter(Boolean).join(' '); + +const detailProps = (row: DetailRow) => { + const showAddonLeft = row.addons === 'left' || row.addons === 'both'; + const showAddonRight = row.addons === 'right' || row.addons === 'both'; + + return { + size: row.size, + theme: row.theme, + text: longText, + href: row.external ? EXTERNAL_HREF : '#', + ellipsis: ELLIPSIS_VARS[row.ellipsis], + showAddonLeft, + showAddonRight, + ...(row.addonType && showAddonLeft ? { addonLeftType: row.addonType } : {}), + ...(row.addonType && showAddonRight ? { addonRightType: row.addonType } : {}), + ...(row.passMethod ? { addonPassMethod: row.passMethod } : {}), + ...(row.color ? { color: row.color } : {}), + ...(row.state === 'active' ? { active: true } : {}), + ...(row.state === 'disabled' ? { disabled: true } : {}), }; +}; - sizes.forEach((size, sizeIndex) => { - addonCombos.forEach(({ desc: addonDesc, ...addonVars }, addonIndex) => { - const { desc: ellipsisDesc, vars: ellipsisVars } = ellipsisVariants[addonIndex]; - - const hasAddons = addonVars.showAddonLeft || addonVars.showAddonRight; - const addonType = hasAddons ? addonTypes[(sizeIndex + addonIndex - 1) % 4] : undefined; - const color = !hasAddons ? colorBySize[size] : undefined; - const merged = (size === 800 && addonIndex === 2) ? true : undefined; - - const extraVars: Record = {}; - if (addonType) { - if (addonVars.showAddonLeft) extraVars.addonLeftType = addonType; - if (addonVars.showAddonRight) extraVars.addonRightType = addonType; - } - if (color) extraVars.color = color; - if (merged) extraVars.merged = true; - - const descParts = [addonDesc]; - if (addonType && addonType !== 'icon') descParts.push(addonType); - if (color) descParts.push(color); - if (merged) descParts.push('merged'); - - test(`Verify Link size=${size}, ${descParts.join(', ')}, ${ellipsisDesc}`, { - tag: [TAG.PRIORITY_HIGH, '@link', '@ellipsis'], - }, async ({ page }) => { - await loadPage(page, storyPath, 'en', { - size, ...addonVars, text: longText, ...ellipsisVars, ...extraVars, - }); - await page.waitForTimeout(200); // Finish for ellipsis apply - const clip = await getTextClip(page); - - await test.step('Focus first link + verify hint', async () => { - await page.keyboard.press('Tab'); - await expect(locators.link(page).first()).toBeFocused(); - await locators.hint(page).waitFor({ state: 'visible' }); - await page.waitForFunction( - () => { - const el = document.querySelector('[data-ui-name="Hint"]'); - return el && getComputedStyle(el).opacity === '1'; - }, - ); - await expect(page).toHaveScreenshot({ clip }); - }); - - await test.step('Focus second link', async () => { - await page.keyboard.press('Tab'); - await expect(locators.link(page, 1)).toBeFocused(); - // Link2 has no ellipsis/addons - visually identical across combos, snapshot only for combo 0 to decrease amount of snapshots without losing coverage - if (addonIndex === 0) { - await expect(page).toHaveScreenshot({ clip }); - } - }); - - await loadPage(page, storyPath, 'en', { - size, active: true, ...addonVars, text: longText, ...ellipsisVars, ...extraVars, - }); - const activeClip = await getTextClip(page); - await page.waitForTimeout(200); // Finish for ellipsis apply - - await test.step('Verify underlined state + hover hint', async () => { - await locators.link(page).first().hover(); - await locators.hint(page).waitFor({ state: 'visible', timeout: 5000 }); - await page.waitForFunction( - () => { - const el = document.querySelector('[data-ui-name="Hint"]'); - return el && getComputedStyle(el).opacity === '1'; - }, - ); - await expect(page).toHaveScreenshot({ clip: activeClip }); - }); +/* ===================================================== +@visual +Visual states, hover and focus styles, paddings, margins, and snapshots. +===================================================== */ +test.describe(` ${TAG.VISUAL}`, () => { + // Section 1: the whole size sweep — one screenshot per row covers all 9 sizes + SIZE_SWEEP.forEach(({ addonLeft, addonRight, theme, external, ellipsis, active }) => { + // Every column is spelled out, including the off values: a snapshot filename has to + // say what was rendered on its own, and an omitted flag reads as "not applicable" + // rather than "switched off". + const name = [ + `addonLeft=${addonLeft}`, + `addonRight=${addonRight}`, + `theme=${theme}`, + `href=${external ? 'external' : 'internal'}`, + `ellipsis=${ellipsis ? 'on' : 'off'}`, + `state=${active ? 'active' : 'default'}`, + ].join(' '); + + test(`Verify Link in all sizes: ${name}`, { + tag: [TAG.PRIORITY_HIGH, '@link', '@ellipsis'], + }, async ({ page }) => { + await loadPage(page, sizesStoryPath, 'en', { + addonLeft, + addonRight, + theme, + ellipsis, + active, + href: external ? EXTERNAL_HREF : '#', }); - }); - }); + await page.waitForTimeout(200); // Finish for ellipsis apply - // Section 2: Residual tests - disabled, noWrap, mixed addon types - test('Verify Link: disabled with counter addon', { - tag: [TAG.PRIORITY_HIGH, '@link'], - }, async ({ page }) => { - await loadPage(page, storyPath, 'en', { - size: 300, disabled: true, showAddonLeft: true, addonLeftType: 'counter', + await expect(page).toHaveScreenshot(); }); - const clip = await getTextClip(page); - await expect(page).toHaveScreenshot({ clip }); }); - test('Verify Link: disabled+active with success and addons', { - tag: [TAG.PRIORITY_HIGH, '@link'], - }, async ({ page }) => { - await loadPage(page, storyPath, 'en', { - size: 500, disabled: true, active: true, showAddonLeft: true, showAddonRight: true, - color: 'text-success', + // Section 2: detail matrix - the `state` column carries default/active/disabled, so a + DETAIL_MATRIX.forEach((row) => { + test(`Verify single Link: ${detailTestName(row)}`, { + tag: [TAG.PRIORITY_HIGH, '@link', '@ellipsis'], + }, async ({ page }) => { + await loadPage(page, storyPath, 'en', detailProps(row)); + await page.waitForTimeout(200); // Finish for ellipsis apply + + // Only default rows interact: active ones render active from the start, disabled + // ones take neither focus nor hover. Nothing can open a hint there. + if (row.state === 'default') { + await page.keyboard.press('Tab'); + await expect(locators.link(page).first()).toBeFocused(); + + // The hint is part of the expected picture wherever the text gets cropped, so it + // is asserted rather than tolerated: `ellipsis: 'off'` leaves the text whole and + // must stay hintless, every other variant has to open one before the shot. + if (row.ellipsis === 'off') { + await expect(locators.hint(page)).toHaveCount(0); + } else { + await waitForHint(page); + } + } + + await expect(page).toHaveScreenshot({ clip: await getTextClip(page) }); }); - const clip = await getTextClip(page); - await expect(page).toHaveScreenshot({ clip }); }); + // Section 3: residual — noWrap is the one prop neither matrix carries test('Verify Link: noWrap without ellipsis', { tag: [TAG.PRIORITY_HIGH, '@link'], }, async ({ page }) => { @@ -194,67 +329,6 @@ test.describe(` ${TAG.VISUAL}`, () => { }); }); - test('Verify Link: mixed addon types', { - tag: [TAG.PRIORITY_HIGH, '@link'], - }, async ({ page }) => { - await loadPage(page, storyPath, 'en', { - size: 300, showAddonLeft: true, addonLeftType: 'badge', - showAddonRight: true, addonRightType: 'spin', - }); - const clip1 = await getTextClip(page); - - await test.step('Verify badge+spin addons', async () => { - await expect(page).toHaveScreenshot({ clip: clip1 }); - }); - - await loadPage(page, storyPath, 'en', { - size: 800, showAddonLeft: true, addonLeftType: 'counter', - showAddonRight: true, addonRightType: 'badge', active: true, - }); - const clip2 = await getTextClip(page); - - await test.step('Verify counter+badge active', async () => { - await expect(page).toHaveScreenshot({ clip: clip2 }); - }); - }); - - // Section 3: No-hint tests - verify hint does NOT appear when text is not truncated - test.describe('Link without ellipsis', () => { - const noHintVariants = [ - { desc: 'ellipsis: false', vars: { ellipsis: { ellipsis: false } }, text: longText }, - { desc: 'maxLine: 9 (text not truncated)', vars: { ellipsis: { 'ellipsis:cropPosition': 'end', 'ellipsis:maxLine': 9 } }, text: longText }, - ]; - - // 3 sizes - const noHintSizes = [100, 300, 500] as const; - noHintSizes.forEach((size) => { - noHintVariants.forEach(({ desc, vars, text }) => { - test(`Verify no hint appears: size=${size}, ${desc}`, { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, TAG.KEYBOARD, '@ellipsis', '@link'], - }, async ({ page }) => { - await loadPage(page, storyPath, 'en', { ...vars, size, text }); - await page.waitForTimeout(200); // Finish for ellipsis apply - const clip = await getTextClip(page); - - await test.step('Focus and hover link - no hint should appear', async () => { - await page.keyboard.press('Tab'); - await locators.link(page).first().hover(); - await expect(locators.hint(page)).toHaveCount(0); - await expect(locators.link(page).first()).toBeFocused(); - await expect(page).toHaveScreenshot({ clip }); - }); - - await loadPage(page, storyPath, 'en', { ...vars, size, text, active: true }); - - await test.step('Verify no hint with active', async () => { - await locators.link(page).first().hover(); - await expect(locators.hint(page)).toHaveCount(0); - }); - }); - }); - }); - }); - test('Verify default link styles when links inside the text', { tag: [TAG.PRIORITY_HIGH, '@link', '@typography'], }, async ({ page }) => { @@ -267,10 +341,9 @@ test.describe(` ${TAG.VISUAL}`, () => { test('Verify Links without text mouse interactions', { tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@link'], - }, async ({ page, browserName }) => { + }, async ({ page }) => { await loadPage(page, 'stories/components/link/docs/examples/link_without_text.tsx', 'en'); - const linkColor = await getCssVarColor(page, '--intergalactic-text-link'); - const linkHoverActiveColor = await getCssVarColor(page, '--intergalactic-text-link-hover-active'); + const linkColor = await getCssVarColor(page, '--intergalactic-text-link-primary'); await test.step('Verify default color', async () => { await expect(locators.link(page).first()).toHaveCSS('color', linkColor); @@ -279,27 +352,13 @@ test.describe(` ${TAG.VISUAL}`, () => { await test.step('Verify first link hover with hint', async () => { await locators.link(page).first().hover(); - // await page.waitForSelector('text="Home page"'); - await page.waitForFunction( - () => { - const el = document.querySelector('[data-ui-name="Hint"]'); - return el && getComputedStyle(el).opacity === '1'; - }, - ); - if (browserName !== 'firefox') { - await expect(locators.link(page).first()).toHaveCSS('color', linkHoverActiveColor); - await expect(locators.link(page, 1)).toHaveCSS('color', linkColor); - } + await settleHint(page); await expect(page).toHaveScreenshot(); }); await test.step('Verify second link hover with hint', async () => { await locators.link(page, 1).hover(); await page.waitForSelector('text="Go to the next page"'); - if (browserName !== 'firefox') { - await expect(locators.link(page).first()).toHaveCSS('color', linkColor); - await expect(locators.link(page, 1)).toHaveCSS('color', linkHoverActiveColor); - } }); }); @@ -307,17 +366,11 @@ test.describe(` ${TAG.VISUAL}`, () => { tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, '@link'], }, async ({ page }) => { await loadPage(page, 'stories/components/link/docs/examples/link_without_text.tsx', 'en'); - const linkColor = await getCssVarColor(page, '--intergalactic-text-link'); + const linkColor = await getCssVarColor(page, '--intergalactic-text-link-primary'); await test.step('Verify first link focus with hint', async () => { await page.keyboard.press('Tab'); - // await page.waitForSelector('text="Home page"'); - await page.waitForFunction( - () => { - const el = document.querySelector('[data-ui-name="Hint"]'); - return el && getComputedStyle(el).opacity === '1'; - }, - ); + await settleHint(page); await expect(locators.link(page).first()).toHaveCSS('color', linkColor); await expect(locators.link(page, 1)).toHaveCSS('color', linkColor); }); @@ -354,143 +407,180 @@ test.describe(`@link ${TAG.FUNCTIONAL}`, () => { }); const noHintVariants = [ - { desc: 'ellipsis: end and hint disabled', vars: { ellipsis: { 'ellipsis': true, 'ellipsis:cropPosition': 'end', 'hint': false } }, text: longText }, - { desc: 'ellipsis: middle and hint disabled', vars: { ellipsis: { 'ellipsis': true, 'ellipsis:cropPosition': 'middle', 'hint': false } }, text: longText }, + { desc: 'hint explicitly disabled', vars: { ellipsis: { 'ellipsis': true, 'ellipsis:cropPosition': 'end', 'hint': false } } }, + { desc: 'ellipsis off', vars: { ellipsis: { ellipsis: false } } }, + { desc: 'maxLine 9 leaves the text untruncated', vars: { ellipsis: { 'ellipsis:cropPosition': 'end', 'ellipsis:maxLine': 9 } } }, ]; - noHintVariants.forEach(({ desc, vars, text }) => { + noHintVariants.forEach(({ desc, vars }) => { test(`Verify no hint appears: ${desc}`, { tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, TAG.KEYBOARD, '@ellipsis', '@link'], }, async ({ page }) => { - await loadPage(page, storyPath, 'en', { ...vars, text }); + await loadPage(page, storyPath, 'en', { ...vars, size: 300, text: longText }); await page.waitForTimeout(200); - await test.step('Focus and hover link - no hint should appear', async () => { - await page.keyboard.press('Tab'); - await locators.link(page).first().hover(); - await expect(locators.hint(page)).toHaveCount(0); - }); + await page.keyboard.press('Tab'); + await locators.link(page).first().hover(); + await expect(locators.hint(page)).toHaveCount(0); }); }); - // ===== For UIK-5215: Link.Text auto-width inside a constrained container ===== + // Link.Text auto-width inside a constrained container — UIK-5215 const constrainedLinkProps = { size: 300, containerW: 100, text: '1234567890abscdefjhf', }; - const expectAddonInsideConstrainedContainer = async (page: Page, addonIndex = 0) => { - const container = await page.locator('[data-ui-name="Text"]').first().boundingBox(); - const addon = await locators.linkAddon(page, addonIndex).boundingBox(); + /** + * getTextProps() budgets `calc(100% - Npx)` for Link.Text: 20px per icon addon below + * size 600, 28px at or above it, nothing for non-icon addons, plus `2 + externalIconSizeMap` + * when the link is external. Each row pins one term of that sum. + * + * `addonIndex` picks which addon has to stay inside the container; `null` skips the + * containment check for rows where the addon geometry is not the point. + */ + const constrainedWidthCases = [ + { + desc: 'icon addon passed via the addonLeft prop', + props: { showAddonLeft: true, addonLeftType: 'icon', addonPassMethod: 'tag' }, + width: 'calc(100% - 20px)', + addonIndex: 0, + }, + { + desc: 'icon addon passed via Link.Addon children', + props: { showAddonRight: true, addonRightType: 'icon' }, + width: 'calc(100% - 20px)', + addonIndex: 0, + }, + { + desc: 'large icon addon passed via the addonRight prop', + props: { size: 600, showAddonRight: true, addonRightType: 'icon', addonPassMethod: 'tag' }, + width: 'calc(100% - 28px)', + addonIndex: 0, + }, + { + desc: 'two icon addons', + props: { size: 600, showAddonLeft: true, addonLeftType: 'icon', showAddonRight: true, addonRightType: 'icon' }, + width: 'calc(100% - 56px)', + addonIndex: 1, + }, + { + // Browsers normalize `calc(100% - 0px)` to `calc(100% + 0px)` - accept both. + desc: 'no reduction for non-icon addons', + props: { showAddonRight: true, addonRightType: 'badge' }, + width: /^calc\(100% [+-] 0px\)$/, + addonIndex: null, + }, + { + // 20px for the icon addon plus 2 + 10 for the external icon at size 300. The icon + // sits after Link.Text, so a correct reservation is also what keeps it from + // overflowing a narrow cell — no separate containment test needed. + desc: 'room reserved for the external icon', + props: { href: EXTERNAL_HREF, isExternal: true, showAddonLeft: true, addonLeftType: 'icon' }, + width: 'calc(100% - 32px)', + addonIndex: 0, + }, + ] as const; + + constrainedWidthCases.forEach(({ desc, props, width, addonIndex }) => { + test(`Verify constrained Link.Text width: ${desc}`, { + tag: [TAG.PRIORITY_HIGH, '@ellipsis', '@link'], + }, async ({ page }) => { + await loadPage(page, storyPath, 'en', { ...constrainedLinkProps, ...props }); + await page.waitForTimeout(200); - expect(container).not.toBeNull(); - expect(addon).not.toBeNull(); - expect(addon!.x + addon!.width).toBeLessThanOrEqual(container!.x + container!.width + 1); - }; + const linkText = locators.linkText(page).first(); + await expect(linkText).toBeVisible(); - const expectConstrainedLinkHint = async (page: Page) => { - await page.keyboard.press('Tab'); - await expect(locators.link(page).first()).toBeFocused(); - await expect(locators.hint(page)).toBeVisible(); - }; + const actual = await linkText.evaluate((el) => (el as HTMLElement).style.width); + if (typeof width === 'string') { + expect(actual).toBe(width); + } else { + expect(actual).toMatch(width); + } - test('Verify constrained Link.Text width for icon addon passed via addonLeft prop', { - tag: [TAG.PRIORITY_HIGH, '@ellipsis', '@link'], - }, async ({ page }) => { - await loadPage(page, storyPath, 'en', { - ...constrainedLinkProps, - showAddonLeft: true, - addonLeftType: 'icon', - addonPassMethod: 'prop', - }); - await page.waitForTimeout(200); - - const linkText = locators.linkText(page).first(); - await expect(linkText).toBeVisible(); - expect(await linkText.evaluate((el) => (el as HTMLElement).style.width)) - .toBe('calc(100% - 20px)'); - await expectAddonInsideConstrainedContainer(page); - await expectConstrainedLinkHint(page); - }); + if (addonIndex !== null) { + const container = (await page.locator('[data-ui-name="Text"]').first().boundingBox())!; + const addon = (await locators.linkAddon(page, addonIndex).boundingBox())!; + expect(addon.x + addon.width).toBeLessThanOrEqual(container.x + container.width + 1); + } else { + await expect(locators.linkAddon(page).first()).toBeVisible(); + } - test('Verify constrained Link.Text width for icon addon passed via Link.Addon slot', { - tag: [TAG.PRIORITY_HIGH, '@ellipsis', '@link'], - }, async ({ page }) => { - await loadPage(page, storyPath, 'en', { - ...constrainedLinkProps, - showAddonRight: true, - addonRightType: 'icon', + await test.step('Verify the hint still opens on focus', async () => { + await page.keyboard.press('Tab'); + await expect(locators.link(page).first()).toBeFocused(); + await expect(locators.hint(page)).toBeVisible(); + }); }); - await page.waitForTimeout(200); - - const linkText = locators.linkText(page).first(); - await expect(linkText).toBeVisible(); - expect(await linkText.evaluate((el) => (el as HTMLElement).style.width)) - .toBe('calc(100% - 20px)'); - await expectAddonInsideConstrainedContainer(page); - await expectConstrainedLinkHint(page); }); - test('Verify constrained Link.Text width for merged large icon addon', { - tag: [TAG.PRIORITY_HIGH, '@ellipsis', '@link'], - }, async ({ page }) => { - await loadPage(page, storyPath, 'en', { - ...constrainedLinkProps, - size: 600, - showAddonRight: true, - addonRightType: 'icon', - merged: true, + const externalLinkCases = [ + { desc: 'isExternal=false overrides an external href', props: { isExternal: false, href: 'https://other.example.com/page' }, external: false }, + { desc: 'external href is detected', props: { href: 'https://other.example.com/page' }, external: true }, + ]; + + externalLinkCases.forEach(({ desc, props, external }) => { + test(`Verify external link detection: ${desc}`, { + tag: [TAG.PRIORITY_HIGH, '@link'], + }, async ({ page }) => { + await loadPageWithOrigin(page, { ...props, ellipsis: { ellipsis: false } }); + const link = locators.link(page).first(); + + if (external) { + await expect(link).toHaveAttribute('target', '_blank'); + } else { + await expect(link).not.toHaveAttribute('target', '_blank'); + } }); - await page.waitForTimeout(200); - - const linkText = locators.linkText(page).first(); - await expect(linkText).toBeVisible(); - expect(await linkText.evaluate((el) => (el as HTMLElement).style.width)) - .toBe('calc(100% - 28px)'); - await expectAddonInsideConstrainedContainer(page); - await expectConstrainedLinkHint(page); }); - test('Verify constrained Link.Text width for two icon addons', { - tag: [TAG.PRIORITY_HIGH, '@ellipsis', '@link'], + test('Verify external link detection from string children', { + tag: [TAG.PRIORITY_HIGH, '@link'], }, async ({ page }) => { - await loadPage(page, storyPath, 'en', { - ...constrainedLinkProps, - size: 600, - showAddonLeft: true, - addonLeftType: 'icon', - showAddonRight: true, - addonRightType: 'icon', + await loadPageWithOrigin(page, { + childrenMode: 'string', + text: 'https://other.example.com/page', + href: '/relative', + ellipsis: { ellipsis: false }, }); - await page.waitForTimeout(200); - - const linkText = locators.linkText(page).first(); - await expect(linkText).toBeVisible(); - expect(await linkText.evaluate((el) => (el as HTMLElement).style.width)) - .toBe('calc(100% - 56px)'); - await expectAddonInsideConstrainedContainer(page, 1); - await expectConstrainedLinkHint(page); + + await expect(locators.link(page).first()).toHaveAttribute('target', '_blank'); }); - test('Verify constrained Link.Text width is not reduced for non-icon addons', { - tag: [TAG.PRIORITY_HIGH, '@ellipsis', '@link'], - }, async ({ page }) => { - // Browsers normalize `calc(100% - 0px)` to `calc(100% + 0px)` - accept both. - const zeroOffsetWidth = /^calc\(100% [+-] 0px\)$/; + const hintPlacements = ['top', 'bottom', 'left', 'right'] as const; - await loadPage(page, storyPath, 'en', { - ...constrainedLinkProps, - showAddonRight: true, - addonRightType: 'badge', + hintPlacements.forEach((hintPlacement) => { + test(`Verify hint placement: ${hintPlacement}`, { + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@link'], + }, async ({ page }) => { + await loadPage(page, hintStoryPath, 'en', { hintPlacement, count: 1 }); + await page.locator('body').evaluate((body) => { + body.style.padding = '200px'; + }); + + await locators.link(page).first().hover(); + await settleHint(page); + await expect(locators.hint(page).first()).toBeVisible(); + + await expect.poll(async () => { + const hint = await locators.hint(page).first().boundingBox(); + const link = await locators.link(page).first().boundingBox(); + + if (!hint || !link) return false; + + switch (hintPlacement) { + case 'top': + return hint.y + hint.height <= link.y + 1; + case 'bottom': + return hint.y >= link.y + link.height - 1; + case 'left': + return hint.x + hint.width <= link.x + 1; + case 'right': + return hint.x >= link.x + link.width - 1; + } + }).toBe(true); }); - await page.waitForTimeout(200); - - const linkText = locators.linkText(page).first(); - await expect(linkText).toBeVisible(); - expect(await linkText.evaluate((el) => (el as HTMLElement).style.width)) - .toMatch(zeroOffsetWidth); - await expect(locators.linkAddon(page).first()).toBeVisible(); - await expectConstrainedLinkHint(page); }); }); diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-chromium-linux.png deleted file mode 100644 index 33e3341536..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-firefox-linux.png deleted file mode 100644 index 071d3a22d7..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-webkit-linux.png deleted file mode 100644 index 73e284a2cb..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-ellipsis-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-maxLine-9-text-not-truncated-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-maxLine-9-text-not-truncated-1-chromium-linux.png deleted file mode 100644 index d1f8284d1d..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-maxLine-9-text-not-truncated-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-maxLine-9-text-not-truncated-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-maxLine-9-text-not-truncated-1-firefox-linux.png deleted file mode 100644 index d6f0d9aaaa..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-maxLine-9-text-not-truncated-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-maxLine-9-text-not-truncated-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-maxLine-9-text-not-truncated-1-webkit-linux.png deleted file mode 100644 index 4070dca3fc..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-100-maxLine-9-text-not-truncated-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-chromium-linux.png deleted file mode 100644 index 8fbead48c2..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-firefox-linux.png deleted file mode 100644 index 643d3f225b..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-webkit-linux.png deleted file mode 100644 index cfa5feb70e..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-ellipsis-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-maxLine-9-text-not-truncated-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-maxLine-9-text-not-truncated-1-chromium-linux.png deleted file mode 100644 index 278ae717df..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-maxLine-9-text-not-truncated-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-maxLine-9-text-not-truncated-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-maxLine-9-text-not-truncated-1-firefox-linux.png deleted file mode 100644 index 4dc1cf2137..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-maxLine-9-text-not-truncated-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-maxLine-9-text-not-truncated-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-maxLine-9-text-not-truncated-1-webkit-linux.png deleted file mode 100644 index e60df934db..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-300-maxLine-9-text-not-truncated-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-ellipsis-false-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-ellipsis-false-1-chromium-linux.png deleted file mode 100644 index a30162550b..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-ellipsis-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-ellipsis-false-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-ellipsis-false-1-firefox-linux.png deleted file mode 100644 index dd1696bd39..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-ellipsis-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-ellipsis-false-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-ellipsis-false-1-webkit-linux.png deleted file mode 100644 index 73861f4b26..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-ellipsis-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-maxLine-9-text-not-truncated-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-maxLine-9-text-not-truncated-1-chromium-linux.png deleted file mode 100644 index e7a4286d60..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-maxLine-9-text-not-truncated-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-maxLine-9-text-not-truncated-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-maxLine-9-text-not-truncated-1-firefox-linux.png deleted file mode 100644 index 28e9557332..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-maxLine-9-text-not-truncated-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-maxLine-9-text-not-truncated-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-maxLine-9-text-not-truncated-1-webkit-linux.png deleted file mode 100644 index 4ea36bbbb6..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Link-without-ellipsis-Verify-no-hint-appears-size-500-maxLine-9-text-not-truncated-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-active-with-success-and-addons-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-active-with-success-and-addons-1-chromium-linux.png deleted file mode 100644 index 0708107eb2..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-active-with-success-and-addons-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-active-with-success-and-addons-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-active-with-success-and-addons-1-firefox-linux.png deleted file mode 100644 index ff4b8c821f..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-active-with-success-and-addons-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-active-with-success-and-addons-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-active-with-success-and-addons-1-webkit-linux.png deleted file mode 100644 index d11bb6ca5e..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-active-with-success-and-addons-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-with-counter-addon-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-with-counter-addon-1-chromium-linux.png deleted file mode 100644 index c1f3eefe0d..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-with-counter-addon-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-with-counter-addon-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-with-counter-addon-1-firefox-linux.png deleted file mode 100644 index 569f7a6c30..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-with-counter-addon-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-with-counter-addon-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-with-counter-addon-1-webkit-linux.png deleted file mode 100644 index 7963544e40..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-disabled-with-counter-addon-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-19a75-light-href-external-ellipsis-on-state-default-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-19a75-light-href-external-ellipsis-on-state-default-1-chromium-linux.png new file mode 100644 index 0000000000..8170204bf8 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-19a75-light-href-external-ellipsis-on-state-default-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-19a75-light-href-external-ellipsis-on-state-default-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-19a75-light-href-external-ellipsis-on-state-default-1-firefox-linux.png new file mode 100644 index 0000000000..1bce0824e3 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-19a75-light-href-external-ellipsis-on-state-default-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-19a75-light-href-external-ellipsis-on-state-default-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-19a75-light-href-external-ellipsis-on-state-default-1-webkit-linux.png new file mode 100644 index 0000000000..f75ba8e4c3 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-19a75-light-href-external-ellipsis-on-state-default-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-4d7d2-nvert-href-external-ellipsis-off-state-active-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-4d7d2-nvert-href-external-ellipsis-off-state-active-1-chromium-linux.png new file mode 100644 index 0000000000..a38f6f2ae7 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-4d7d2-nvert-href-external-ellipsis-off-state-active-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-4d7d2-nvert-href-external-ellipsis-off-state-active-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-4d7d2-nvert-href-external-ellipsis-off-state-active-1-firefox-linux.png new file mode 100644 index 0000000000..099f040e2a Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-4d7d2-nvert-href-external-ellipsis-off-state-active-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-4d7d2-nvert-href-external-ellipsis-off-state-active-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-4d7d2-nvert-href-external-ellipsis-off-state-active-1-webkit-linux.png new file mode 100644 index 0000000000..c4683638f9 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-4d7d2-nvert-href-external-ellipsis-off-state-active-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-67fbf-ccent-href-internal-ellipsis-off-state-active-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-67fbf-ccent-href-internal-ellipsis-off-state-active-1-chromium-linux.png new file mode 100644 index 0000000000..2aa9dcd08f Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-67fbf-ccent-href-internal-ellipsis-off-state-active-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-67fbf-ccent-href-internal-ellipsis-off-state-active-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-67fbf-ccent-href-internal-ellipsis-off-state-active-1-firefox-linux.png new file mode 100644 index 0000000000..f86841dbde Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-67fbf-ccent-href-internal-ellipsis-off-state-active-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-67fbf-ccent-href-internal-ellipsis-off-state-active-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-67fbf-ccent-href-internal-ellipsis-off-state-active-1-webkit-linux.png new file mode 100644 index 0000000000..33e69f1b78 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-67fbf-ccent-href-internal-ellipsis-off-state-active-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-ba7d2-cent-href-internal-ellipsis-off-state-default-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-ba7d2-cent-href-internal-ellipsis-off-state-default-1-chromium-linux.png new file mode 100644 index 0000000000..e92777aa3b Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-ba7d2-cent-href-internal-ellipsis-off-state-default-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-ba7d2-cent-href-internal-ellipsis-off-state-default-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-ba7d2-cent-href-internal-ellipsis-off-state-default-1-firefox-linux.png new file mode 100644 index 0000000000..783fea3001 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-ba7d2-cent-href-internal-ellipsis-off-state-default-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-ba7d2-cent-href-internal-ellipsis-off-state-default-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-ba7d2-cent-href-internal-ellipsis-off-state-default-1-webkit-linux.png new file mode 100644 index 0000000000..a02abfb0fa Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-ba7d2-cent-href-internal-ellipsis-off-state-default-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-d1c65-fault-href-internal-ellipsis-on-state-default-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-d1c65-fault-href-internal-ellipsis-on-state-default-1-chromium-linux.png new file mode 100644 index 0000000000..582cd036a4 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-d1c65-fault-href-internal-ellipsis-on-state-default-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-d1c65-fault-href-internal-ellipsis-on-state-default-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-d1c65-fault-href-internal-ellipsis-on-state-default-1-firefox-linux.png new file mode 100644 index 0000000000..2643041eb7 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-d1c65-fault-href-internal-ellipsis-on-state-default-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-d1c65-fault-href-internal-ellipsis-on-state-default-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-d1c65-fault-href-internal-ellipsis-on-state-default-1-webkit-linux.png new file mode 100644 index 0000000000..ab4b2c4a71 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-b-d1c65-fault-href-internal-ellipsis-on-state-default-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-43d43--light-href-external-ellipsis-on-state-active-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-43d43--light-href-external-ellipsis-on-state-active-1-chromium-linux.png new file mode 100644 index 0000000000..6f79c10ee6 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-43d43--light-href-external-ellipsis-on-state-active-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-43d43--light-href-external-ellipsis-on-state-active-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-43d43--light-href-external-ellipsis-on-state-active-1-firefox-linux.png new file mode 100644 index 0000000000..e21f464d48 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-43d43--light-href-external-ellipsis-on-state-active-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-43d43--light-href-external-ellipsis-on-state-active-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-43d43--light-href-external-ellipsis-on-state-active-1-webkit-linux.png new file mode 100644 index 0000000000..c82b665902 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-43d43--light-href-external-ellipsis-on-state-active-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-4634a-efault-href-internal-ellipsis-on-state-active-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-4634a-efault-href-internal-ellipsis-on-state-active-1-chromium-linux.png new file mode 100644 index 0000000000..8a29f517e5 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-4634a-efault-href-internal-ellipsis-on-state-active-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-4634a-efault-href-internal-ellipsis-on-state-active-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-4634a-efault-href-internal-ellipsis-on-state-active-1-firefox-linux.png new file mode 100644 index 0000000000..481c5f0070 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-4634a-efault-href-internal-ellipsis-on-state-active-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-4634a-efault-href-internal-ellipsis-on-state-active-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-4634a-efault-href-internal-ellipsis-on-state-active-1-webkit-linux.png new file mode 100644 index 0000000000..f1442069ad Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-4634a-efault-href-internal-ellipsis-on-state-active-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-5c52c-vert-href-external-ellipsis-off-state-default-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-5c52c-vert-href-external-ellipsis-off-state-default-1-chromium-linux.png new file mode 100644 index 0000000000..8c83ba0fc9 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-5c52c-vert-href-external-ellipsis-off-state-default-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-5c52c-vert-href-external-ellipsis-off-state-default-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-5c52c-vert-href-external-ellipsis-off-state-default-1-firefox-linux.png new file mode 100644 index 0000000000..17ff3d9206 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-5c52c-vert-href-external-ellipsis-off-state-default-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-5c52c-vert-href-external-ellipsis-off-state-default-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-5c52c-vert-href-external-ellipsis-off-state-default-1-webkit-linux.png new file mode 100644 index 0000000000..15c0d534e1 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-5c52c-vert-href-external-ellipsis-off-state-default-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-72604-nvert-href-external-ellipsis-off-state-active-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-72604-nvert-href-external-ellipsis-off-state-active-1-chromium-linux.png new file mode 100644 index 0000000000..2dc3824c0b Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-72604-nvert-href-external-ellipsis-off-state-active-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-72604-nvert-href-external-ellipsis-off-state-active-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-72604-nvert-href-external-ellipsis-off-state-active-1-firefox-linux.png new file mode 100644 index 0000000000..6045170d8f Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-72604-nvert-href-external-ellipsis-off-state-active-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-72604-nvert-href-external-ellipsis-off-state-active-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-72604-nvert-href-external-ellipsis-off-state-active-1-webkit-linux.png new file mode 100644 index 0000000000..d63debbf52 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-72604-nvert-href-external-ellipsis-off-state-active-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-ef1cd-cent-href-internal-ellipsis-off-state-default-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-ef1cd-cent-href-internal-ellipsis-off-state-default-1-chromium-linux.png new file mode 100644 index 0000000000..37907ee513 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-ef1cd-cent-href-internal-ellipsis-off-state-default-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-ef1cd-cent-href-internal-ellipsis-off-state-default-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-ef1cd-cent-href-internal-ellipsis-off-state-default-1-firefox-linux.png new file mode 100644 index 0000000000..61ba1f2d42 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-ef1cd-cent-href-internal-ellipsis-off-state-default-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-ef1cd-cent-href-internal-ellipsis-off-state-default-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-ef1cd-cent-href-internal-ellipsis-off-state-default-1-webkit-linux.png new file mode 100644 index 0000000000..e41dc0629c Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-c-ef1cd-cent-href-internal-ellipsis-off-state-default-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-3bf83--light-href-external-ellipsis-on-state-active-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-3bf83--light-href-external-ellipsis-on-state-active-1-chromium-linux.png new file mode 100644 index 0000000000..654d77de77 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-3bf83--light-href-external-ellipsis-on-state-active-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-3bf83--light-href-external-ellipsis-on-state-active-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-3bf83--light-href-external-ellipsis-on-state-active-1-firefox-linux.png new file mode 100644 index 0000000000..1c0447f5a5 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-3bf83--light-href-external-ellipsis-on-state-active-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-3bf83--light-href-external-ellipsis-on-state-active-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-3bf83--light-href-external-ellipsis-on-state-active-1-webkit-linux.png new file mode 100644 index 0000000000..5390b7c2e9 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-3bf83--light-href-external-ellipsis-on-state-active-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-43afe--light-href-external-ellipsis-on-state-active-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-43afe--light-href-external-ellipsis-on-state-active-1-chromium-linux.png new file mode 100644 index 0000000000..8c0b7e7128 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-43afe--light-href-external-ellipsis-on-state-active-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-43afe--light-href-external-ellipsis-on-state-active-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-43afe--light-href-external-ellipsis-on-state-active-1-firefox-linux.png new file mode 100644 index 0000000000..b2340adfdd Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-43afe--light-href-external-ellipsis-on-state-active-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-43afe--light-href-external-ellipsis-on-state-active-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-43afe--light-href-external-ellipsis-on-state-active-1-webkit-linux.png new file mode 100644 index 0000000000..0092233fa6 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-43afe--light-href-external-ellipsis-on-state-active-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-45fd5-fault-href-internal-ellipsis-on-state-default-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-45fd5-fault-href-internal-ellipsis-on-state-default-1-chromium-linux.png new file mode 100644 index 0000000000..59646017f7 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-45fd5-fault-href-internal-ellipsis-on-state-default-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-45fd5-fault-href-internal-ellipsis-on-state-default-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-45fd5-fault-href-internal-ellipsis-on-state-default-1-firefox-linux.png new file mode 100644 index 0000000000..bd3c78287b Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-45fd5-fault-href-internal-ellipsis-on-state-default-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-45fd5-fault-href-internal-ellipsis-on-state-default-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-45fd5-fault-href-internal-ellipsis-on-state-default-1-webkit-linux.png new file mode 100644 index 0000000000..1a27d237c6 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-45fd5-fault-href-internal-ellipsis-on-state-default-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-9dd78-vert-href-external-ellipsis-off-state-default-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-9dd78-vert-href-external-ellipsis-off-state-default-1-chromium-linux.png new file mode 100644 index 0000000000..db502fa1ad Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-9dd78-vert-href-external-ellipsis-off-state-default-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-9dd78-vert-href-external-ellipsis-off-state-default-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-9dd78-vert-href-external-ellipsis-off-state-default-1-firefox-linux.png new file mode 100644 index 0000000000..32b4dc6c36 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-9dd78-vert-href-external-ellipsis-off-state-default-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-9dd78-vert-href-external-ellipsis-off-state-default-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-9dd78-vert-href-external-ellipsis-off-state-default-1-webkit-linux.png new file mode 100644 index 0000000000..6aa36d1155 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-9dd78-vert-href-external-ellipsis-off-state-default-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-d01cb-cent-href-internal-ellipsis-off-state-default-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-d01cb-cent-href-internal-ellipsis-off-state-default-1-chromium-linux.png new file mode 100644 index 0000000000..b69d2f406f Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-d01cb-cent-href-internal-ellipsis-off-state-default-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-d01cb-cent-href-internal-ellipsis-off-state-default-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-d01cb-cent-href-internal-ellipsis-off-state-default-1-firefox-linux.png new file mode 100644 index 0000000000..0300b17b7b Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-d01cb-cent-href-internal-ellipsis-off-state-default-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-d01cb-cent-href-internal-ellipsis-off-state-default-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-d01cb-cent-href-internal-ellipsis-off-state-default-1-webkit-linux.png new file mode 100644 index 0000000000..0fb9070ba0 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-i-d01cb-cent-href-internal-ellipsis-off-state-default-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-23a30-efault-href-internal-ellipsis-on-state-active-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-23a30-efault-href-internal-ellipsis-on-state-active-1-chromium-linux.png new file mode 100644 index 0000000000..cfcdba415b Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-23a30-efault-href-internal-ellipsis-on-state-active-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-23a30-efault-href-internal-ellipsis-on-state-active-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-23a30-efault-href-internal-ellipsis-on-state-active-1-firefox-linux.png new file mode 100644 index 0000000000..01c3ab23ac Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-23a30-efault-href-internal-ellipsis-on-state-active-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-23a30-efault-href-internal-ellipsis-on-state-active-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-23a30-efault-href-internal-ellipsis-on-state-active-1-webkit-linux.png new file mode 100644 index 0000000000..086cf008d8 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-23a30-efault-href-internal-ellipsis-on-state-active-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-339ad-cent-href-internal-ellipsis-off-state-default-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-339ad-cent-href-internal-ellipsis-off-state-default-1-chromium-linux.png new file mode 100644 index 0000000000..b5466876de Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-339ad-cent-href-internal-ellipsis-off-state-default-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-339ad-cent-href-internal-ellipsis-off-state-default-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-339ad-cent-href-internal-ellipsis-off-state-default-1-firefox-linux.png new file mode 100644 index 0000000000..e0bb06bb3e Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-339ad-cent-href-internal-ellipsis-off-state-default-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-339ad-cent-href-internal-ellipsis-off-state-default-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-339ad-cent-href-internal-ellipsis-off-state-default-1-webkit-linux.png new file mode 100644 index 0000000000..d8b518097b Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-339ad-cent-href-internal-ellipsis-off-state-default-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-565d2-light-href-external-ellipsis-on-state-default-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-565d2-light-href-external-ellipsis-on-state-default-1-chromium-linux.png new file mode 100644 index 0000000000..057a070cb8 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-565d2-light-href-external-ellipsis-on-state-default-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-565d2-light-href-external-ellipsis-on-state-default-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-565d2-light-href-external-ellipsis-on-state-default-1-firefox-linux.png new file mode 100644 index 0000000000..824b6a9a7a Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-565d2-light-href-external-ellipsis-on-state-default-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-565d2-light-href-external-ellipsis-on-state-default-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-565d2-light-href-external-ellipsis-on-state-default-1-webkit-linux.png new file mode 100644 index 0000000000..0ce04e18ed Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-565d2-light-href-external-ellipsis-on-state-default-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-bd4e9-fault-href-internal-ellipsis-on-state-default-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-bd4e9-fault-href-internal-ellipsis-on-state-default-1-chromium-linux.png new file mode 100644 index 0000000000..989333c890 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-bd4e9-fault-href-internal-ellipsis-on-state-default-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-bd4e9-fault-href-internal-ellipsis-on-state-default-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-bd4e9-fault-href-internal-ellipsis-on-state-default-1-firefox-linux.png new file mode 100644 index 0000000000..7cc9424d7b Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-bd4e9-fault-href-internal-ellipsis-on-state-default-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-bd4e9-fault-href-internal-ellipsis-on-state-default-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-bd4e9-fault-href-internal-ellipsis-on-state-default-1-webkit-linux.png new file mode 100644 index 0000000000..98db724bbf Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-bd4e9-fault-href-internal-ellipsis-on-state-default-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-d27b4-nvert-href-external-ellipsis-off-state-active-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-d27b4-nvert-href-external-ellipsis-off-state-active-1-chromium-linux.png new file mode 100644 index 0000000000..97888226fd Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-d27b4-nvert-href-external-ellipsis-off-state-active-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-d27b4-nvert-href-external-ellipsis-off-state-active-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-d27b4-nvert-href-external-ellipsis-off-state-active-1-firefox-linux.png new file mode 100644 index 0000000000..3b521654eb Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-d27b4-nvert-href-external-ellipsis-off-state-active-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-d27b4-nvert-href-external-ellipsis-off-state-active-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-d27b4-nvert-href-external-ellipsis-off-state-active-1-webkit-linux.png new file mode 100644 index 0000000000..d844026a51 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-n-d27b4-nvert-href-external-ellipsis-off-state-active-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-18573-fault-href-internal-ellipsis-on-state-default-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-18573-fault-href-internal-ellipsis-on-state-default-1-chromium-linux.png new file mode 100644 index 0000000000..9197e6e36d Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-18573-fault-href-internal-ellipsis-on-state-default-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-18573-fault-href-internal-ellipsis-on-state-default-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-18573-fault-href-internal-ellipsis-on-state-default-1-firefox-linux.png new file mode 100644 index 0000000000..be06195316 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-18573-fault-href-internal-ellipsis-on-state-default-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-18573-fault-href-internal-ellipsis-on-state-default-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-18573-fault-href-internal-ellipsis-on-state-default-1-webkit-linux.png new file mode 100644 index 0000000000..a6d17ca169 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-18573-fault-href-internal-ellipsis-on-state-default-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-19c22--light-href-external-ellipsis-on-state-active-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-19c22--light-href-external-ellipsis-on-state-active-1-chromium-linux.png new file mode 100644 index 0000000000..4fcc9298c9 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-19c22--light-href-external-ellipsis-on-state-active-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-19c22--light-href-external-ellipsis-on-state-active-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-19c22--light-href-external-ellipsis-on-state-active-1-firefox-linux.png new file mode 100644 index 0000000000..409bb1e2ee Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-19c22--light-href-external-ellipsis-on-state-active-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-19c22--light-href-external-ellipsis-on-state-active-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-19c22--light-href-external-ellipsis-on-state-active-1-webkit-linux.png new file mode 100644 index 0000000000..25d4c3fd34 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-19c22--light-href-external-ellipsis-on-state-active-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-7e3a0-nvert-href-external-ellipsis-off-state-active-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-7e3a0-nvert-href-external-ellipsis-off-state-active-1-chromium-linux.png new file mode 100644 index 0000000000..fe0f219e74 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-7e3a0-nvert-href-external-ellipsis-off-state-active-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-7e3a0-nvert-href-external-ellipsis-off-state-active-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-7e3a0-nvert-href-external-ellipsis-off-state-active-1-firefox-linux.png new file mode 100644 index 0000000000..2801de8e92 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-7e3a0-nvert-href-external-ellipsis-off-state-active-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-7e3a0-nvert-href-external-ellipsis-off-state-active-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-7e3a0-nvert-href-external-ellipsis-off-state-active-1-webkit-linux.png new file mode 100644 index 0000000000..b8af2b8583 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-7e3a0-nvert-href-external-ellipsis-off-state-active-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8532f-ccent-href-internal-ellipsis-off-state-active-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8532f-ccent-href-internal-ellipsis-off-state-active-1-chromium-linux.png new file mode 100644 index 0000000000..85ee979a83 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8532f-ccent-href-internal-ellipsis-off-state-active-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8532f-ccent-href-internal-ellipsis-off-state-active-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8532f-ccent-href-internal-ellipsis-off-state-active-1-firefox-linux.png new file mode 100644 index 0000000000..aeedae9a7d Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8532f-ccent-href-internal-ellipsis-off-state-active-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8532f-ccent-href-internal-ellipsis-off-state-active-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8532f-ccent-href-internal-ellipsis-off-state-active-1-webkit-linux.png new file mode 100644 index 0000000000..042f424cdf Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8532f-ccent-href-internal-ellipsis-off-state-active-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8ee84-fault-href-internal-ellipsis-on-state-default-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8ee84-fault-href-internal-ellipsis-on-state-default-1-chromium-linux.png new file mode 100644 index 0000000000..6ea9631108 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8ee84-fault-href-internal-ellipsis-on-state-default-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8ee84-fault-href-internal-ellipsis-on-state-default-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8ee84-fault-href-internal-ellipsis-on-state-default-1-firefox-linux.png new file mode 100644 index 0000000000..2066122593 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8ee84-fault-href-internal-ellipsis-on-state-default-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8ee84-fault-href-internal-ellipsis-on-state-default-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8ee84-fault-href-internal-ellipsis-on-state-default-1-webkit-linux.png new file mode 100644 index 0000000000..e17560a64b Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-in-all-sizes-addonLeft-s-8ee84-fault-href-internal-ellipsis-on-state-default-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-1-chromium-linux.png deleted file mode 100644 index 7df8548be6..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-1-firefox-linux.png deleted file mode 100644 index ecab82574b..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-1-webkit-linux.png deleted file mode 100644 index 5aea0db1ab..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-2-chromium-linux.png deleted file mode 100644 index 5d957e710d..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-2-firefox-linux.png deleted file mode 100644 index cd60abca28..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-2-webkit-linux.png deleted file mode 100644 index 742ab59fe0..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-mixed-addon-types-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-1-chromium-linux.png index 7bfcec4381..cd787f67d1 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-1-chromium-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-1-firefox-linux.png index 33a7c39b3b..2e9d5d3f75 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-1-webkit-linux.png index cd841af85a..416c8da272 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-1-webkit-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-2-chromium-linux.png index ccada89120..698677845c 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-2-chromium-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-2-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-2-firefox-linux.png index 71862ef049..b80204c67f 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-2-webkit-linux.png index 9a1bc2d8e2..7d6aed0bc7 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-2-webkit-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-noWrap-without-ellipsis-2-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-1-chromium-linux.png deleted file mode 100644 index 439620396c..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png deleted file mode 100644 index 25bd9d8a78..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-1-webkit-linux.png deleted file mode 100644 index c005f842fa..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-2-chromium-linux.png deleted file mode 100644 index dc7fe9ac5f..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png deleted file mode 100644 index 18537ffad8..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-2-webkit-linux.png deleted file mode 100644 index 0ae0c92bf4..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png deleted file mode 100644 index 3d32691c75..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png deleted file mode 100644 index 482d79822a..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png deleted file mode 100644 index 39fd2ec0e8..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png deleted file mode 100644 index 76df3797ec..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png deleted file mode 100644 index 221046bd73..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png deleted file mode 100644 index 91bf512c19..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-1-chromium-linux.png deleted file mode 100644 index 4af062ceb6..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-1-firefox-linux.png deleted file mode 100644 index f0f350f1c6..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-1-webkit-linux.png deleted file mode 100644 index 039187cf03..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-2-chromium-linux.png deleted file mode 100644 index d13ba72bc7..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-2-firefox-linux.png deleted file mode 100644 index 0358677cce..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-2-webkit-linux.png deleted file mode 100644 index 999cb0e6ee..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-1-chromium-linux.png deleted file mode 100644 index eb759598b7..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-1-firefox-linux.png deleted file mode 100644 index 23a29e1297..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-1-webkit-linux.png deleted file mode 100644 index 4ba91bb2ad..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-2-chromium-linux.png deleted file mode 100644 index 0bf8413756..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-2-firefox-linux.png deleted file mode 100644 index 7393934100..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-2-webkit-linux.png deleted file mode 100644 index e0489558b7..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-3-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-3-chromium-linux.png deleted file mode 100644 index 8f75d7033b..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-3-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-3-firefox-linux.png deleted file mode 100644 index 9cd78eeef2..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-3-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-3-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-3-webkit-linux.png deleted file mode 100644 index b4128e7210..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-3-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-1-chromium-linux.png deleted file mode 100644 index 785cf48473..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-1-firefox-linux.png deleted file mode 100644 index 10df9d3628..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-1-webkit-linux.png deleted file mode 100644 index a0ecc70897..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-2-chromium-linux.png deleted file mode 100644 index 761a00596d..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-2-firefox-linux.png deleted file mode 100644 index 98f920553d..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-2-webkit-linux.png deleted file mode 100644 index 24af801e6c..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-1-chromium-linux.png deleted file mode 100644 index b92cea8a5c..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png deleted file mode 100644 index ca188470ef..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-1-webkit-linux.png deleted file mode 100644 index df358efedf..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-2-chromium-linux.png deleted file mode 100644 index 19a3b065b6..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png deleted file mode 100644 index 4d378bcba6..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-2-webkit-linux.png deleted file mode 100644 index 3b8e2dd801..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-1-chromium-linux.png deleted file mode 100644 index 7e003f05fa..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-1-firefox-linux.png deleted file mode 100644 index 561f64634c..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-1-webkit-linux.png deleted file mode 100644 index 46505bce02..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-2-chromium-linux.png deleted file mode 100644 index 813d9592df..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-2-firefox-linux.png deleted file mode 100644 index 31be2deb1f..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-2-webkit-linux.png deleted file mode 100644 index 35aaaf6b3e..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-1-chromium-linux.png deleted file mode 100644 index d37d99f976..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-1-firefox-linux.png deleted file mode 100644 index e364180745..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-1-webkit-linux.png deleted file mode 100644 index 9bd3dee51a..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-2-chromium-linux.png deleted file mode 100644 index 9d0b436040..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-2-firefox-linux.png deleted file mode 100644 index 641afe1bba..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-2-webkit-linux.png deleted file mode 100644 index 108bd08e23..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-3-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-3-chromium-linux.png deleted file mode 100644 index 5e70075dc3..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-3-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-3-firefox-linux.png deleted file mode 100644 index bc0012e379..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-3-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-3-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-3-webkit-linux.png deleted file mode 100644 index 72fefd1d83..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-3-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-1-chromium-linux.png deleted file mode 100644 index 2b17038a18..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png deleted file mode 100644 index 4743d81a0f..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-1-webkit-linux.png deleted file mode 100644 index ac35471ac3..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-2-chromium-linux.png deleted file mode 100644 index c043ef5fd2..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png deleted file mode 100644 index 3f36a97744..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-2-webkit-linux.png deleted file mode 100644 index 0d91442db0..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-1-chromium-linux.png deleted file mode 100644 index 6969517ef1..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png deleted file mode 100644 index 0880631d90..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-1-webkit-linux.png deleted file mode 100644 index e0975fbc1c..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-2-chromium-linux.png deleted file mode 100644 index 64dded0bfc..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png deleted file mode 100644 index 708b2c8f80..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-2-webkit-linux.png deleted file mode 100644 index baa62a143a..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-1-chromium-linux.png deleted file mode 100644 index dfb47b234d..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-1-firefox-linux.png deleted file mode 100644 index 4a7ee2fc12..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-1-webkit-linux.png deleted file mode 100644 index 686039c829..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-2-chromium-linux.png deleted file mode 100644 index 6e8e36fc4b..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-2-firefox-linux.png deleted file mode 100644 index 7a8676788a..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-2-webkit-linux.png deleted file mode 100644 index 15a3e3a954..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-1-chromium-linux.png deleted file mode 100644 index a830d50526..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png deleted file mode 100644 index 2b34502c0c..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-1-webkit-linux.png deleted file mode 100644 index fabf1de347..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-2-chromium-linux.png deleted file mode 100644 index b1ab3b097b..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-2-firefox-linux.png deleted file mode 100644 index 265318604d..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-2-webkit-linux.png deleted file mode 100644 index 62ba96de18..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-3-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-3-chromium-linux.png deleted file mode 100644 index 03c54572d3..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-3-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png deleted file mode 100644 index 507538a331..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-3-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-3-webkit-linux.png deleted file mode 100644 index f617a91484..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-3-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-1-chromium-linux.png deleted file mode 100644 index ef4d4932f9..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-1-firefox-linux.png deleted file mode 100644 index 7c3a3690a4..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-1-webkit-linux.png deleted file mode 100644 index e866714bd8..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-2-chromium-linux.png deleted file mode 100644 index 5996d3a0dc..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-2-firefox-linux.png deleted file mode 100644 index 9c0c3939f3..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-2-webkit-linux.png deleted file mode 100644 index 20a124d256..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-1-chromium-linux.png deleted file mode 100644 index 3eabe56e9d..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png deleted file mode 100644 index 2118e5f593..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-1-webkit-linux.png deleted file mode 100644 index 2572d17610..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-2-chromium-linux.png deleted file mode 100644 index a861457942..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-2-firefox-linux.png deleted file mode 100644 index c00e65677d..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-2-webkit-linux.png deleted file mode 100644 index bf5473acae..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-1-chromium-linux.png deleted file mode 100644 index 2341d714d3..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-1-firefox-linux.png deleted file mode 100644 index 521e01d6a1..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-1-webkit-linux.png deleted file mode 100644 index bbb7222be7..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-2-chromium-linux.png deleted file mode 100644 index 4dbc204bf3..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-2-firefox-linux.png deleted file mode 100644 index 6fa5af9971..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-2-webkit-linux.png deleted file mode 100644 index 144308603f..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-1-chromium-linux.png deleted file mode 100644 index 974f6a0300..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-1-firefox-linux.png deleted file mode 100644 index d271edab7b..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-1-webkit-linux.png deleted file mode 100644 index 57229496cf..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-2-chromium-linux.png deleted file mode 100644 index 3aeaa08ca8..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-2-firefox-linux.png deleted file mode 100644 index 0af4a5c275..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-2-webkit-linux.png deleted file mode 100644 index 2c0276bee1..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-3-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-3-chromium-linux.png deleted file mode 100644 index 7f03056c59..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-3-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-3-firefox-linux.png deleted file mode 100644 index f40fbfb018..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-3-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-3-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-3-webkit-linux.png deleted file mode 100644 index 75da250beb..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-3-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-1-chromium-linux.png deleted file mode 100644 index 00c124d0b9..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png deleted file mode 100644 index 7781db9db8..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-1-webkit-linux.png deleted file mode 100644 index 7b50b1c17c..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-2-chromium-linux.png deleted file mode 100644 index 9528c9485b..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-2-firefox-linux.png deleted file mode 100644 index 5b19f8b8e0..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-2-webkit-linux.png deleted file mode 100644 index b27cf4e404..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png deleted file mode 100644 index 4e23a2b7c4..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png deleted file mode 100644 index d49687a4d8..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png deleted file mode 100644 index 94aad392ae..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png deleted file mode 100644 index b88650eef9..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png deleted file mode 100644 index 71a001a025..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png deleted file mode 100644 index 3526f2c30f..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-1-chromium-linux.png deleted file mode 100644 index 95736ed5a9..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-1-firefox-linux.png deleted file mode 100644 index c8948d58fd..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-1-webkit-linux.png deleted file mode 100644 index dadbaa932a..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-2-chromium-linux.png deleted file mode 100644 index 2e2edea611..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-2-firefox-linux.png deleted file mode 100644 index 047c2df0ad..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-2-webkit-linux.png deleted file mode 100644 index fa1a09bc1e..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-1-chromium-linux.png deleted file mode 100644 index 7b69175507..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-1-firefox-linux.png deleted file mode 100644 index cec0932b77..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-1-webkit-linux.png deleted file mode 100644 index a2950a38c7..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-2-chromium-linux.png deleted file mode 100644 index 05e092f372..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-2-firefox-linux.png deleted file mode 100644 index 0f85538ec3..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-2-webkit-linux.png deleted file mode 100644 index d77cd65143..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-3-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-3-chromium-linux.png deleted file mode 100644 index fb5fc098c1..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-3-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-3-firefox-linux.png deleted file mode 100644 index 5f67b5a30d..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-3-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-3-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-3-webkit-linux.png deleted file mode 100644 index ab0a887189..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-3-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-1-chromium-linux.png deleted file mode 100644 index d07ea4c459..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-1-firefox-linux.png deleted file mode 100644 index 9a8a2294ac..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-1-webkit-linux.png deleted file mode 100644 index b427d2ac5d..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-2-chromium-linux.png deleted file mode 100644 index 5b6c46cdeb..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-2-firefox-linux.png deleted file mode 100644 index 5fae8fd077..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-2-webkit-linux.png deleted file mode 100644 index 7ad15e74b1..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-1-chromium-linux.png deleted file mode 100644 index 940157cc07..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png deleted file mode 100644 index c72fc9092b..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-1-webkit-linux.png deleted file mode 100644 index 141fd06847..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-2-chromium-linux.png deleted file mode 100644 index 428360a1fc..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png deleted file mode 100644 index 159946aaae..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-2-webkit-linux.png deleted file mode 100644 index 2a138db16d..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-1-chromium-linux.png deleted file mode 100644 index fdab30564a..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-1-firefox-linux.png deleted file mode 100644 index fa92cdbeb0..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-1-webkit-linux.png deleted file mode 100644 index d08a073977..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-2-chromium-linux.png deleted file mode 100644 index 54ff8e65ca..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-2-firefox-linux.png deleted file mode 100644 index 3c87e67283..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-2-webkit-linux.png deleted file mode 100644 index 4441da7677..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-1-chromium-linux.png deleted file mode 100644 index 09c559ea9f..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-1-firefox-linux.png deleted file mode 100644 index 4fe07882a0..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-1-webkit-linux.png deleted file mode 100644 index 1d8ae32111..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-2-chromium-linux.png deleted file mode 100644 index 945cdd82d6..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-2-firefox-linux.png deleted file mode 100644 index 28a85a4724..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-2-webkit-linux.png deleted file mode 100644 index ce52943946..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-3-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-3-chromium-linux.png deleted file mode 100644 index 86d7ce7bab..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-3-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-3-firefox-linux.png deleted file mode 100644 index 962cc22cf5..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-3-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-3-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-3-webkit-linux.png deleted file mode 100644 index d729478abf..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-3-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-1-chromium-linux.png deleted file mode 100644 index 8ad0b0767e..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png deleted file mode 100644 index 4653244539..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-1-webkit-linux.png deleted file mode 100644 index 281cbdcf19..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-2-chromium-linux.png deleted file mode 100644 index f47c61a778..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png deleted file mode 100644 index 3743bfcf49..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-2-webkit-linux.png deleted file mode 100644 index 9e3fe85570..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-1-chromium-linux.png deleted file mode 100644 index b5cf9cf470..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png deleted file mode 100644 index 45e6ef3f5b..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-1-webkit-linux.png deleted file mode 100644 index 6e95c95326..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-2-chromium-linux.png deleted file mode 100644 index fd7430877d..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png deleted file mode 100644 index 31e5577963..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-2-webkit-linux.png deleted file mode 100644 index 22618eb11c..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-1-chromium-linux.png deleted file mode 100644 index 6fe7365b86..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-1-firefox-linux.png deleted file mode 100644 index a9d38937e4..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-1-webkit-linux.png deleted file mode 100644 index b81a8c3f8a..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-2-chromium-linux.png deleted file mode 100644 index 13425a0951..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-2-firefox-linux.png deleted file mode 100644 index 71b409808f..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-2-webkit-linux.png deleted file mode 100644 index 6771f273c5..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-1-chromium-linux.png deleted file mode 100644 index 60aa96247b..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png deleted file mode 100644 index 471f852fdf..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-1-webkit-linux.png deleted file mode 100644 index 925c8e4449..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-2-chromium-linux.png deleted file mode 100644 index 253a48105b..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-2-firefox-linux.png deleted file mode 100644 index 31a4652ddf..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-2-webkit-linux.png deleted file mode 100644 index 97d96c529c..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-3-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-3-chromium-linux.png deleted file mode 100644 index 511c33a5c0..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-3-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png deleted file mode 100644 index c49dbac52e..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-3-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-3-webkit-linux.png deleted file mode 100644 index 0e8f99fbb2..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-3-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-1-chromium-linux.png deleted file mode 100644 index 0d006b1140..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-1-firefox-linux.png deleted file mode 100644 index 74097b734b..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-1-webkit-linux.png deleted file mode 100644 index 44b228679d..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-2-chromium-linux.png deleted file mode 100644 index 607ebe1ecd..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-2-firefox-linux.png deleted file mode 100644 index 066ce8389d..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-2-webkit-linux.png deleted file mode 100644 index 1ed56d9b04..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-1-chromium-linux.png deleted file mode 100644 index 3006e56626..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png deleted file mode 100644 index 72f7c4a558..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-1-webkit-linux.png deleted file mode 100644 index 4c7b73ca30..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-2-chromium-linux.png deleted file mode 100644 index 2480843cb5..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-2-firefox-linux.png deleted file mode 100644 index 03b36b5560..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-2-webkit-linux.png deleted file mode 100644 index 8889cbbae5..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-1-chromium-linux.png deleted file mode 100644 index 3aa5dac8cd..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-1-firefox-linux.png deleted file mode 100644 index 7f7d4c1c42..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-1-webkit-linux.png deleted file mode 100644 index 6625d18bdf..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-2-chromium-linux.png deleted file mode 100644 index 4b0b583441..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-2-firefox-linux.png deleted file mode 100644 index 284fbc8385..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-2-webkit-linux.png deleted file mode 100644 index 4e60ff0f36..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-1-chromium-linux.png deleted file mode 100644 index b25f503652..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-1-firefox-linux.png deleted file mode 100644 index 8feb53e2ae..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-1-webkit-linux.png deleted file mode 100644 index 1b8222c0bf..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-2-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-2-chromium-linux.png deleted file mode 100644 index c56fd8a172..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-2-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-2-firefox-linux.png deleted file mode 100644 index f83ebf5ab6..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-2-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-2-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-2-webkit-linux.png deleted file mode 100644 index 8db24d6cb7..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-2-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-3-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-3-chromium-linux.png deleted file mode 100644 index 5d821c6b1f..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-3-chromium-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-3-firefox-linux.png deleted file mode 100644 index 93b1efbbcc..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-3-firefox-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-3-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-3-webkit-linux.png deleted file mode 100644 index b4e1f777db..0000000000 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-3-webkit-linux.png and /dev/null differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-keyboard-interactions-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-keyboard-interactions-1-chromium-linux.png index 07ed6df246..75029e1525 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-keyboard-interactions-1-chromium-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-keyboard-interactions-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-keyboard-interactions-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-keyboard-interactions-1-firefox-linux.png index ea178c2dd4..f10b73b2fe 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-keyboard-interactions-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-keyboard-interactions-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-keyboard-interactions-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-keyboard-interactions-1-webkit-linux.png index 1b16a27c9f..385e02b207 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-keyboard-interactions-1-webkit-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-keyboard-interactions-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-mouse-interactions-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-mouse-interactions-1-chromium-linux.png index 103d91250a..0aaf1aac9f 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-mouse-interactions-1-chromium-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-mouse-interactions-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-mouse-interactions-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-mouse-interactions-1-firefox-linux.png index c9dc338a40..46ca0bf3d7 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-mouse-interactions-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-mouse-interactions-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-mouse-interactions-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-mouse-interactions-1-webkit-linux.png index 0ac2e78bf9..9cfe0cd11d 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-mouse-interactions-1-webkit-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Links-without-text-mouse-interactions-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-default-link-styles-when-links-inside-the-text-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-default-link-styles-when-links-inside-the-text-1-chromium-linux.png index fca3e5e0c0..0447f42838 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-default-link-styles-when-links-inside-the-text-1-chromium-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-default-link-styles-when-links-inside-the-text-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-default-link-styles-when-links-inside-the-text-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-default-link-styles-when-links-inside-the-text-1-firefox-linux.png index b2111ebdb6..1ea1e75e63 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-default-link-styles-when-links-inside-the-text-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-default-link-styles-when-links-inside-the-text-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-default-link-styles-when-links-inside-the-text-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-default-link-styles-when-links-inside-the-text-1-webkit-linux.png index 22fd70c109..40dcfe6d73 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-default-link-styles-when-links-inside-the-text-1-webkit-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-default-link-styles-when-links-inside-the-text-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-417a4-600-state-disabled-theme-accent-href-external-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-417a4-600-state-disabled-theme-accent-href-external-1-chromium-linux.png new file mode 100644 index 0000000000..a12d0f75f2 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-417a4-600-state-disabled-theme-accent-href-external-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-417a4-600-state-disabled-theme-accent-href-external-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-417a4-600-state-disabled-theme-accent-href-external-1-firefox-linux.png new file mode 100644 index 0000000000..6f73e6b6bd Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-417a4-600-state-disabled-theme-accent-href-external-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-417a4-600-state-disabled-theme-accent-href-external-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-417a4-600-state-disabled-theme-accent-href-external-1-webkit-linux.png new file mode 100644 index 0000000000..61dc1b0d5b Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-417a4-600-state-disabled-theme-accent-href-external-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-540b8-eme-default-href-internal-color-text-critical-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-540b8-eme-default-href-internal-color-text-critical-1-chromium-linux.png new file mode 100644 index 0000000000..d0a18ecab9 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-540b8-eme-default-href-internal-color-text-critical-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-540b8-eme-default-href-internal-color-text-critical-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-540b8-eme-default-href-internal-color-text-critical-1-firefox-linux.png new file mode 100644 index 0000000000..eb72fef08b Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-540b8-eme-default-href-internal-color-text-critical-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-540b8-eme-default-href-internal-color-text-critical-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-540b8-eme-default-href-internal-color-text-critical-1-webkit-linux.png new file mode 100644 index 0000000000..5b86b4ce58 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-540b8-eme-default-href-internal-color-text-critical-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-63d1a--300-state-default-theme-invert-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-63d1a--300-state-default-theme-invert-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..3025835f6c Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-63d1a--300-state-default-theme-invert-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-63d1a--300-state-default-theme-invert-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-63d1a--300-state-default-theme-invert-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..fcf7de5aa3 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-63d1a--300-state-default-theme-invert-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-63d1a--300-state-default-theme-invert-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-63d1a--300-state-default-theme-invert-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..4c3477ded5 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-63d1a--300-state-default-theme-invert-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-7c5e7-e-600-state-active-theme-invert-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-7c5e7-e-600-state-active-theme-invert-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..80c17f574b Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-7c5e7-e-600-state-active-theme-invert-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-7c5e7-e-600-state-active-theme-invert-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-7c5e7-e-600-state-active-theme-invert-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..64691b91b7 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-7c5e7-e-600-state-active-theme-invert-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-7c5e7-e-600-state-active-theme-invert-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-7c5e7-e-600-state-active-theme-invert-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..0465fe5f1b Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-7c5e7-e-600-state-active-theme-invert-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-a55a9-300-state-default-theme-default-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-a55a9-300-state-default-theme-default-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..a05187b6d8 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-a55a9-300-state-default-theme-default-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-a55a9-300-state-default-theme-default-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-a55a9-300-state-default-theme-default-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..0558579814 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-a55a9-300-state-default-theme-default-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-a55a9-300-state-default-theme-default-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-a55a9-300-state-default-theme-default-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..4fcaeae088 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-a55a9-300-state-default-theme-default-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-db1e0-ze-300-state-active-theme-light-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-db1e0-ze-300-state-active-theme-light-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..fc16c21390 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-db1e0-ze-300-state-active-theme-light-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-db1e0-ze-300-state-active-theme-light-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-db1e0-ze-300-state-active-theme-light-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..12de4e67dd Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-db1e0-ze-300-state-active-theme-light-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-db1e0-ze-300-state-active-theme-light-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-db1e0-ze-300-state-active-theme-light-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..4778e40a54 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-both-addon-db1e0-ze-300-state-active-theme-light-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-051f0-300-state-default-theme-default-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-051f0-300-state-default-theme-default-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..678b933eff Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-051f0-300-state-default-theme-default-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-051f0-300-state-default-theme-default-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-051f0-300-state-default-theme-default-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..71203ec03a Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-051f0-300-state-default-theme-default-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-051f0-300-state-default-theme-default-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-051f0-300-state-default-theme-default-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..2302475b1d Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-051f0-300-state-default-theme-default-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-113ce--300-state-active-theme-default-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-113ce--300-state-active-theme-default-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..fd4799280e Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-113ce--300-state-active-theme-default-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-113ce--300-state-active-theme-default-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-113ce--300-state-active-theme-default-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..9fd761d476 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-113ce--300-state-active-theme-default-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-113ce--300-state-active-theme-default-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-113ce--300-state-active-theme-default-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..530950b0e4 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-113ce--300-state-active-theme-default-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13889-300-state-default-theme-default-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13889-300-state-default-theme-default-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..e12700c4d9 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13889-300-state-default-theme-default-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13889-300-state-default-theme-default-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13889-300-state-default-theme-default-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..29a905c931 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13889-300-state-default-theme-default-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13889-300-state-default-theme-default-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13889-300-state-default-theme-default-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..aac41d41df Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13889-300-state-default-theme-default-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13adb-300-state-default-theme-default-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13adb-300-state-default-theme-default-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..a62b5ed80e Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13adb-300-state-default-theme-default-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13adb-300-state-default-theme-default-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13adb-300-state-default-theme-default-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..5d635ec71c Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13adb-300-state-default-theme-default-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13adb-300-state-default-theme-default-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13adb-300-state-default-theme-default-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..1a0f3407ec Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-13adb-300-state-default-theme-default-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-35332--300-state-default-theme-accent-href-external-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-35332--300-state-default-theme-accent-href-external-1-chromium-linux.png new file mode 100644 index 0000000000..a413cb224c Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-35332--300-state-default-theme-accent-href-external-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-35332--300-state-default-theme-accent-href-external-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-35332--300-state-default-theme-accent-href-external-1-firefox-linux.png new file mode 100644 index 0000000000..2a8dcc0412 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-35332--300-state-default-theme-accent-href-external-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-35332--300-state-default-theme-accent-href-external-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-35332--300-state-default-theme-accent-href-external-1-webkit-linux.png new file mode 100644 index 0000000000..372fb81f6c Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-35332--300-state-default-theme-accent-href-external-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-5132a-300-state-default-theme-default-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-5132a-300-state-default-theme-default-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..b37e296477 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-5132a-300-state-default-theme-default-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-5132a-300-state-default-theme-default-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-5132a-300-state-default-theme-default-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..f2fbf8bcf9 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-5132a-300-state-default-theme-default-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-5132a-300-state-default-theme-default-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-5132a-300-state-default-theme-default-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..af92156de7 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-5132a-300-state-default-theme-default-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c579-e-300-state-default-theme-light-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c579-e-300-state-default-theme-light-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..482a9911c4 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c579-e-300-state-default-theme-light-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c579-e-300-state-default-theme-light-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c579-e-300-state-default-theme-light-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..e3157c6cf8 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c579-e-300-state-default-theme-light-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c579-e-300-state-default-theme-light-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c579-e-300-state-default-theme-light-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..34f1bce300 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c579-e-300-state-default-theme-light-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c783-300-state-default-theme-default-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c783-300-state-default-theme-default-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..97187e3022 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c783-300-state-default-theme-default-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c783-300-state-default-theme-default-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c783-300-state-default-theme-default-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..8c59dc7091 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c783-300-state-default-theme-default-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c783-300-state-default-theme-default-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c783-300-state-default-theme-default-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..a2d8b3b423 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-7c783-300-state-default-theme-default-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-8f8a6-300-state-default-theme-default-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-8f8a6-300-state-default-theme-default-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..dfcc3feabb Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-8f8a6-300-state-default-theme-default-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-8f8a6-300-state-default-theme-default-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-8f8a6-300-state-default-theme-default-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..b12ee55d81 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-8f8a6-300-state-default-theme-default-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-8f8a6-300-state-default-theme-default-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-8f8a6-300-state-default-theme-default-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..d2bd8a5228 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-8f8a6-300-state-default-theme-default-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-91626-300-state-default-theme-default-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-91626-300-state-default-theme-default-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..d3625a99f2 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-91626-300-state-default-theme-default-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-91626-300-state-default-theme-default-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-91626-300-state-default-theme-default-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..c8f9034e71 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-91626-300-state-default-theme-default-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-91626-300-state-default-theme-default-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-91626-300-state-default-theme-default-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..fad6535cad Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-91626-300-state-default-theme-default-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-98710-300-state-default-theme-default-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-98710-300-state-default-theme-default-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..adcbc7e7ef Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-98710-300-state-default-theme-default-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-98710-300-state-default-theme-default-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-98710-300-state-default-theme-default-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..9732d76c83 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-98710-300-state-default-theme-default-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-98710-300-state-default-theme-default-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-98710-300-state-default-theme-default-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..ef4daefff1 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-98710-300-state-default-theme-default-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-b3c74-300-state-default-theme-default-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-b3c74-300-state-default-theme-default-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..944b354b05 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-b3c74-300-state-default-theme-default-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-b3c74-300-state-default-theme-default-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-b3c74-300-state-default-theme-default-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..8592a35b5d Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-b3c74-300-state-default-theme-default-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-b3c74-300-state-default-theme-default-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-b3c74-300-state-default-theme-default-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..e0ba233780 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-b3c74-300-state-default-theme-default-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-bd1b9-eme-default-href-external-color-text-critical-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-bd1b9-eme-default-href-external-color-text-critical-1-chromium-linux.png new file mode 100644 index 0000000000..acead4f0d5 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-bd1b9-eme-default-href-external-color-text-critical-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-bd1b9-eme-default-href-external-color-text-critical-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-bd1b9-eme-default-href-external-color-text-critical-1-firefox-linux.png new file mode 100644 index 0000000000..3bb40e7c22 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-bd1b9-eme-default-href-external-color-text-critical-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-bd1b9-eme-default-href-external-color-text-critical-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-bd1b9-eme-default-href-external-color-text-critical-1-webkit-linux.png new file mode 100644 index 0000000000..4ab2686849 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-bd1b9-eme-default-href-external-color-text-critical-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-be41b-eme-default-href-external-color-text-critical-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-be41b-eme-default-href-external-color-text-critical-1-chromium-linux.png new file mode 100644 index 0000000000..44e0aeaa3f Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-be41b-eme-default-href-external-color-text-critical-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-be41b-eme-default-href-external-color-text-critical-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-be41b-eme-default-href-external-color-text-critical-1-firefox-linux.png new file mode 100644 index 0000000000..18e563e530 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-be41b-eme-default-href-external-color-text-critical-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-be41b-eme-default-href-external-color-text-critical-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-be41b-eme-default-href-external-color-text-critical-1-webkit-linux.png new file mode 100644 index 0000000000..4a8b506b30 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-be41b-eme-default-href-external-color-text-critical-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-da87e-eme-default-href-internal-color-text-critical-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-da87e-eme-default-href-internal-color-text-critical-1-chromium-linux.png new file mode 100644 index 0000000000..53db2bc9e9 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-da87e-eme-default-href-internal-color-text-critical-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-da87e-eme-default-href-internal-color-text-critical-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-da87e-eme-default-href-internal-color-text-critical-1-firefox-linux.png new file mode 100644 index 0000000000..e94b997c2b Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-da87e-eme-default-href-internal-color-text-critical-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-da87e-eme-default-href-internal-color-text-critical-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-da87e-eme-default-href-internal-color-text-critical-1-webkit-linux.png new file mode 100644 index 0000000000..7b8d621a03 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-left-addon-da87e-eme-default-href-internal-color-text-critical-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-4cc5d-e-300-state-active-theme-accent-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-4cc5d-e-300-state-active-theme-accent-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..6b995ee8fd Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-4cc5d-e-300-state-active-theme-accent-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-4cc5d-e-300-state-active-theme-accent-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-4cc5d-e-300-state-active-theme-accent-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..bbae2b729f Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-4cc5d-e-300-state-active-theme-accent-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-4cc5d-e-300-state-active-theme-accent-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-4cc5d-e-300-state-active-theme-accent-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..0672506afe Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-4cc5d-e-300-state-active-theme-accent-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-6ee3b-300-state-default-theme-default-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-6ee3b-300-state-default-theme-default-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..d691624a90 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-6ee3b-300-state-default-theme-default-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-6ee3b-300-state-default-theme-default-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-6ee3b-300-state-default-theme-default-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..c6998527f7 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-6ee3b-300-state-default-theme-default-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-6ee3b-300-state-default-theme-default-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-6ee3b-300-state-default-theme-default-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..12d2f2de64 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-6ee3b-300-state-default-theme-default-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-83b06-eme-default-href-external-color-text-critical-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-83b06-eme-default-href-external-color-text-critical-1-chromium-linux.png new file mode 100644 index 0000000000..8a10448eaf Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-83b06-eme-default-href-external-color-text-critical-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-83b06-eme-default-href-external-color-text-critical-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-83b06-eme-default-href-external-color-text-critical-1-firefox-linux.png new file mode 100644 index 0000000000..216a9f6d83 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-83b06-eme-default-href-external-color-text-critical-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-83b06-eme-default-href-external-color-text-critical-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-83b06-eme-default-href-external-color-text-critical-1-webkit-linux.png new file mode 100644 index 0000000000..51397b5b8d Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-83b06-eme-default-href-external-color-text-critical-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-b19db-300-state-default-theme-default-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-b19db-300-state-default-theme-default-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..64ea236884 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-b19db-300-state-default-theme-default-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-b19db-300-state-default-theme-default-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-b19db-300-state-default-theme-default-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..ef47660605 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-b19db-300-state-default-theme-default-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-b19db-300-state-default-theme-default-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-b19db-300-state-default-theme-default-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..555730c60b Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-b19db-300-state-default-theme-default-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-c3c9a-300-state-default-theme-default-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-c3c9a-300-state-default-theme-default-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..a8deebdf45 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-c3c9a-300-state-default-theme-default-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-c3c9a-300-state-default-theme-default-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-c3c9a-300-state-default-theme-default-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..1b073984d5 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-c3c9a-300-state-default-theme-default-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-c3c9a-300-state-default-theme-default-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-c3c9a-300-state-default-theme-default-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..f2163f8e62 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-c3c9a-300-state-default-theme-default-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-e5600-ze-600-state-active-theme-light-href-external-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-e5600-ze-600-state-active-theme-light-href-external-1-chromium-linux.png new file mode 100644 index 0000000000..0d64e71055 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-e5600-ze-600-state-active-theme-light-href-external-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-e5600-ze-600-state-active-theme-light-href-external-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-e5600-ze-600-state-active-theme-light-href-external-1-firefox-linux.png new file mode 100644 index 0000000000..4661a134c5 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-e5600-ze-600-state-active-theme-light-href-external-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-e5600-ze-600-state-active-theme-light-href-external-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-e5600-ze-600-state-active-theme-light-href-external-1-webkit-linux.png new file mode 100644 index 0000000000..f2ffb02692 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-none-ellip-e5600-ze-600-state-active-theme-light-href-external-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1a5e1-e-300-state-default-theme-light-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1a5e1-e-300-state-default-theme-light-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..dd8ebe3407 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1a5e1-e-300-state-default-theme-light-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1a5e1-e-300-state-default-theme-light-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1a5e1-e-300-state-default-theme-light-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..d09b275765 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1a5e1-e-300-state-default-theme-light-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1a5e1-e-300-state-default-theme-light-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1a5e1-e-300-state-default-theme-light-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..044912f0c5 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1a5e1-e-300-state-default-theme-light-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1d2f7-300-state-disabled-theme-invert-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1d2f7-300-state-disabled-theme-invert-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..147224dc7e Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1d2f7-300-state-disabled-theme-invert-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1d2f7-300-state-disabled-theme-invert-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1d2f7-300-state-disabled-theme-invert-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..d292509022 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1d2f7-300-state-disabled-theme-invert-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1d2f7-300-state-disabled-theme-invert-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1d2f7-300-state-disabled-theme-invert-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..9428fe71f4 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-1d2f7-300-state-disabled-theme-invert-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-41fd8--300-state-disabled-theme-light-href-internal-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-41fd8--300-state-disabled-theme-light-href-internal-1-chromium-linux.png new file mode 100644 index 0000000000..841ae26e57 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-41fd8--300-state-disabled-theme-light-href-internal-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-41fd8--300-state-disabled-theme-light-href-internal-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-41fd8--300-state-disabled-theme-light-href-internal-1-firefox-linux.png new file mode 100644 index 0000000000..54a7247b84 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-41fd8--300-state-disabled-theme-light-href-internal-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-41fd8--300-state-disabled-theme-light-href-internal-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-41fd8--300-state-disabled-theme-light-href-internal-1-webkit-linux.png new file mode 100644 index 0000000000..e1263f97a7 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-41fd8--300-state-disabled-theme-light-href-internal-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-65f20-300-state-disabled-theme-invert-href-external-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-65f20-300-state-disabled-theme-invert-href-external-1-chromium-linux.png new file mode 100644 index 0000000000..4333852f5a Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-65f20-300-state-disabled-theme-invert-href-external-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-65f20-300-state-disabled-theme-invert-href-external-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-65f20-300-state-disabled-theme-invert-href-external-1-firefox-linux.png new file mode 100644 index 0000000000..12ab8c655b Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-65f20-300-state-disabled-theme-invert-href-external-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-65f20-300-state-disabled-theme-invert-href-external-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-65f20-300-state-disabled-theme-invert-href-external-1-webkit-linux.png new file mode 100644 index 0000000000..63251344da Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-65f20-300-state-disabled-theme-invert-href-external-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-97611-e-300-state-active-theme-accent-href-external-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-97611-e-300-state-active-theme-accent-href-external-1-chromium-linux.png new file mode 100644 index 0000000000..56bac17831 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-97611-e-300-state-active-theme-accent-href-external-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-97611-e-300-state-active-theme-accent-href-external-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-97611-e-300-state-active-theme-accent-href-external-1-firefox-linux.png new file mode 100644 index 0000000000..5934fdedf9 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-97611-e-300-state-active-theme-accent-href-external-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-97611-e-300-state-active-theme-accent-href-external-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-97611-e-300-state-active-theme-accent-href-external-1-webkit-linux.png new file mode 100644 index 0000000000..0914fdcf7e Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-97611-e-300-state-active-theme-accent-href-external-1-webkit-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-b76e3-eme-default-href-internal-color-text-critical-1-chromium-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-b76e3-eme-default-href-internal-color-text-critical-1-chromium-linux.png new file mode 100644 index 0000000000..b2d3f55407 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-b76e3-eme-default-href-internal-color-text-critical-1-chromium-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-b76e3-eme-default-href-internal-color-text-critical-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-b76e3-eme-default-href-internal-color-text-critical-1-firefox-linux.png new file mode 100644 index 0000000000..395400bd58 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-b76e3-eme-default-href-internal-color-text-critical-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-b76e3-eme-default-href-internal-color-text-critical-1-webkit-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-b76e3-eme-default-href-internal-color-text-critical-1-webkit-linux.png new file mode 100644 index 0000000000..effb3a6cd5 Binary files /dev/null and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-single-Link-addons-right-addo-b76e3-eme-default-href-internal-color-text-critical-1-webkit-linux.png differ diff --git a/semcore/link/src/Link.tsx b/semcore/link/src/Link.tsx index 74144810b0..d0b0e67027 100644 --- a/semcore/link/src/Link.tsx +++ b/semcore/link/src/Link.tsx @@ -1,29 +1,37 @@ -import { Box, Hint } from '@semcore/base-components'; -import type { Intergalactic } from '@semcore/core'; +import { Box, Hint, ScreenReaderOnly } from '@semcore/base-components'; +import type { IRootComponentProps } from '@semcore/core'; import { createComponent, Component, Root, sstyled, CORE_INSTANCE, INHERITED_NAME } from '@semcore/core'; import addonTextChildren from '@semcore/core/lib/utils/addonTextChildren'; +import canUseDOM from '@semcore/core/lib/utils/canUseDOM'; +import i18nEnhance from '@semcore/core/lib/utils/enhances/i18nEnhance'; import resolveColorEnhance from '@semcore/core/lib/utils/enhances/resolveColorEnhance'; import { findAllComponents } from '@semcore/core/lib/utils/findComponent'; import hasLabels from '@semcore/core/lib/utils/hasLabels'; import logger from '@semcore/core/lib/utils/logger'; +import uniqueIDEnhancement from '@semcore/core/lib/utils/uniqueID'; +import LinkExternalAltM from '@semcore/icon/LinkExternalAlt/m'; import type { NSText } from '@semcore/typography'; import { Text } from '@semcore/typography'; import React from 'react'; import type { NSLink } from './Link.types'; import style from './style/link.shadow.css'; +import { localizedMessages } from './translations/__intergalactic-dynamic-locales'; -class RootLink extends Component< - Intergalactic.InternalTypings.InferComponentProps, - typeof RootLink.enhance, - never, - {}, - NSLink.State -> { +class RootLink extends Component { static displayName = 'Link'; static style = style; - static enhance = [resolveColorEnhance()] as const; + static enhance = [ + resolveColorEnhance(), + i18nEnhance(localizedMessages), + uniqueIDEnhancement(), + ] as const; + + static defaultProps = { + theme: 'default', + } as const; + containerRef = React.createRef(); state: NSLink.State = { @@ -40,19 +48,17 @@ class RootLink extends Component< } if (this.asProps['aria-labelledby']) { - const ariaLabelledBy = this.asProps['aria-labelledby']; - setTimeout(() => { this.setState({ ariaLabelledByContent: - document.getElementById(ariaLabelledBy)?.textContent ?? '', + document.getElementById(this.asProps['aria-labelledby'])?.textContent ?? '', }); }, 0); } } getTextProps(): NSText.Props { - const { addonLeft, addonRight, size, Children } = this.asProps; + const { addonLeft, addonRight, size = 300, Children } = this.asProps; const Component = this[CORE_INSTANCE]; const addons = findAllComponents(Children, [Component.Addon.displayName]); @@ -72,12 +78,84 @@ class RootLink extends Component< addonsCount++; } + const width = this.isExternalLink() + ? `calc(100% - ${addonWidth * addonsCount + 2 + this.externalIconSizeMap[size]}px)` + : `calc(100% - ${addonWidth * addonsCount}px)`; + return { 'hint:triggerRef': this.containerRef, - 'w': `calc(100% - ${addonWidth * addonsCount}px)`, + 'w': width, + }; + } + + getExternalIconProps() { + const { size = 300 } = this.asProps; + + return { + width: this.externalIconSizeMap[size], + height: this.externalIconSizeMap[size], + ml: '2px', }; } + private get externalIconSizeMap(): Record, number> { + // this is 0.6em for sizes + return { + 100: 7, + 200: 8, + 300: 10, + 350: 11, + 400: 12, + 500: 14, + 600: 19, + 700: 22, + 800: 29, + }; + } + + private isExternalLink() { + const { children, href, isExternal } = this.asProps; + + if (isExternal !== undefined) return isExternal; + if (href === undefined) return false; + + const link = (typeof children === 'string' && this.isUrl(children)) ? children : href; + + if (!this.isUrl(link)) { + return false; + } + + if (canUseDOM()) { + try { + const linkUrl = new URL(link, window.location.origin); + + return linkUrl.host !== window.location.host; + } catch (e: unknown) { + if (e instanceof Error && e.message.includes('Invalid base URL')) { + return true; + } + } + } + + return false; + } + + private isUrl(value: string): boolean { + return value.startsWith('//') || value.toLowerCase().startsWith('http'); + } + + private get themeFallback(): NSLink.Props['theme'] { + const { use, theme } = this.asProps; + + if (use === 'primary') { + return 'default'; + } else if (use === 'secondary') { + return 'light'; + } + + return theme; + } + render() { const { styles, @@ -92,6 +170,8 @@ class RootLink extends Component< title, 'aria-label': ariaLabel, hintPlacement, + uid, + getI18nText, } = this.asProps; const Link = this[CORE_INSTANCE]; @@ -100,11 +180,15 @@ class RootLink extends Component< const hintContent = title ?? ariaLabel ?? this.state.ariaLabelledByContent ?? ''; const showHint = children === undefined || title; + const isExternal = this.isExternalLink(); + const excludeProps = ['title', 'aria-disabled']; if (!this.asProps['use:disabled']) { excludeProps.push('disabled'); } + const describedByExternalId = `igc-${uid}-external-link-describedby`; + return sstyled(styles)( <> + )} {AddonRight ? ( @@ -139,6 +230,11 @@ class RootLink extends Component< : null} + {isExternal && ( + + {getI18nText('Link.external:aria-describedby')} + + )} {showHint && ( , -) { +function LinkText(props: IRootComponentProps) { const SText = Root; const { styles } = props; return sstyled(styles)(); } -function Addon( - props: Intergalactic.InternalTypings.InferChildComponentProps, -) { +function Addon(props: IRootComponentProps) { const SAddon = Root; const { styles } = props; return sstyled(styles)(); } +function ExternalIcon(props: IRootComponentProps) { + const SExternalIcon = Root; + const { styles } = props; + return sstyled(styles)(); +} + /** * Link * @@ -177,6 +275,7 @@ function Addon( const Link = createComponent(RootLink, { Text: LinkText, Addon, + ExternalIcon, }); export default Link; diff --git a/semcore/link/src/Link.types.ts b/semcore/link/src/Link.types.ts index 97ee450c53..162b8fd13b 100644 --- a/semcore/link/src/Link.types.ts +++ b/semcore/link/src/Link.types.ts @@ -5,13 +5,28 @@ import type { NSText } from '@semcore/typography'; import type React from 'react'; declare namespace NSLink { - type Props = NSBox.Props & NSText.BaseProps & { - /** - * CSS property of the display link (inline|inline-block) - * @default false - * @deprecated. You should use default inline-flex for all cases. - */ - inline?: boolean; + type Theme = 'default' | 'light' | 'accent' | 'invert'; + type Props = NSBox.Props & Intergalactic.InternalTypings.EfficientOmit & { + + /** + * @deprecated. Use `theme` instead. + */ + use?: 'primary' | 'secondary'; + + /** + * Type of Link. + * + * Primary. The vast majority of links. Tables with URLs and keywords, metrics in the summary. + * + * Secondary. Links such as 'Learn more', 'Show more', secondary information, opening hints. + * + * Accent. Use ONLY for action links within the texts. Limits, prompts indicating what to do, and options in the controls. + * + * Invert. Use on dark backgrounds. + * + * @default 'primary'. + */ + theme?: Theme; /** * Sets the link to the disabled state */ @@ -36,13 +51,24 @@ declare namespace NSLink { * @default top */ hintPlacement?: NSHint.Props['placement']; + /** Flag to mark a link as external. Use it in SSR. */ + isExternal?: boolean; }; type State = { ariaLabelledByContent: string; }; + type DefaultProps = { + theme: 'default'; + }; + namespace Text { - type Props = NSText.Props; + type Props = Intergalactic.InternalTypings.EfficientOmit & { + /** + * @deprecated. Use `theme` on the root level. + */ + use?: 'primary' | 'secondary'; + }; type Component = Intergalactic.Component<'span', Props>; } @@ -56,6 +82,7 @@ declare namespace NSLink { type Component = Intergalactic.Component<'a', Props> & { Text: Text.Component; Addon: Addon.Component; + ExternalIcon: typeof Icon; }; } diff --git a/semcore/link/src/style/link.shadow.css b/semcore/link/src/style/link.shadow.css index f2a2d3a257..3cd8c01cc9 100644 --- a/semcore/link/src/style/link.shadow.css +++ b/semcore/link/src/style/link.shadow.css @@ -1,39 +1,97 @@ SLink { display: inline; align-items: center; - color: var(--intergalactic-text-link, oklch(0.53 0.21 263)); position: relative; cursor: pointer; text-decoration: none; -webkit-tap-highlight-color: transparent; background: none; transition: color 0.15s ease-in-out; + border-radius: 2px; &::-moz-focus-inner { border: none; padding: 0; } - &[active], - &:hover, - &:active { - color: var(--intergalactic-text-link-hover-active, oklch(0.51 0.202 263)); + &[enableVisited]:visited, + &[enableVisited]:visited:hover { + color: var(--intergalactic-text-link-visited, oklch(0.23 0.113 296)); + } + + &[theme='default'] { + color: var(--intergalactic-text-link-primary, oklch(0.1 0.03 137 / 0.899)); & SText { - text-decoration-color: currentColor; + text-decoration-color: var(--intergalactic-text-link-primary-underline, oklch(0.86 0.002 174.1)); + } + + &[active], + &:hover, + &:active { + color: var(--intergalactic-text-link-primary-hover-active, oklch(0.1 0.03 137 / 0.899)); + + & SText { + text-decoration-color: currentColor; + } } } + &[theme='light'] { + color: var(--intergalactic-text-link-secondary, oklch(0.088 0.026 147.7 / 0.583)); - &[enableVisited]:visited, - &[enableVisited]:visited:hover { - color: var(--intergalactic-text-link-visited, oklch(0.53 0.26 296)); + & SText { + text-decoration-color: transparent; + } + + &[active], + &:hover, + &:active { + color: var(--intergalactic-text-link-secondary-hover-active, oklch(0.088 0.026 147.7 / 0.583)); + + & SText { + text-decoration-color: currentColor; + } + } + } + &[theme='accent'] { + color: var(--intergalactic-text-link-accent, oklch(0.6 0.166 277.7)); + + & SText { + text-decoration-color: transparent; + } + + &[active], + &:hover, + &:active { + color: var(--intergalactic-text-link-accent-hover-active, oklch(0.6 0.166 277.7)); + + & SText { + text-decoration-color: currentColor; + } + } + } + &[theme='invert'] { + color: var(--intergalactic-text-link-primary-invert, oklch(0.999 0.001 180 / 0.949)); + + & SText { + text-decoration-color: var(--intergalactic-text-link-primary-underline, oklch(0.86 0.002 174.1)); + } + + &[active], + &:hover, + &:active { + color: var(--intergalactic-text-link-primary-invert-hover-active, oklch(0.999 0.001 180 / 0.949)); + + & SText { + text-decoration-color: currentColor; + } + } } } SLink[visually-disabled] { opacity: var(--intergalactic-disabled-opacity, 0.4); cursor: default; - /* Disable link interactions */ pointer-events: none; } @@ -41,10 +99,6 @@ SLink[noWrap] { white-space: nowrap; } -SLink[inline] { - display: inline; -} - SInner { align-items: baseline; height: 100%; @@ -60,11 +114,11 @@ SAddon { SLink SAddon { &:not(:only-child):first-child { - margin-right: var(--intergalactic-spacing-1x, 4px); + margin-right: var(--intergalactic-spacing-content-gap-small, 4px); } &:not(:only-child):last-child { - margin-left: var(--intergalactic-spacing-1x, 4px); + margin-left: var(--intergalactic-spacing-content-gap-small, 4px); } } @@ -72,7 +126,6 @@ SText { text-decoration: underline; text-decoration-style: solid; text-decoration-thickness: 1px; - text-decoration-color: transparent; text-underline-offset: 17%; transition: text-decoration-color 0.15s ease-in-out; diff --git a/semcore/link/src/translations/__intergalactic-dynamic-locales.ts b/semcore/link/src/translations/__intergalactic-dynamic-locales.ts new file mode 100644 index 0000000000..65cdb67688 --- /dev/null +++ b/semcore/link/src/translations/__intergalactic-dynamic-locales.ts @@ -0,0 +1,33 @@ +import de from './de.json'; +import en from './en.json'; +import es from './es.json'; +import fr from './fr.json'; +import it from './it.json'; +import ja from './ja.json'; +import ko from './ko.json'; +import nl from './nl.json'; +import pl from './pl.json'; +import pt from './pt.json'; +import sv from './sv.json'; +import tr from './tr.json'; +import vi from './vi.json'; +import zh from './zh.json'; + +export const localizedMessages = { + de, + en, + es, + fr, + it, + ja, + ko, + nl, + pt, + tr, + vi, + zh, + pl, + sv, +}; + +export type LocalizedMessages = typeof localizedMessages; diff --git a/semcore/link/src/translations/de.json b/semcore/link/src/translations/de.json new file mode 100644 index 0000000000..13b1f766e6 --- /dev/null +++ b/semcore/link/src/translations/de.json @@ -0,0 +1,3 @@ +{ + "Link.external:aria-describedby": "Opens in a new tab" +} diff --git a/semcore/link/src/translations/en.json b/semcore/link/src/translations/en.json new file mode 100644 index 0000000000..13b1f766e6 --- /dev/null +++ b/semcore/link/src/translations/en.json @@ -0,0 +1,3 @@ +{ + "Link.external:aria-describedby": "Opens in a new tab" +} diff --git a/semcore/link/src/translations/es.json b/semcore/link/src/translations/es.json new file mode 100644 index 0000000000..13b1f766e6 --- /dev/null +++ b/semcore/link/src/translations/es.json @@ -0,0 +1,3 @@ +{ + "Link.external:aria-describedby": "Opens in a new tab" +} diff --git a/semcore/link/src/translations/fr.json b/semcore/link/src/translations/fr.json new file mode 100644 index 0000000000..13b1f766e6 --- /dev/null +++ b/semcore/link/src/translations/fr.json @@ -0,0 +1,3 @@ +{ + "Link.external:aria-describedby": "Opens in a new tab" +} diff --git a/semcore/link/src/translations/it.json b/semcore/link/src/translations/it.json new file mode 100644 index 0000000000..13b1f766e6 --- /dev/null +++ b/semcore/link/src/translations/it.json @@ -0,0 +1,3 @@ +{ + "Link.external:aria-describedby": "Opens in a new tab" +} diff --git a/semcore/link/src/translations/ja.json b/semcore/link/src/translations/ja.json new file mode 100644 index 0000000000..13b1f766e6 --- /dev/null +++ b/semcore/link/src/translations/ja.json @@ -0,0 +1,3 @@ +{ + "Link.external:aria-describedby": "Opens in a new tab" +} diff --git a/semcore/link/src/translations/ko.json b/semcore/link/src/translations/ko.json new file mode 100644 index 0000000000..13b1f766e6 --- /dev/null +++ b/semcore/link/src/translations/ko.json @@ -0,0 +1,3 @@ +{ + "Link.external:aria-describedby": "Opens in a new tab" +} diff --git a/semcore/link/src/translations/nl.json b/semcore/link/src/translations/nl.json new file mode 100644 index 0000000000..13b1f766e6 --- /dev/null +++ b/semcore/link/src/translations/nl.json @@ -0,0 +1,3 @@ +{ + "Link.external:aria-describedby": "Opens in a new tab" +} diff --git a/semcore/link/src/translations/pl.json b/semcore/link/src/translations/pl.json new file mode 100644 index 0000000000..13b1f766e6 --- /dev/null +++ b/semcore/link/src/translations/pl.json @@ -0,0 +1,3 @@ +{ + "Link.external:aria-describedby": "Opens in a new tab" +} diff --git a/semcore/link/src/translations/pt.json b/semcore/link/src/translations/pt.json new file mode 100644 index 0000000000..13b1f766e6 --- /dev/null +++ b/semcore/link/src/translations/pt.json @@ -0,0 +1,3 @@ +{ + "Link.external:aria-describedby": "Opens in a new tab" +} diff --git a/semcore/link/src/translations/sv.json b/semcore/link/src/translations/sv.json new file mode 100644 index 0000000000..13b1f766e6 --- /dev/null +++ b/semcore/link/src/translations/sv.json @@ -0,0 +1,3 @@ +{ + "Link.external:aria-describedby": "Opens in a new tab" +} diff --git a/semcore/link/src/translations/tr.json b/semcore/link/src/translations/tr.json new file mode 100644 index 0000000000..13b1f766e6 --- /dev/null +++ b/semcore/link/src/translations/tr.json @@ -0,0 +1,3 @@ +{ + "Link.external:aria-describedby": "Opens in a new tab" +} diff --git a/semcore/link/src/translations/vi.json b/semcore/link/src/translations/vi.json new file mode 100644 index 0000000000..13b1f766e6 --- /dev/null +++ b/semcore/link/src/translations/vi.json @@ -0,0 +1,3 @@ +{ + "Link.external:aria-describedby": "Opens in a new tab" +} diff --git a/semcore/link/src/translations/zh.json b/semcore/link/src/translations/zh.json new file mode 100644 index 0000000000..13b1f766e6 --- /dev/null +++ b/semcore/link/src/translations/zh.json @@ -0,0 +1,3 @@ +{ + "Link.external:aria-describedby": "Opens in a new tab" +} diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Donuts-Verify-loading-true-with-316f3-r-chart-palette-order-4-baseBgColor-undefined-1-chromium-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Donuts-Verify-loading-true-with-316f3-r-chart-palette-order-4-baseBgColor-undefined-1-chromium-linux.png index 10ad7afcd2..6988c87520 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Donuts-Verify-loading-true-with-316f3-r-chart-palette-order-4-baseBgColor-undefined-1-chromium-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Donuts-Verify-loading-true-with-316f3-r-chart-palette-order-4-baseBgColor-undefined-1-chromium-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Donuts-Verify-loading-true-with-316f3-r-chart-palette-order-4-baseBgColor-undefined-1-firefox-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Donuts-Verify-loading-true-with-316f3-r-chart-palette-order-4-baseBgColor-undefined-1-firefox-linux.png index c1f602e552..fb076bdd9b 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Donuts-Verify-loading-true-with-316f3-r-chart-palette-order-4-baseBgColor-undefined-1-firefox-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Donuts-Verify-loading-true-with-316f3-r-chart-palette-order-4-baseBgColor-undefined-1-firefox-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Donuts-Verify-loading-true-with-316f3-r-chart-palette-order-4-baseBgColor-undefined-1-webkit-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Donuts-Verify-loading-true-with-316f3-r-chart-palette-order-4-baseBgColor-undefined-1-webkit-linux.png index 7532094bc9..5c2825d659 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Donuts-Verify-loading-true-with-316f3-r-chart-palette-order-4-baseBgColor-undefined-1-webkit-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Donuts-Verify-loading-true-with-316f3-r-chart-palette-order-4-baseBgColor-undefined-1-webkit-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Segments-Verify-with-valu-2a10f-e-order-16-baseBgColor-chart-palette-order-14-1-chromium-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Segments-Verify-with-valu-2a10f-e-order-16-baseBgColor-chart-palette-order-14-1-chromium-linux.png index 011a0544ae..d70a551f2d 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Segments-Verify-with-valu-2a10f-e-order-16-baseBgColor-chart-palette-order-14-1-chromium-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Segments-Verify-with-valu-2a10f-e-order-16-baseBgColor-chart-palette-order-14-1-chromium-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Segments-Verify-with-valu-2a10f-e-order-16-baseBgColor-chart-palette-order-14-1-firefox-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Segments-Verify-with-valu-2a10f-e-order-16-baseBgColor-chart-palette-order-14-1-firefox-linux.png index 74dc671240..9340d8d1c3 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Segments-Verify-with-valu-2a10f-e-order-16-baseBgColor-chart-palette-order-14-1-firefox-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Segments-Verify-with-valu-2a10f-e-order-16-baseBgColor-chart-palette-order-14-1-firefox-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Segments-Verify-with-valu-2a10f-e-order-16-baseBgColor-chart-palette-order-14-1-webkit-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Segments-Verify-with-valu-2a10f-e-order-16-baseBgColor-chart-palette-order-14-1-webkit-linux.png index 6789ac18d5..385fbb8505 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Segments-Verify-with-valu-2a10f-e-order-16-baseBgColor-chart-palette-order-14-1-webkit-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Segments-Verify-with-valu-2a10f-e-order-16-baseBgColor-chart-palette-order-14-1-webkit-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-with-3-segments-wi-3a443-te-order-2-baseBgColor-chart-palette-order-16-1-chromium-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-with-3-segments-wi-3a443-te-order-2-baseBgColor-chart-palette-order-16-1-chromium-linux.png index ce7dcf8a90..f06a2e7cee 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-with-3-segments-wi-3a443-te-order-2-baseBgColor-chart-palette-order-16-1-chromium-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-with-3-segments-wi-3a443-te-order-2-baseBgColor-chart-palette-order-16-1-chromium-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-with-3-segments-wi-3a443-te-order-2-baseBgColor-chart-palette-order-16-1-firefox-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-with-3-segments-wi-3a443-te-order-2-baseBgColor-chart-palette-order-16-1-firefox-linux.png index e98f8f76aa..7ce0b5321a 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-with-3-segments-wi-3a443-te-order-2-baseBgColor-chart-palette-order-16-1-firefox-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-with-3-segments-wi-3a443-te-order-2-baseBgColor-chart-palette-order-16-1-firefox-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-with-3-segments-wi-3a443-te-order-2-baseBgColor-chart-palette-order-16-1-webkit-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-with-3-segments-wi-3a443-te-order-2-baseBgColor-chart-palette-order-16-1-webkit-linux.png index 6c7300ae01..389e45076a 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-with-3-segments-wi-3a443-te-order-2-baseBgColor-chart-palette-order-16-1-webkit-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-with-3-segments-wi-3a443-te-order-2-baseBgColor-chart-palette-order-16-1-webkit-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-without-segments-w-6c513-te-order-2-baseBgColor-chart-palette-order-16-1-chromium-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-without-segments-w-6c513-te-order-2-baseBgColor-chart-palette-order-16-1-chromium-linux.png index 522281f701..f35fd22569 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-without-segments-w-6c513-te-order-2-baseBgColor-chart-palette-order-16-1-chromium-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-without-segments-w-6c513-te-order-2-baseBgColor-chart-palette-order-16-1-chromium-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-without-segments-w-6c513-te-order-2-baseBgColor-chart-palette-order-16-1-firefox-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-without-segments-w-6c513-te-order-2-baseBgColor-chart-palette-order-16-1-firefox-linux.png index 03a1f098d1..887cfcf469 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-without-segments-w-6c513-te-order-2-baseBgColor-chart-palette-order-16-1-firefox-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-without-segments-w-6c513-te-order-2-baseBgColor-chart-palette-order-16-1-firefox-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-without-segments-w-6c513-te-order-2-baseBgColor-chart-palette-order-16-1-webkit-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-without-segments-w-6c513-te-order-2-baseBgColor-chart-palette-order-16-1-webkit-linux.png index e375bd3077..1ef4efd545 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-without-segments-w-6c513-te-order-2-baseBgColor-chart-palette-order-16-1-webkit-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Score-Lines-Verify-without-segments-w-6c513-te-order-2-baseBgColor-chart-palette-order-16-1-webkit-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-73495-ned-lastPointColor-undefined-color-undefined-1-chromium-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-73495-ned-lastPointColor-undefined-color-undefined-1-chromium-linux.png index ca1d81dc72..93f6f7a650 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-73495-ned-lastPointColor-undefined-color-undefined-1-chromium-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-73495-ned-lastPointColor-undefined-color-undefined-1-chromium-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-73495-ned-lastPointColor-undefined-color-undefined-1-firefox-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-73495-ned-lastPointColor-undefined-color-undefined-1-firefox-linux.png index b8feef82f1..b400e90b9a 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-73495-ned-lastPointColor-undefined-color-undefined-1-firefox-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-73495-ned-lastPointColor-undefined-color-undefined-1-firefox-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-73495-ned-lastPointColor-undefined-color-undefined-1-webkit-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-73495-ned-lastPointColor-undefined-color-undefined-1-webkit-linux.png index 49accc5094..69d71f4bea 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-73495-ned-lastPointColor-undefined-color-undefined-1-webkit-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-73495-ned-lastPointColor-undefined-color-undefined-1-webkit-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-95fd9--palette-order-6-color-chart-palette-order-9-1-chromium-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-95fd9--palette-order-6-color-chart-palette-order-9-1-chromium-linux.png index 3280c60043..a1055768c5 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-95fd9--palette-order-6-color-chart-palette-order-9-1-chromium-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-95fd9--palette-order-6-color-chart-palette-order-9-1-chromium-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-95fd9--palette-order-6-color-chart-palette-order-9-1-firefox-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-95fd9--palette-order-6-color-chart-palette-order-9-1-firefox-linux.png index 6a393be772..37740182ae 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-95fd9--palette-order-6-color-chart-palette-order-9-1-firefox-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-95fd9--palette-order-6-color-chart-palette-order-9-1-firefox-linux.png differ diff --git a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-95fd9--palette-order-6-color-chart-palette-order-9-1-webkit-linux.png b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-95fd9--palette-order-6-color-chart-palette-order-9-1-webkit-linux.png index 2725498888..a79bee239d 100644 Binary files a/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-95fd9--palette-order-6-color-chart-palette-order-9-1-webkit-linux.png and b/semcore/mini-chart/__tests__/mini-chart.browser-test.tsx-snapshots/-visual-Trend-Lines-Verify-loading-with-lastP-95fd9--palette-order-6-color-chart-palette-order-9-1-webkit-linux.png differ diff --git a/semcore/mini-chart/src/component/score/Line.tsx b/semcore/mini-chart/src/component/score/Line.tsx deleted file mode 100644 index cc70b066cc..0000000000 --- a/semcore/mini-chart/src/component/score/Line.tsx +++ /dev/null @@ -1,135 +0,0 @@ -import { Box, Flex } from '@semcore/base-components'; -import { createComponent, Component, Root, sstyled } from '@semcore/core'; -import resolveColorEnhance from '@semcore/core/lib/utils/enhances/resolveColorEnhance'; -import React from 'react'; - -import style from './line.shadow.css'; -import type { - ScoreLineComponent, - ScoreLineGaugeProps, - SegmentProps, - InnerSegmentProps, - ScoreLineGaugeDefaultProps, -} from './Line.types'; - -class LineRoot extends Component< - ScoreLineGaugeProps, - typeof LineRoot.enhance, - {}, - {}, - {}, - ScoreLineGaugeDefaultProps -> { - static enhance = [resolveColorEnhance()] as const; - static displayName = 'ScoreLine'; - - static style = style; - - static defaultProps = { - animate: true, - } as const; - - getSegmentProps(segmentProps: SegmentProps) { - const { children, resolveColor } = this.asProps; - - let sum = 0; - React.Children.forEach(children, (child) => { - if (React.isValidElement(child)) { - sum = sum + child.props.value; - } - }); - - const width = sum > 0 ? (100 * segmentProps.value) / sum : 0; - - return { - 'w': `${width}%`, - 'use:color': resolveColor(segmentProps.color), - }; - } - - render() { - const SLineGauge = Root; - const SLineValue = Box; - const SAnimationLine = Box; - const SLineGaugeSegment = Flex; - const SLineSegmentItem = Box; - const { - value, - styles, - color = 'chart-palette-order-1', - baseBgColor, - resolveColor, - loading, - children, - Children, - animate, - } = this.asProps; - - if (children !== undefined) { - return sstyled(styles)( - - - - - {animate && } - , - ); - } - - const { segments } = this.asProps; - - const SegmentItems = []; - - if (segments) { - for (let i = 0; i < segments; i++) { - const width = `calc((100% - ${segments - 1}px) / ${segments})`; - - SegmentItems.push( - sstyled(styles)( - , - ), - ); - } - } - - let percent = `${value}%`; - - if (segments) { - percent = `${(value / segments) * 100}%`; - } - - return sstyled(styles)( - - {!loading && } - {Boolean(SegmentItems.length) && {SegmentItems}} - {animate && } - , - ); - } -} - -function Segment(props: InnerSegmentProps) { - const { styles, value } = props; - const SLineSegmentItem = Root; - - if (!value) return null; - - return sstyled(styles)(); -} -Segment.displayName = 'Segment'; - -/** - * MiniCharts.ScoreLine - * - * {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-api|API} | {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-code|Examples} - */ -export const ScoreLine = createComponent< - ScoreLineComponent, - typeof LineRoot ->(LineRoot, { Segment }); - -ScoreLine.displayName = 'MiniChart.ScoreLine'; diff --git a/semcore/mini-chart/src/component/score/Line.types.ts b/semcore/mini-chart/src/component/score/Line.types.ts deleted file mode 100644 index 452719b55b..0000000000 --- a/semcore/mini-chart/src/component/score/Line.types.ts +++ /dev/null @@ -1,70 +0,0 @@ -import type { NSBox } from '@semcore/base-components'; -import type { Intergalactic } from '@semcore/core'; -import type resolveColorEnhance from '@semcore/core/lib/utils/enhances/resolveColorEnhance'; -import type React from 'react'; - -import type { CommonScoreProps } from './Score'; - -type Enumerate = Acc['length'] extends N - ? Acc[number] - : Enumerate; - -type Range = Exclude, Enumerate>; - -export type SegmentColor = `chart-palette-order-${Range<1, 24>}`; - -export type SegmentProps = { - value: number; - /** - * Color of value - */ - color: SegmentColor; -}; - -type SegmentComponent = React.FC; - -export type InnerSegmentProps = SegmentProps & { - styles: React.DetailedHTMLProps, HTMLStyleElement>; -}; - -type ValuedScoreProps = { - /** - * Value of score (in percents from 0 to 100) or count of selected segments (for Line with segments) - */ - value: number; - /** - * Color of value - */ - color?: SegmentColor; - /** - * Count of line segments - */ - segments?: number; - /** - * We don't accept children in this way - */ - children?: never; -}; - -type CustomRenderScoreProps = { - value?: never; - segments?: never; - color?: never; - children: SegmentComponent[]; -}; - -export type ScoreLineGaugeProps = NSBox.Props & - Intergalactic.InternalTypings.EfficientOmit & - (ValuedScoreProps | CustomRenderScoreProps); - -export type ScoreLineGaugeDefaultProps = { - animate: true; -}; - -export type Enhances = [() => { - resolveColor: ReturnType; -}]; - -export type ScoreLineComponent = Intergalactic.Component<'svg', ScoreLineGaugeProps, {}, Enhances> & { - Segment: Intergalactic.Component; -}; diff --git a/semcore/mini-chart/src/component/score/Score.ts b/semcore/mini-chart/src/component/score/Score.ts deleted file mode 100644 index 37c076c75f..0000000000 --- a/semcore/mini-chart/src/component/score/Score.ts +++ /dev/null @@ -1,28 +0,0 @@ -export type CommonScoreProps = { - /** - * Value of score (in percents from 0 to 100) or count of selected segments (for Line with segments) - */ - value: number; - - /** - * Color of value - */ - color?: string; - - /** - * Color of background - */ - baseBgColor?: string; - - /** - * Flag to enable skeleton - * @default false - */ - loading?: boolean; - - /** - * Flag to enable animate of charts - * @default true - */ - animate?: boolean; -}; diff --git a/semcore/mini-chart/src/component/score/index.ts b/semcore/mini-chart/src/component/score/index.ts deleted file mode 100644 index 6f0fd8fc05..0000000000 --- a/semcore/mini-chart/src/component/score/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { ScoreDonut, ScoreSemiDonut } from './Donut'; -import { ScoreLine } from './Line'; - -export { ScoreDonut, ScoreSemiDonut, ScoreLine }; diff --git a/semcore/mini-chart/src/component/score/line.shadow.css b/semcore/mini-chart/src/component/score/line.shadow.css index fe53257aa9..6447478756 100644 --- a/semcore/mini-chart/src/component/score/line.shadow.css +++ b/semcore/mini-chart/src/component/score/line.shadow.css @@ -41,7 +41,7 @@ SLineSegmentItem:last-child { SLineSegmentItem { height: 8px; background: transparent; - border-right-color: var(--intergalactic-chart-grid-border, #fff); + border-right-color: var(--intergalactic-chart-grid-border, #ffffff); border-right-style: solid; border-right-width: 1px; box-sizing: content-box; diff --git a/semcore/mini-chart/src/component/trend/Line.tsx b/semcore/mini-chart/src/component/trend/Line.tsx deleted file mode 100644 index 990e3a769b..0000000000 --- a/semcore/mini-chart/src/component/trend/Line.tsx +++ /dev/null @@ -1,183 +0,0 @@ -import { Box } from '@semcore/base-components'; -import type { Intergalactic } from '@semcore/core'; -import { createComponent, assignProps, Root, sstyled } from '@semcore/core'; -import { extractAriaProps } from '@semcore/core/lib/utils/ariaProps'; -import resolveColorEnhance from '@semcore/core/lib/utils/enhances/resolveColorEnhance'; -import uniqueIDEnhancement from '@semcore/core/lib/utils/uniqueID'; -import React from 'react'; - -import { Trend, type CommonTrendProps } from './Trend'; -import style from '../skeleton/skeleton.shadow.css'; - -export type TrendLineProps = CommonTrendProps & { - /** - * List of values - */ - data: number[]; - - /** - * Color of line - */ - color?: string; - - /** - * Color of last point in chart - */ - lastPointColor?: string; - - /** - * Radius for last point item - */ - lastPointRadius?: number; -}; - -type TrendLineComponent = Intergalactic.Component<'svg', TrendLineProps, {}, typeof TrendLineRoot.enhance>; - -type TrendLineDefaultProps = { - animate: true; -}; - -class TrendLineRoot extends Trend { - static enhance = [resolveColorEnhance(), uniqueIDEnhancement()] as const; - - static style = style; - - static defaultProps = { - animate: true, - } as const; - - get defaultData(): number[] { - return [15, 70, 20, 85, 20]; - } - - get lastPointRadius(): number { - return this.asProps.lastPointRadius ?? 6; - } - - get data(): number[] { - const { data, loading } = this.asProps; - - if (loading) { - return this.defaultData; - } - - return data; - } - - override get svgWidth(): number { - return this.asProps.lastPointColor - ? this.defaultWidth + this.lastPointRadius - : this.defaultWidth; - } - - override get svgHeight(): number { - return this.asProps.lastPointColor - ? this.defaultHeight + this.lastPointRadius - : this.defaultHeight; - } - - get color() { - const { resolveColor, color = 'chart-palette-order-1', loading } = this.asProps; - - if (loading) { - return resolveColor('skeleton-bg'); - } - - return resolveColor(color); - } - - render() { - const STrendLine = Root; - const { uid, withArea, animate, lastPointColor, resolveColor, loading, styles } = this.asProps; - - const points: string[] = []; - const length = this.data.length; - const step = this.defaultWidth / (length - 1); - - for (let i = 0; i < length; i++) { - points.push(`${step * i},${this.defaultHeight - this.data[i]}`); - } - const { __excludeProps, extractedAriaProps } = extractAriaProps(this.asProps); - - return sstyled(styles)( - - - - {withArea && ( - - )} - {lastPointColor && !loading && ( - - )} - - {animate && !loading && ( - - - - - - )} - - , - ); - } -} - -/** - * MiniCharts.TrendLine - * - * {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-api#trend-charts|API} | {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-code|Examples} - */ -export const TrendLine = createComponent(TrendLineRoot); - -TrendLine.displayName = 'MiniChart.TrendLine'; - -/** - * MiniCharts.TrendArea - * - * {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-api#trend-charts|API} | {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-code|Examples} - */ -export const TrendArea = createComponent( - TrendLineRoot, - {}, - { - enhancements: [ - () => { - return { - wrapperProps: (props: TrendLineProps) => { - return assignProps(props, { withArea: true }); - }, - }; - }, - ], - }, -); - -TrendArea.displayName = 'MiniChart.TrendArea'; diff --git a/semcore/mini-chart/src/component/trend/Trend.tsx b/semcore/mini-chart/src/component/trend/Trend.tsx deleted file mode 100644 index 6885da0c3c..0000000000 --- a/semcore/mini-chart/src/component/trend/Trend.tsx +++ /dev/null @@ -1,82 +0,0 @@ -import type { NSBox } from '@semcore/base-components'; -import type { Intergalactic } from '@semcore/core'; -import { Component } from '@semcore/core'; -import React from 'react'; - -export type CommonTrendProps = NSBox.Props & { - /** - * Flag to enable animate of charts - * @default true - */ - animate?: boolean; - - /** - * Flag to enable skeleton - * @default false - */ - loading?: boolean; - - /** - * Data for chart - */ - data: any[]; -}; - -type CommonTrendState = { width: number; height: number }; - -export abstract class Trend< - P extends CommonTrendProps, - E extends readonly ((...args: any[]) => any)[], - DP extends Intergalactic.InternalTypings.ValidDefaultProps = never, -> extends Component, {}, CommonTrendState, DP> { - state = { - width: 200, - height: 100, - }; - - containerRef = React.createRef(); - - componentDidMount() { - this.setSizes(); - } - - componentDidUpdate(prevProps: P) { - if ( - prevProps.w !== this.props.w || - prevProps.h !== this.props.h || - prevProps.data !== this.props.data - ) { - this.setSizes(); - } - } - - get defaultWidth(): number { - const { width, height } = this.state; - - return (width / height) * this.defaultHeight; - } - - get defaultHeight(): number { - return 100; - } - - get svgWidth(): number { - return this.defaultWidth; - } - - get svgHeight(): number { - return this.defaultHeight; - } - - setSizes() { - if (this.containerRef.current) { - const boundingClientRect = this.containerRef.current.getBoundingClientRect(); - - const { width, height } = boundingClientRect; - - if (width > 0 && height > 0) { - this.setState({ width, height }); - } - } - } -} diff --git a/semcore/mini-chart/src/component/trend/index.ts b/semcore/mini-chart/src/component/trend/index.ts deleted file mode 100644 index cd9b1a1aa7..0000000000 --- a/semcore/mini-chart/src/component/trend/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { TrendBar, TrendHistogram } from './Bar'; -import { TrendLine, TrendArea } from './Line'; - -export { TrendLine, TrendArea, TrendBar, TrendHistogram }; diff --git a/semcore/mini-chart/src/component/score/Donut.tsx b/semcore/mini-chart/src/components/score/Donut.tsx similarity index 90% rename from semcore/mini-chart/src/component/score/Donut.tsx rename to semcore/mini-chart/src/components/score/Donut.tsx index 374375bd85..d59fd83323 100644 --- a/semcore/mini-chart/src/component/score/Donut.tsx +++ b/semcore/mini-chart/src/components/score/Donut.tsx @@ -1,5 +1,4 @@ import { Box } from '@semcore/base-components'; -import type { NSBox } from '@semcore/base-components'; import type { Intergalactic } from '@semcore/core'; import { createComponent, Component, Root, sstyled, assignProps } from '@semcore/core'; import { extractAriaProps } from '@semcore/core/lib/utils/ariaProps'; @@ -7,24 +6,17 @@ import resolveColorEnhance from '@semcore/core/lib/utils/enhances/resolveColorEn import { cssVariableEnhance } from '@semcore/core/lib/utils/useCssVariable'; import React from 'react'; -import style from './donut.shadow.css'; -import type { CommonScoreProps } from './Score'; +import style from '../../styles/donut.shadow.css'; +import type { NSMiniChart } from '../../types'; import { ScoreDonutUtils } from '../../utils/ScoreDonutUtils'; -export type ScoreDonutProps = NSBox.Props & CommonScoreProps; - -type ScoreDonutDefaultProps = { - animate: true; -}; - -type ScoreDonutComponent = Intergalactic.Component<'svg', ScoreDonutProps, {}, typeof DonutRoot.enhance>; class DonutRoot extends Component< - ScoreDonutProps, + Intergalactic.InternalTypings.InferComponentProps, typeof DonutRoot.enhance, {}, {}, {}, - ScoreDonutDefaultProps + NSMiniChart.Score.Donut.DefaultProps > { static enhance = [ cssVariableEnhance({ @@ -134,7 +126,7 @@ class DonutRoot extends Component< * {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-api|API} | {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-code|Examples} */ export const ScoreDonut = createComponent< - ScoreDonutComponent, + NSMiniChart.Score.Donut.Component, typeof DonutRoot >(DonutRoot); @@ -146,7 +138,7 @@ ScoreDonut.displayName = 'MiniChart.ScoreDonut'; * {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-api|API} | {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-code|Examples} */ export const ScoreSemiDonut = createComponent< - ScoreDonutComponent, + NSMiniChart.Score.Donut.Component, typeof DonutRoot >( DonutRoot, @@ -155,7 +147,7 @@ export const ScoreSemiDonut = createComponent< enhancements: [ () => { return { - wrapperProps: (props: ScoreDonutProps) => { + wrapperProps: (props: NSMiniChart.Score.Donut.Props) => { return assignProps(props, { isSemiDonut: true }); }, }; diff --git a/semcore/mini-chart/src/components/score/Line.tsx b/semcore/mini-chart/src/components/score/Line.tsx new file mode 100644 index 0000000000..763f2e6d7a --- /dev/null +++ b/semcore/mini-chart/src/components/score/Line.tsx @@ -0,0 +1,133 @@ +import { Box, Flex } from '@semcore/base-components'; +import type { Intergalactic } from '@semcore/core'; +import { createComponent, Component, Root, sstyled } from '@semcore/core'; +import resolveColorEnhance from '@semcore/core/lib/utils/enhances/resolveColorEnhance'; +import React from 'react'; + +import style from '../../styles/line.shadow.css'; +import type { NSMiniChart } from '../../types'; + +class LineRoot extends Component< + Intergalactic.InternalTypings.InferComponentProps, + typeof LineRoot.enhance, + {}, + {}, + {}, + NSMiniChart.Score.Line.DefaultProps +> { + static enhance = [resolveColorEnhance()] as const; + static displayName = 'ScoreLine'; + + static style = style; + + static defaultProps = { + animate: true, + } as const; + + getSegmentProps(segmentProps: NSMiniChart.Score.Line.Segment.Props) { + const { children, resolveColor } = this.asProps; + + let sum = 0; + React.Children.forEach(children, (child) => { + if (React.isValidElement(child)) { + sum = sum + child.props.value; + } + }); + + const width = sum > 0 ? (100 * segmentProps.value) / sum : 0; + + return { + 'w': `${width}%`, + 'use:color': resolveColor(segmentProps.color), + }; + } + + render() { + const SLineGauge = Root; + const SLineValue = Box; + const SAnimationLine = Box; + const SLineGaugeSegment = Flex; + const SLineSegmentItem = Box; + const { + value, + styles, + color = 'chart-palette-order-1', + baseBgColor, + resolveColor, + loading, + children, + Children, + animate, + } = this.asProps; + + if (children !== undefined) { + return sstyled(styles)( + + + + + {animate && } + , + ); + } + + if (value === undefined) return null; + + const { segments } = this.asProps; + + const SegmentItems = []; + + if (segments) { + for (let i = 0; i < segments; i++) { + const width = `calc((100% - ${segments - 1}px) / ${segments})`; + + SegmentItems.push( + sstyled(styles)( + , + ), + ); + } + } + + let percent = `${value}%`; + + if (segments) { + percent = `${(value / segments) * 100}%`; + } + + return sstyled(styles)( + + {!loading && } + {Boolean(SegmentItems.length) && {SegmentItems}} + {animate && } + , + ); + } +} + +function Segment( + props: Intergalactic.InternalTypings.InferChildComponentProps, +) { + const { styles } = props; + const SLineSegmentItem = Root; + + return sstyled(styles)(); +} + +/** + * MiniCharts.ScoreLine + * + * {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-api|API} | {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-code|Examples} + */ +export const ScoreLine = createComponent< + NSMiniChart.Score.Line.Component, + typeof LineRoot +>(LineRoot, { Segment }); + +// Since the Intergalactic.Component was unfolded to plain component structure. +// @ts-ignore +ScoreLine.displayName = 'MiniChart.ScoreLine'; diff --git a/semcore/mini-chart/src/components/score/index.ts b/semcore/mini-chart/src/components/score/index.ts new file mode 100644 index 0000000000..f6d8aa24a6 --- /dev/null +++ b/semcore/mini-chart/src/components/score/index.ts @@ -0,0 +1,2 @@ +export { ScoreDonut, ScoreSemiDonut } from './Donut'; +export { ScoreLine } from './Line'; diff --git a/semcore/mini-chart/src/component/trend/Bar.tsx b/semcore/mini-chart/src/components/trend/Bar.tsx similarity index 80% rename from semcore/mini-chart/src/component/trend/Bar.tsx rename to semcore/mini-chart/src/components/trend/Bar.tsx index c72d180066..c2a76fbf42 100644 --- a/semcore/mini-chart/src/component/trend/Bar.tsx +++ b/semcore/mini-chart/src/components/trend/Bar.tsx @@ -5,34 +5,15 @@ import { extractAriaProps } from '@semcore/core/lib/utils/ariaProps'; import resolveColorEnhance from '@semcore/core/lib/utils/enhances/resolveColorEnhance'; import React from 'react'; -import { Trend, type CommonTrendProps } from './Trend'; -import style from '../skeleton/skeleton.shadow.css'; - -type BarItem = { - /** - * Value - */ - value: number; - /** - * Color of value - */ - color?: string; -}; - -export type TrendBarProps = CommonTrendProps & { - /** - * Data to bar chart - */ - data: BarItem[]; -}; - -type TrendBarComponent = Intergalactic.Component<'svg', TrendBarProps, {}, typeof TrendBarRoot.enhance>; - -type TrendBarDefaultProps = { - animate: true; -}; - -class TrendBarRoot extends Trend { +import { Trend } from './Trend'; +import style from '../../styles/skeleton.shadow.css'; +import type { NSMiniChart } from '../../types'; + +class TrendBarRoot extends Trend< + Intergalactic.InternalTypings.InferComponentProps, + typeof TrendBarRoot.enhance, + NSMiniChart.Trend.Bar.DefaultProps +> { static enhance = [resolveColorEnhance()] as const; static style = style; @@ -41,11 +22,11 @@ class TrendBarRoot extends Trend(TrendBarRoot); @@ -120,7 +101,7 @@ TrendBar.displayName = 'MiniChart.TrendBar'; * {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-api#trend-charts|API} | {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-code|Examples} */ export const TrendHistogram = createComponent< - TrendBarComponent, + NSMiniChart.Trend.Bar.Component, typeof TrendBarRoot >( TrendBarRoot, @@ -129,7 +110,7 @@ export const TrendHistogram = createComponent< enhancements: [ () => { return { - wrapperProps: (props: TrendBarProps) => { + wrapperProps: (props: NSMiniChart.Trend.Bar.Props) => { return assignProps(props, { isHistogram: true }); }, }; diff --git a/semcore/mini-chart/src/components/trend/Line.tsx b/semcore/mini-chart/src/components/trend/Line.tsx new file mode 100644 index 0000000000..240f02d0a5 --- /dev/null +++ b/semcore/mini-chart/src/components/trend/Line.tsx @@ -0,0 +1,160 @@ +import { Box } from '@semcore/base-components'; +import type { Intergalactic } from '@semcore/core'; +import { createComponent, assignProps, Root, sstyled } from '@semcore/core'; +import { extractAriaProps } from '@semcore/core/lib/utils/ariaProps'; +import resolveColorEnhance from '@semcore/core/lib/utils/enhances/resolveColorEnhance'; +import uniqueIDEnhancement from '@semcore/core/lib/utils/uniqueID'; +import React from 'react'; + +import { Trend } from './Trend'; +import style from '../../styles/skeleton.shadow.css'; +import type { NSMiniChart } from '../../types'; + +class TrendLineRoot extends Trend< + Intergalactic.InternalTypings.InferComponentProps, + typeof TrendLineRoot.enhance, + NSMiniChart.Trend.Line.DefaultProps +> { + static enhance = [resolveColorEnhance(), uniqueIDEnhancement()] as const; + + static style = style; + + static defaultProps = { + animate: true, + } as const; + + get defaultData(): number[] { + return [15, 70, 20, 85, 20]; + } + + get lastPointRadius(): number { + return this.asProps.lastPointRadius ?? 6; + } + + get data(): number[] { + const { data, loading } = this.asProps; + + if (loading) { + return this.defaultData; + } + + return data; + } + + override get svgWidth(): number { + return this.asProps.lastPointColor + ? this.defaultWidth + this.lastPointRadius + : this.defaultWidth; + } + + override get svgHeight(): number { + return this.asProps.lastPointColor + ? this.defaultHeight + this.lastPointRadius + : this.defaultHeight; + } + + get color() { + const { resolveColor, color = 'chart-palette-order-1', loading } = this.asProps; + + if (loading) { + return resolveColor('skeleton-bg'); + } + + return resolveColor(color); + } + + render() { + const STrendLine = Root; + const { uid, withArea, animate, lastPointColor, resolveColor, loading, styles } = this.asProps; + + const points: string[] = []; + const length = this.data.length; + const step = this.defaultWidth / (length - 1); + + for (let i = 0; i < length; i++) { + points.push(`${step * i},${this.defaultHeight - this.data[i]}`); + } + const { __excludeProps, extractedAriaProps } = extractAriaProps(this.asProps); + + return sstyled(styles)( + + + + {withArea && ( + + )} + {lastPointColor && !loading && ( + + )} + + {animate && !loading && ( + + + + + + )} + + , + ); + } +} + +/** + * MiniCharts.TrendLine + * + * {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-api#trend-charts|API} | {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-code|Examples} + */ +export const TrendLine = createComponent(TrendLineRoot); + +TrendLine.displayName = 'MiniChart.TrendLine'; + +/** + * MiniCharts.TrendArea + * + * {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-api#trend-charts|API} | {@link https://developer.semrush.com/intergalactic/data-display/mini-chart/mini-chart-code|Examples} + */ +export const TrendArea = createComponent( + TrendLineRoot, + {}, + { + enhancements: [ + () => { + return { + wrapperProps: (props: NSMiniChart.Trend.Line.Props) => { + return assignProps(props, { withArea: true }); + }, + }; + }, + ], + }, +); + +TrendArea.displayName = 'MiniChart.TrendArea'; diff --git a/semcore/mini-chart/src/components/trend/Trend.tsx b/semcore/mini-chart/src/components/trend/Trend.tsx new file mode 100644 index 0000000000..74e333c4fa --- /dev/null +++ b/semcore/mini-chart/src/components/trend/Trend.tsx @@ -0,0 +1,62 @@ +import type { Intergalactic } from '@semcore/core'; +import { Component } from '@semcore/core'; +import React from 'react'; + +import type { NSMiniChart } from '../../types'; + +export abstract class Trend< + P extends Record, + E extends readonly ((...args: any[]) => any)[], + DP extends Intergalactic.InternalTypings.ValidDefaultProps = never, +> extends Component, {}, NSMiniChart.Trend.CommonState, DP> { + state = { + width: 200, + height: 100, + }; + + containerRef = React.createRef(); + + componentDidMount() { + this.setSizes(); + } + + componentDidUpdate(prevProps: P) { + if ( + prevProps.w !== this.props.w || + prevProps.h !== this.props.h || + prevProps.data !== this.props.data + ) { + this.setSizes(); + } + } + + get defaultWidth(): number { + const { width, height } = this.state; + + return (width / height) * this.defaultHeight; + } + + get defaultHeight(): number { + return 100; + } + + get svgWidth(): number { + return this.defaultWidth; + } + + get svgHeight(): number { + return this.defaultHeight; + } + + setSizes() { + if (this.containerRef.current) { + const boundingClientRect = this.containerRef.current.getBoundingClientRect(); + + const { width, height } = boundingClientRect; + + if (width > 0 && height > 0) { + this.setState({ width, height }); + } + } + } +} diff --git a/semcore/mini-chart/src/components/trend/index.ts b/semcore/mini-chart/src/components/trend/index.ts new file mode 100644 index 0000000000..56d6d0c9b7 --- /dev/null +++ b/semcore/mini-chart/src/components/trend/index.ts @@ -0,0 +1,2 @@ +export { TrendBar, TrendHistogram } from './Bar'; +export { TrendLine, TrendArea } from './Line'; diff --git a/semcore/mini-chart/src/index.ts b/semcore/mini-chart/src/index.ts index 1b816d6fc1..e14b63d421 100644 --- a/semcore/mini-chart/src/index.ts +++ b/semcore/mini-chart/src/index.ts @@ -1,16 +1,8 @@ -import { ScoreLine, ScoreDonut, ScoreSemiDonut } from './component/score'; -import type { SegmentColor } from './component/score/Line.types'; -import { TrendLine, TrendArea, TrendBar, TrendHistogram } from './component/trend'; +import { ScoreDonut, ScoreSemiDonut, ScoreLine } from './components/score'; +import { TrendLine, TrendArea, TrendBar, TrendHistogram } from './components/trend'; +import type { SegmentColor, NSMiniChart } from './types'; -const miniCharts: { - TrendLine: typeof TrendLine; - TrendArea: typeof TrendArea; - TrendBar: typeof TrendBar; - TrendHistogram: typeof TrendHistogram; - ScoreSemiDonut: typeof ScoreSemiDonut; - ScoreDonut: typeof ScoreDonut; - ScoreLine: typeof ScoreLine; -} = { +export default { TrendLine, TrendArea, TrendBar, @@ -20,8 +12,7 @@ const miniCharts: { ScoreLine, }; -export default miniCharts; - export type { SegmentColor, + NSMiniChart, }; diff --git a/semcore/mini-chart/src/component/score/donut.shadow.css b/semcore/mini-chart/src/styles/donut.shadow.css similarity index 86% rename from semcore/mini-chart/src/component/score/donut.shadow.css rename to semcore/mini-chart/src/styles/donut.shadow.css index b4d3e288cd..cd073b79dd 100644 --- a/semcore/mini-chart/src/component/score/donut.shadow.css +++ b/semcore/mini-chart/src/styles/donut.shadow.css @@ -1,4 +1,4 @@ -@import '../skeleton/skeleton.shadow.css'; +@import './skeleton.shadow.css'; SDonutContainer[semi] { g { diff --git a/semcore/mini-chart/src/styles/line.shadow.css b/semcore/mini-chart/src/styles/line.shadow.css new file mode 100644 index 0000000000..ea6e0fe24d --- /dev/null +++ b/semcore/mini-chart/src/styles/line.shadow.css @@ -0,0 +1,62 @@ +@import './skeleton.shadow.css'; + +SLineGauge { + height: 8px; + background-color: var(--base-bg-color, var(--intergalactic-chart-grid-bar-chart-base-bg, oklch(0.96 0.001 180))); + border-radius: var(--intergalactic-chart-rounded, 2px); + overflow: hidden; + position: relative; +} + +SLineValue { + height: 8px; + border-radius: var(--intergalactic-chart-rounded, 2px) 0 0 var(--intergalactic-chart-rounded, 2px); +} + +SLineValue[percent] { + width: var(--percent); +} + +SLineValue[color], SLineSegmentItem[color] { + background-color: var(--color, var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2))); +} + +SLineGauge[segments] { + border-radius: var(--intergalactic-progress-bar-rounded, 6px); +} + +SLineGaugeSegment, SAnimationLine { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; +} + +SLineSegmentItem:last-child { + margin-right: 0; + border-right: none; +} + +SLineSegmentItem { + height: 8px; + background: transparent; + border-right-color: var(--intergalactic-chart-grid-border, #ffffff); + border-right-style: solid; + border-right-width: 1px; + box-sizing: content-box; +} + +SAnimationLine { + background-color: var(--intergalactic-chart-grid-bar-chart-base-bg, oklch(0.96 0.001 180)); + transition: all var(--intergalactic-duration-extra-slow, 500) ease-in-out; + animation-name: move-line; + animation-duration: 0.5s; + animation-timing-function: ease-in-out; + animation-fill-mode: forwards; +} + +@keyframes move-line { + 0% {transform: translateX(0);} + 100% {transform: translateX(100%);} +} diff --git a/semcore/mini-chart/src/component/skeleton/skeleton.shadow.css b/semcore/mini-chart/src/styles/skeleton.shadow.css similarity index 100% rename from semcore/mini-chart/src/component/skeleton/skeleton.shadow.css rename to semcore/mini-chart/src/styles/skeleton.shadow.css diff --git a/semcore/mini-chart/src/types.ts b/semcore/mini-chart/src/types.ts new file mode 100644 index 0000000000..863d949a88 --- /dev/null +++ b/semcore/mini-chart/src/types.ts @@ -0,0 +1,183 @@ +import type { NSBox } from '@semcore/base-components'; +import type { Intergalactic } from '@semcore/core'; + +type Enumerate = Acc['length'] extends N + ? Acc[number] + : Enumerate; +type Range = Exclude, Enumerate>; + +declare namespace NSMiniChart { + namespace Score { + type CommonProps = { + /** + * Value of score (in percents from 0 to 100) or count of selected segments (for Line with segments) + */ + value: number; + + /** + * Color of value + */ + color?: string; + + /** + * Color of background + */ + baseBgColor?: string; + + /** + * Flag to enable skeleton + * @default false + */ + loading?: boolean; + + /** + * Flag to enable animate of charts + * @default true + */ + animate?: boolean; + }; + + namespace Donut { + type Props = NSBox.Props & NSMiniChart.Score.CommonProps; + type DefaultProps = { + animate: true; + }; + + type Component = Intergalactic.Component<'svg', Props>; + } + + namespace Line { + type Props = NSBox.Props & + Intergalactic.InternalTypings.EfficientOmit & + ( + | { + /** + * Value of score (in percents from 0 to 100) or count of selected segments (for Line with segments) + */ + value: number; + /** + * Color of value + */ + color?: NSMiniChart.Score.Line.Segment.Color; + /** + * Count of line segments + */ + segments?: number; + /** + * We don't accept children in this way + */ + children?: never; + } + | { + value?: never; + segments?: never; + color?: never; + children: React.ReactNode; + } + ); + type DefaultProps = { + animate: true; + }; + + namespace Segment { + type Color = `chart-palette-order-${Range<1, 24>}`; + type Props = { + value: number; + /** + * Color of value + */ + color: NSMiniChart.Score.Line.Segment.Color; + }; + + type Component = Intergalactic.Component; + } + + type Component = (( + props: Props, + ) => Intergalactic.InternalTypings.ComponentRenderingResults & + Intergalactic.InternalTypings.ComponentAdditive<'svg', 'svg', Props>) & { + Segment: Segment.Component; + }; + } + } + + namespace Trend { + type CommonProps = NSBox.Props & { + /** + * Flag to enable animate of charts + * @default true + */ + animate?: boolean; + + /** + * Flag to enable skeleton + * @default false + */ + loading?: boolean; + + /** + * Data for chart + */ + data: any[]; + }; + type CommonState = { width: number; height: number }; + + namespace Line { + type Props = NSMiniChart.Trend.CommonProps & { + /** + * List of values + */ + data: number[]; + + /** + * Color of line + */ + color?: string; + + /** + * Color of last point in chart + */ + lastPointColor?: string; + + /** + * Radius for last point item + */ + lastPointRadius?: number; + }; + type DefaultProps = { + animate: true; + }; + + type Component = Intergalactic.Component<'svg', Props>; + } + + namespace Bar { + type Item = { + /** + * Value + */ + value: number; + /** + * Color of value + */ + color?: string; + }; + type Props = NSMiniChart.Trend.CommonProps & { + /** + * Data to bar chart + */ + data: NSMiniChart.Trend.Bar.Item[]; + }; + type DefaultProps = { + animate: true; + }; + + type Component = Intergalactic.Component<'svg', Props>; + } + } +} + +export type { NSMiniChart }; + +/** @deprecated It will be removed in v19. */ +export type SegmentColor = NSMiniChart.Score.Line.Segment.Color; diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-Modal-with-iframe-inside-keyboard-interactions-1-chromium-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-Modal-with-iframe-inside-keyboard-interactions-1-chromium-linux.png index 25ebc178a7..4185c330c3 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-Modal-with-iframe-inside-keyboard-interactions-1-chromium-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-Modal-with-iframe-inside-keyboard-interactions-1-chromium-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-Modal-with-iframe-inside-keyboard-interactions-1-firefox-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-Modal-with-iframe-inside-keyboard-interactions-1-firefox-linux.png index 90af53afda..38a81bb63e 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-Modal-with-iframe-inside-keyboard-interactions-1-firefox-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-Modal-with-iframe-inside-keyboard-interactions-1-firefox-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-Modal-with-iframe-inside-keyboard-interactions-1-webkit-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-Modal-with-iframe-inside-keyboard-interactions-1-webkit-linux.png index fe83235e37..69f8b8498a 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-Modal-with-iframe-inside-keyboard-interactions-1-webkit-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-Modal-with-iframe-inside-keyboard-interactions-1-webkit-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-Overlay-paddings-on-different-page-sizes-1-chromium-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-Overlay-paddings-on-different-page-sizes-1-chromium-linux.png index 9db98e98cc..19cd0414ac 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-Overlay-paddings-on-different-page-sizes-1-chromium-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-Overlay-paddings-on-different-page-sizes-1-chromium-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-Overlay-paddings-on-different-page-sizes-1-firefox-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-Overlay-paddings-on-different-page-sizes-1-firefox-linux.png index 30722bdc20..69b15f958f 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-Overlay-paddings-on-different-page-sizes-1-firefox-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-Overlay-paddings-on-different-page-sizes-1-firefox-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-Overlay-paddings-on-different-page-sizes-1-webkit-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-Overlay-paddings-on-different-page-sizes-1-webkit-linux.png index dc267a2add..e67102e3ee 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-Overlay-paddings-on-different-page-sizes-1-webkit-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-Overlay-paddings-on-different-page-sizes-1-webkit-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-close-button-hover-state-1-chromium-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-close-button-hover-state-1-chromium-linux.png index 46730a559c..b653365719 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-close-button-hover-state-1-chromium-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-close-button-hover-state-1-chromium-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-close-button-hover-state-1-firefox-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-close-button-hover-state-1-firefox-linux.png index af0edf1b6e..2823c5f5d4 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-close-button-hover-state-1-firefox-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-close-button-hover-state-1-firefox-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-close-button-hover-state-1-webkit-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-close-button-hover-state-1-webkit-linux.png index 1ab78e0a4a..e8881e2ffc 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-close-button-hover-state-1-webkit-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-close-button-hover-state-1-webkit-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-1-chromium-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-1-chromium-linux.png index 693c934524..ca4034acde 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-1-chromium-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-1-chromium-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-1-firefox-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-1-firefox-linux.png index 878530d404..879634bb66 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-1-firefox-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-1-firefox-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-1-webkit-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-1-webkit-linux.png index 27ebd0b4d0..81d559ebf0 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-1-webkit-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-1-webkit-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-2-chromium-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-2-chromium-linux.png index 8faf312841..e22f6ace64 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-2-chromium-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-2-chromium-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-2-firefox-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-2-firefox-linux.png index 639cc11369..fc0792c1b0 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-2-firefox-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-2-firefox-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-2-webkit-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-2-webkit-linux.png index e2c9b84c0a..ab2890dcf6 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-2-webkit-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-inside-modal-styles-2-webkit-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-nested-1-chromium-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-nested-1-chromium-linux.png index 8395d62d8f..175e160da8 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-nested-1-chromium-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-nested-1-chromium-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-nested-1-firefox-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-nested-1-firefox-linux.png index 319ccc9139..94503cd357 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-nested-1-firefox-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-nested-1-firefox-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-nested-1-webkit-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-nested-1-webkit-linux.png index 70504a4cbf..0a344afd48 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-nested-1-webkit-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-nested-1-webkit-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-styles-with-access-to-internal-html-nodes-1-chromium-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-styles-with-access-to-internal-html-nodes-1-chromium-linux.png index 15d1c6c7b3..b11f6d457b 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-styles-with-access-to-internal-html-nodes-1-chromium-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-styles-with-access-to-internal-html-nodes-1-chromium-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-styles-with-access-to-internal-html-nodes-1-firefox-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-styles-with-access-to-internal-html-nodes-1-firefox-linux.png index 64b1e150ba..a4c09d8647 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-styles-with-access-to-internal-html-nodes-1-firefox-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-styles-with-access-to-internal-html-nodes-1-firefox-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-styles-with-access-to-internal-html-nodes-1-webkit-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-styles-with-access-to-internal-html-nodes-1-webkit-linux.png index b7f932e925..6dd8aaf397 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-styles-with-access-to-internal-html-nodes-1-webkit-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-styles-with-access-to-internal-html-nodes-1-webkit-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-when-height-is-bigger-than-browser-page-1-chromium-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-when-height-is-bigger-than-browser-page-1-chromium-linux.png index 2f8de78013..87e616ad76 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-when-height-is-bigger-than-browser-page-1-chromium-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-when-height-is-bigger-than-browser-page-1-chromium-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-when-height-is-bigger-than-browser-page-1-firefox-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-when-height-is-bigger-than-browser-page-1-firefox-linux.png index f6bfcb3fd0..2308dfa901 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-when-height-is-bigger-than-browser-page-1-firefox-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-when-height-is-bigger-than-browser-page-1-firefox-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-when-height-is-bigger-than-browser-page-1-webkit-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-when-height-is-bigger-than-browser-page-1-webkit-linux.png index 409b3c0376..985087347c 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-when-height-is-bigger-than-browser-page-1-webkit-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-when-height-is-bigger-than-browser-page-1-webkit-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-800-closable-false-1-chromium-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-800-closable-false-1-chromium-linux.png index 6f50c3dd3d..59b1a25b62 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-800-closable-false-1-chromium-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-800-closable-false-1-chromium-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-800-closable-false-1-firefox-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-800-closable-false-1-firefox-linux.png index 5f045221cf..fe548d1390 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-800-closable-false-1-firefox-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-800-closable-false-1-firefox-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-800-closable-false-1-webkit-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-800-closable-false-1-webkit-linux.png index 6cbe1c0c74..3bca8c7e72 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-800-closable-false-1-webkit-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-800-closable-false-1-webkit-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-undefined-closable-true-1-chromium-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-undefined-closable-true-1-chromium-linux.png index 3c301f775c..35110fac2e 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-undefined-closable-true-1-chromium-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-undefined-closable-true-1-chromium-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-undefined-closable-true-1-firefox-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-undefined-closable-true-1-firefox-linux.png index 97f88c457e..81974cc624 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-undefined-closable-true-1-firefox-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-undefined-closable-true-1-firefox-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-undefined-closable-true-1-webkit-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-undefined-closable-true-1-webkit-linux.png index a4fffb7e88..cc8cdc97eb 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-undefined-closable-true-1-webkit-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-false-w-undefined-closable-true-1-webkit-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-600-closable-false-1-chromium-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-600-closable-false-1-chromium-linux.png index f7ea1ea612..017d5610a3 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-600-closable-false-1-chromium-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-600-closable-false-1-chromium-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-600-closable-false-1-firefox-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-600-closable-false-1-firefox-linux.png index 819a124c91..c0fdb26916 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-600-closable-false-1-firefox-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-600-closable-false-1-firefox-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-600-closable-false-1-webkit-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-600-closable-false-1-webkit-linux.png index 36e9a325f9..ca538e76a9 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-600-closable-false-1-webkit-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-600-closable-false-1-webkit-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-undefined-closable-true-1-chromium-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-undefined-closable-true-1-chromium-linux.png index 4c1e92485a..21e0ae7737 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-undefined-closable-true-1-chromium-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-undefined-closable-true-1-chromium-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-undefined-closable-true-1-firefox-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-undefined-closable-true-1-firefox-linux.png index 6e6040140e..550834ea92 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-undefined-closable-true-1-firefox-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-undefined-closable-true-1-firefox-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-undefined-closable-true-1-webkit-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-undefined-closable-true-1-webkit-linux.png index 6eea686cc0..de7fb3903d 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-undefined-closable-true-1-webkit-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-modal-with-ghost-true-w-undefined-closable-true-1-webkit-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-1-chromium-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-1-chromium-linux.png index 03cc88b9ab..983db0fd7b 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-1-chromium-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-1-chromium-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-1-firefox-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-1-firefox-linux.png index 5f2623c7e6..9af74265c1 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-1-firefox-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-1-firefox-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-1-webkit-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-1-webkit-linux.png index edc1d55b9c..bc2be1ba15 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-1-webkit-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-1-webkit-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-2-chromium-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-2-chromium-linux.png index a32560d3a4..9faf094a90 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-2-chromium-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-2-chromium-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-2-firefox-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-2-firefox-linux.png index 05443a3f46..3b1cb6455f 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-2-firefox-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-2-firefox-linux.png differ diff --git a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-2-webkit-linux.png b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-2-webkit-linux.png index aea36b78ee..8ce6786546 100644 Binary files a/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-2-webkit-linux.png and b/semcore/modal/__tests__/modal.browser-test.tsx-snapshots/-visual-Verify-select-height-inside-modal-2-webkit-linux.png differ diff --git a/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-1-chromium-linux.png b/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-1-chromium-linux.png index cb510dbc17..93f8787bc1 100644 Binary files a/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-1-chromium-linux.png and b/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-1-chromium-linux.png differ diff --git a/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-1-firefox-linux.png b/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-1-firefox-linux.png index 8a60f327e9..a05767ed96 100644 Binary files a/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-1-firefox-linux.png and b/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-1-firefox-linux.png differ diff --git a/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-1-webkit-linux.png b/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-1-webkit-linux.png index d2915e632b..35421e3c12 100644 Binary files a/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-1-webkit-linux.png and b/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-1-webkit-linux.png differ diff --git a/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-2-chromium-linux.png b/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-2-chromium-linux.png index 8755c31336..2cd80b9077 100644 Binary files a/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-2-chromium-linux.png and b/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-2-chromium-linux.png differ diff --git a/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-2-firefox-linux.png b/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-2-firefox-linux.png index 397070ce31..44933568e3 100644 Binary files a/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-2-firefox-linux.png and b/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-2-firefox-linux.png differ diff --git a/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-2-webkit-linux.png b/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-2-webkit-linux.png index 078b1c9fc0..edac3d27c6 100644 Binary files a/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-2-webkit-linux.png and b/semcore/modal/__tests__/ux-patterns-with-modal/confirmation-modal.browser-test.tsx-snapshots/-visual-Verify-Confirmation-modal-dialog-visual-states-2-webkit-linux.png differ diff --git a/semcore/modal/src/Modal.tsx b/semcore/modal/src/Modal.tsx index b13a4e44b7..3242f70110 100644 --- a/semcore/modal/src/Modal.tsx +++ b/semcore/modal/src/Modal.tsx @@ -221,7 +221,7 @@ function Close( ) : ( - + )} diff --git a/semcore/modal/src/style/modal.shadow.css b/semcore/modal/src/style/modal.shadow.css index 41fb292d81..5044072dcb 100644 --- a/semcore/modal/src/style/modal.shadow.css +++ b/semcore/modal/src/style/modal.shadow.css @@ -4,7 +4,7 @@ SWindow { background: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); box-sizing: border-box; margin: auto; - padding: var(--intergalactic-spacing-10x, 40px); + padding: var(--intergalactic-spacing-content-padding-xxlarge, 40px); box-shadow: var(--intergalactic-box-shadow-modal, 0px 1px 5px 0px oklch(0.176 0.033 175.7 / 0.07)); color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); @@ -18,7 +18,7 @@ SWindow { line-height: var(--intergalactic-lh-500, 117%); font-weight: var(--intergalactic-semi-bold, 600); margin-bottom: var(--intergalactic-spacing-2x, 8px); - margin-right: var(--intergalactic-spacing-4x, 16px); + margin-right: var(--intergalactic-spacing-8x, 32px); } STitle[color] { @@ -28,8 +28,9 @@ SWindow { SClose { display: inline-flex; position: absolute; - right: var(--intergalactic-spacing-2x, 8px); - top: var(--intergalactic-spacing-2x, 8px); + right: var(--intergalactic-spacing-content-padding-small, 8px); + top: var(--intergalactic-spacing-content-padding-small, 8px); + width: var(--intergalactic-form-control-l, 44px); } SClose[ghost] { right: 0; @@ -47,7 +48,7 @@ SOverlayContentWrapper { flex: 1; max-width: 100%; box-sizing: border-box; - padding: var(--intergalactic-spacing-10x, 40px); + padding: var(--intergalactic-spacing-content-padding-xxlarge, 40px); } SOverlay { @@ -76,6 +77,6 @@ SOverlay { } SOverlayContentWrapper { - padding: var(--intergalactic-spacing-3x, 12px); + padding: var(--intergalactic-spacing-content-padding-medium, 12px); } } diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx index da29a764af..d3649db3bf 100644 --- a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx +++ b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx @@ -544,7 +544,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { test.describe(`${TAG.VISUAL}`, () => { test('Verify Basic notice', { tag: [TAG.PRIORITY_HIGH, '@notice-bubble'], - }, async ({ page }) => { + }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/notice-bubble/docs/examples/basic_notice.tsx', 'en', { initialAnimation: true, duration: 0, @@ -558,7 +558,9 @@ test.describe(`${TAG.VISUAL}`, () => { await locators.closeButton(page).waitFor({ state: 'visible' }); await locators.closeHint(page).waitFor({ state: 'visible' }); - await expect(page).toHaveScreenshot(); + if (browserName !== 'webkit') { + await expect(page).toHaveScreenshot(); + } await page.keyboard.press('Shift+Tab'); await locators.closeHint(page).waitFor({ state: 'hidden' }); await page.keyboard.press('Enter'); @@ -582,10 +584,15 @@ test.describe(`${TAG.VISUAL}`, () => { await locators.closeButton(page).waitFor({ state: 'visible' }); await locators.closeHint(page).waitFor({ state: 'visible' }); + await page.keyboard.press('Tab'); await page.keyboard.press('Tab'); await page.keyboard.press('Tab'); await locators.closeHint(page).waitFor({ state: 'visible' }); + await page.waitForFunction(() => { + const el = document.querySelector('[data-ui-name="Hint"]'); + return el && getComputedStyle(el).opacity === '1'; + }); await expect(page).toHaveScreenshot(); }); @@ -687,11 +694,13 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify Notice with Loading state', { tag: [TAG.PRIORITY_HIGH, '@notice-bubble'], }, async ({ page, browserName }) => { + test.setTimeout(60000); await loadPage(page, 'stories/components/notice-bubble/docs/examples/dynamic_notice.tsx', 'en', { initialAnimation: true, duration: 0, type: 'info', focusLock: false, + loadingDuration: 10000, }); await page.keyboard.press('Tab'); await page.keyboard.press('Enter'); @@ -703,7 +712,7 @@ test.describe(`${TAG.VISUAL}`, () => { await page.keyboard.press('Enter'); await page.locator('[data-ui-name="Spin"]').waitFor({ state: 'visible' }); await expect(page).toHaveScreenshot(); - await page.waitForSelector('text="Try again"'); + await page.waitForSelector('text="Try again"', { timeout: 30000 }); await page.keyboard.press('Tab'); await locators.closeHint(page).waitFor({ state: 'visible' }); await expect(page).toHaveScreenshot(); diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-chromium-linux.png index 341fd09242..a0c575c0e5 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-firefox-linux.png index 73f99f68e6..e2fc6a8618 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-webkit-linux.png index 09045f0a0b..b7b5200e82 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-2-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-2-chromium-linux.png index b3b69ac3c8..afe6c2aba2 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-2-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-2-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-2-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-2-firefox-linux.png index 84967405b4..63981b0a53 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-2-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-2-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-2-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-2-webkit-linux.png deleted file mode 100644 index 8b8bc73f0e..0000000000 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-2-webkit-linux.png and /dev/null differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-not-in-portal-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-not-in-portal-1-chromium-linux.png index 0c9c58449c..817e99f9d9 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-not-in-portal-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-not-in-portal-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-not-in-portal-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-not-in-portal-1-firefox-linux.png index 04404c88c3..4a9b89a59c 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-not-in-portal-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-not-in-portal-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-not-in-portal-1-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-not-in-portal-1-webkit-linux.png index 10d5a856ab..2d70fc1dd6 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-not-in-portal-1-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-not-in-portal-1-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Completion-state-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Completion-state-1-chromium-linux.png index a18bc9cb60..ff41a4d1fa 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Completion-state-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Completion-state-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Completion-state-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Completion-state-1-firefox-linux.png index 85f23ed225..423f202367 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Completion-state-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Completion-state-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Completion-state-1-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Completion-state-1-webkit-linux.png index 8f9ffc8579..3a1ba2c889 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Completion-state-1-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Completion-state-1-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-chromium-linux.png index 054328ae8c..ae4efc3619 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-firefox-linux.png index 2a0120b889..3628b46189 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-webkit-linux.png index 179432c99d..a8285e884d 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-1-chromium-linux.png index 7e8c176f37..fba27a154f 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-1-firefox-linux.png index 02e575c244..17aeb9ec10 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-1-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-1-webkit-linux.png index e94cf7f40a..6018a75098 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-1-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-1-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-chromium-linux.png index 1ce39466a6..43fc27f745 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-firefox-linux.png index 72a6fe507e..f931404648 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-webkit-linux.png index 1a09eabb5e..1242837d40 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-chromium-linux.png index ff104a8c45..23cb234579 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-firefox-linux.png index 8255892c78..d54d99c226 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-webkit-linux.png index 4e4a1ef3f2..980d213ed3 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Success-state-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Success-state-1-chromium-linux.png index 8bcf07094f..67e78c998a 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Success-state-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Success-state-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Success-state-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Success-state-1-firefox-linux.png index 6d3076774f..11d4caf332 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Success-state-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Success-state-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Success-state-1-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Success-state-1-webkit-linux.png index 027bdd81dd..121795fce8 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Success-state-1-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Success-state-1-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-chromium-linux.png index f54d21b224..2375c132f8 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-firefox-linux.png index d387edc182..6e538a8a14 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-webkit-linux.png index 2646caab6b..148446e890 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-chromium-linux.png index 94ac9eb299..d32605d105 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-firefox-linux.png index 30e939a173..37b7a4229f 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-webkit-linux.png index 38d2759a93..38e6b55805 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-without-interactive-element-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-without-interactive-element-1-chromium-linux.png index 8ec671da95..4ab23b7aba 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-without-interactive-element-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-without-interactive-element-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-without-interactive-element-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-without-interactive-element-1-firefox-linux.png index 1263ac8782..651372d5a9 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-without-interactive-element-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-without-interactive-element-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-without-interactive-element-1-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-without-interactive-element-1-webkit-linux.png index 4a71bae2fe..5e2dd144e4 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-without-interactive-element-1-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-without-interactive-element-1-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-1-chromium-linux.png index bde0c57845..e01ac7b831 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-1-firefox-linux.png index 1e7a330123..7e008ceae3 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-1-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-1-webkit-linux.png index c97d961f62..fdaf9fedfa 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-1-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-1-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-chromium-linux.png index b6735436e0..90589c8476 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-firefox-linux.png index c9b1f8642d..b1f781f412 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-webkit-linux.png index 0a737d2383..3c898e4e8f 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-with-illustration-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-with-illustration-1-chromium-linux.png index d8c83b8957..a41c0a398d 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-with-illustration-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-with-illustration-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-with-illustration-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-with-illustration-1-firefox-linux.png index defafe29e5..027cc2d49e 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-with-illustration-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-with-illustration-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-with-illustration-1-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-with-illustration-1-webkit-linux.png index fa7ed59f51..159c17673f 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-with-illustration-1-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-with-illustration-1-webkit-linux.png differ diff --git a/semcore/notice-bubble/src/style/notice-bubble.shadow.css b/semcore/notice-bubble/src/style/notice-bubble.shadow.css index 5eb240bc4c..409390ae3c 100644 --- a/semcore/notice-bubble/src/style/notice-bubble.shadow.css +++ b/semcore/notice-bubble/src/style/notice-bubble.shadow.css @@ -1,28 +1,28 @@ SBubble, SView { position: relative; - margin-bottom: var(--intergalactic-spacing-3x, 12px); - padding: var(--intergalactic-spacing-3x, 12px); - padding-right: calc(var(--intergalactic-spacing-8x, 32px) + var(--intergalactic-spacing-1x, 4px)); + margin-bottom: var(--intergalactic-spacing-content-gap-xlarge, 12px); + padding: var(--intergalactic-spacing-content-padding-large, 16px); + padding-right: var(--intergalactic-spacing-content-padding-xxlarge, 40px); width: 100%; border-radius: var(--intergalactic-popper-rounded, 6px); overflow: hidden; box-sizing: border-box; color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - gap: var(--intergalactic-spacing-2x, 8px); + gap: var(--intergalactic-spacing-content-gap-large, 8px); &[type='info'] { - background: var(--intergalactic-bg-primary-invert, oklch(0.23 0.01 140)); + background: var(--intergalactic-notice-bubble-bg-info, oklch(0.23 0.01 140)); } &[type='warning'] { - background: var(--intergalactic-bg-primary-critical, oklch(0.64 0.226 24.5)); + background: var(--intergalactic-notice-bubble-bg-critical, oklch(0.64 0.226 24.5)); } } SContent { flex-direction: column; - gap: var(--intergalactic-spacing-2x, 8px); + gap: var(--intergalactic-spacing-content-gap-xlarge, 12px); flex: 1; } @@ -49,12 +49,12 @@ SDismiss[use] { } SIcon { justify-content: center; - align-items: center; - height: var(--intergalactic-spacing-5x, 20px); + align-items: flex-start; + margin-top: var(--intergalactic-spacing-content-padding-xxsmall, 2px); } SNoticeBubble { - width: 300px; + width: 320px; position: fixed; right: var(--intergalactic-spacing-3x, 12px); top: var(--intergalactic-spacing-3x, 12px); @@ -71,7 +71,7 @@ SNoticeBubble[disablePortal] { } SMessage a { - color: var(--intergalactic-text-link-invert, oklch(0.75 0.125 265.3)); + color: var(--intergalactic-text-link-invert, oklch(0.999 0.001 180 / 0.949)); /* TODO: --intergalactic-text-link-primary-invert */ } SNoticeAriaLiveWrapper { diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-Feedback-notice-1-chromium-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-Feedback-notice-1-chromium-linux.png index d3218a4c8b..c14c9bf11f 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-Feedback-notice-1-chromium-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-Feedback-notice-1-chromium-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-Feedback-notice-1-firefox-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-Feedback-notice-1-firefox-linux.png index 2dbf6bbedf..098316fd5b 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-Feedback-notice-1-firefox-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-Feedback-notice-1-firefox-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-Feedback-notice-1-webkit-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-Feedback-notice-1-webkit-linux.png index 86784c4b65..622e90154b 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-Feedback-notice-1-webkit-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-Feedback-notice-1-webkit-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-1-chromium-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-1-chromium-linux.png index 9903210410..6738834c17 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-1-chromium-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-1-chromium-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-1-firefox-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-1-firefox-linux.png index 067d1c4c6d..3e6b30a60a 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-1-firefox-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-1-firefox-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-1-webkit-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-1-webkit-linux.png index e536dccb2e..bdbca5d9c4 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-1-webkit-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-1-webkit-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-2-chromium-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-2-chromium-linux.png index e68232ca07..cd4fe4fb22 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-2-chromium-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-2-chromium-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-2-firefox-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-2-firefox-linux.png index bd41694b09..5902bc7a3a 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-2-firefox-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-2-firefox-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-2-webkit-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-2-webkit-linux.png index 09a6ce3cec..4252b5dee7 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-2-webkit-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-NoticeSmart-after-mouse-and-keyboard-interactions-2-webkit-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-different-pairs-of-sub-components-1-chromium-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-different-pairs-of-sub-components-1-chromium-linux.png index d3610bd596..856b77f555 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-different-pairs-of-sub-components-1-chromium-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-different-pairs-of-sub-components-1-chromium-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-different-pairs-of-sub-components-1-firefox-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-different-pairs-of-sub-components-1-firefox-linux.png index e624e240df..a220ccc193 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-different-pairs-of-sub-components-1-firefox-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-different-pairs-of-sub-components-1-firefox-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-different-pairs-of-sub-components-1-webkit-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-different-pairs-of-sub-components-1-webkit-linux.png index b53e533e66..959a90f708 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-different-pairs-of-sub-components-1-webkit-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-different-pairs-of-sub-components-1-webkit-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-big-illustrations-1-chromium-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-big-illustrations-1-chromium-linux.png index fccf12eb29..cbf5d8b5a0 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-big-illustrations-1-chromium-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-big-illustrations-1-chromium-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-big-illustrations-1-firefox-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-big-illustrations-1-firefox-linux.png index f3940707a6..cab0b98c7d 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-big-illustrations-1-firefox-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-big-illustrations-1-firefox-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-big-illustrations-1-webkit-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-big-illustrations-1-webkit-linux.png index fb48ad90ee..0a544fcd16 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-big-illustrations-1-webkit-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-big-illustrations-1-webkit-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-medium-illustrations-1-chromium-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-medium-illustrations-1-chromium-linux.png index e7141e7c7e..a1cbe42d95 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-medium-illustrations-1-chromium-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-medium-illustrations-1-chromium-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-medium-illustrations-1-firefox-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-medium-illustrations-1-firefox-linux.png index ebad5e1cbd..d8601de955 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-medium-illustrations-1-firefox-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-medium-illustrations-1-firefox-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-medium-illustrations-1-webkit-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-medium-illustrations-1-webkit-linux.png index 834e268299..97a1fee97f 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-medium-illustrations-1-webkit-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-medium-illustrations-1-webkit-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-small-illustrations-1-chromium-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-small-illustrations-1-chromium-linux.png index dd938e2f5a..3745a5cfb0 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-small-illustrations-1-chromium-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-small-illustrations-1-chromium-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-small-illustrations-1-firefox-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-small-illustrations-1-firefox-linux.png index fa251b01b9..9b034376d7 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-small-illustrations-1-firefox-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-small-illustrations-1-firefox-linux.png differ diff --git a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-small-illustrations-1-webkit-linux.png b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-small-illustrations-1-webkit-linux.png index aa8fade05b..23afdde27e 100644 Binary files a/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-small-illustrations-1-webkit-linux.png and b/semcore/notice/__tests__/notice.browser-test.tsx-snapshots/-visual-Verify-notice-with-small-illustrations-1-webkit-linux.png differ diff --git a/semcore/notice/src/style/notice.shadow.css b/semcore/notice/src/style/notice.shadow.css index 38e1b35e4c..d905d6496e 100644 --- a/semcore/notice/src/style/notice.shadow.css +++ b/semcore/notice/src/style/notice.shadow.css @@ -12,7 +12,7 @@ SNotice { SNotice[theme='info'] { background-color: var(--intergalactic-bg-secondary-info, oklch(0.959 0.021 267.8)); - border-color: var(--intergalactic-border-info, oklch(0.51 0.274 263.6 / 0.222)); + border-color: var(--intergalactic-border-info, oklch(0.524 0.265 263 / 0.096)); & SCloseIcon { color: var(--intergalactic-icon-primary-neutral, oklch(0.092 0.024 152.2 / 0.526)); @@ -25,7 +25,7 @@ SNotice[theme='info'] { SNotice[theme='danger'] { background-color: var(--intergalactic-bg-secondary-critical, oklch(0.958 0.029 5.7)); - border-color: var(--intergalactic-border-critical, oklch(0.628 0.257 28.1 / 0.243)); + border-color: var(--intergalactic-border-critical, oklch(0.63 0.255 24.3 / 0.104)); & SCloseIcon { color: var(--intergalactic-icon-primary-critical, oklch(0.552 0.226 28.7 / 0.848)); @@ -38,7 +38,7 @@ SNotice[theme='danger'] { SNotice[theme='warning'] { background-color: var(--intergalactic-bg-secondary-warning, oklch(0.979 0.03 88.1)); - border-color: var(--intergalactic-border-warning, oklch(0.77 0.174 64.1 / 0.543)); + border-color: var(--intergalactic-border-warning, oklch(0.806 0.17 74.5 / 0.241)); & SCloseIcon { color: var(--intergalactic-icon-primary-warning, oklch(0.728 0.188 51.8)); @@ -51,7 +51,7 @@ SNotice[theme='warning'] { SNotice[theme='success'] { background-color: var(--intergalactic-bg-secondary-success, oklch(0.96 0.057 179.7)); - border-color: var(--intergalactic-border-success, oklch(0.818 0.171 165.4 / 0.531)); + border-color: var(--intergalactic-border-success, oklch(0.874 0.177 168.2 / 0.25)); & SCloseIcon { color: var(--intergalactic-icon-primary-success, oklch(0.595 0.124 165.4)); @@ -86,7 +86,7 @@ SActions { } SLabel { - min-height: var(--intergalactic-form-control-m, 28px); + min-height: var(--intergalactic-form-control-m, 32px); height: fit-content; margin-right: var(--intergalactic-spacing-2x, 8px); display: inline-flex; diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-custom-view-when-buttons-and-inputs-have-addons-1-chromium-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-custom-view-when-buttons-and-inputs-have-addons-1-chromium-linux.png index 26c6206b8d..4042e9e9f4 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-custom-view-when-buttons-and-inputs-have-addons-1-chromium-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-custom-view-when-buttons-and-inputs-have-addons-1-chromium-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-custom-view-when-buttons-and-inputs-have-addons-1-firefox-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-custom-view-when-buttons-and-inputs-have-addons-1-firefox-linux.png index ce67ed0e96..8fb0bd7fd5 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-custom-view-when-buttons-and-inputs-have-addons-1-firefox-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-custom-view-when-buttons-and-inputs-have-addons-1-firefox-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-custom-view-when-buttons-and-inputs-have-addons-1-webkit-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-custom-view-when-buttons-and-inputs-have-addons-1-webkit-linux.png index b35b71a8d3..8799b68752 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-custom-view-when-buttons-and-inputs-have-addons-1-webkit-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-custom-view-when-buttons-and-inputs-have-addons-1-webkit-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-base-states-after-Keyboard-interactions-1-chromium-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-base-states-after-Keyboard-interactions-1-chromium-linux.png index 327b8d14c5..8634a24348 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-base-states-after-Keyboard-interactions-1-chromium-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-base-states-after-Keyboard-interactions-1-chromium-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-base-states-after-Keyboard-interactions-1-firefox-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-base-states-after-Keyboard-interactions-1-firefox-linux.png index 1f50cb8e4d..393355ec05 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-base-states-after-Keyboard-interactions-1-firefox-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-base-states-after-Keyboard-interactions-1-firefox-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-base-states-after-Keyboard-interactions-1-webkit-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-base-states-after-Keyboard-interactions-1-webkit-linux.png index bb7e49462b..0edd5a419d 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-base-states-after-Keyboard-interactions-1-webkit-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-base-states-after-Keyboard-interactions-1-webkit-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-4efe4-lPages-12345600-currentPage-12345600-size-m-1-chromium-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-4efe4-lPages-12345600-currentPage-12345600-size-m-1-chromium-linux.png index 66969517a1..6c596d2482 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-4efe4-lPages-12345600-currentPage-12345600-size-m-1-chromium-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-4efe4-lPages-12345600-currentPage-12345600-size-m-1-chromium-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-4efe4-lPages-12345600-currentPage-12345600-size-m-1-firefox-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-4efe4-lPages-12345600-currentPage-12345600-size-m-1-firefox-linux.png index b23304281f..e77a170e3e 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-4efe4-lPages-12345600-currentPage-12345600-size-m-1-firefox-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-4efe4-lPages-12345600-currentPage-12345600-size-m-1-firefox-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-4efe4-lPages-12345600-currentPage-12345600-size-m-1-webkit-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-4efe4-lPages-12345600-currentPage-12345600-size-m-1-webkit-linux.png index 2c1ce5d544..575ed209d4 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-4efe4-lPages-12345600-currentPage-12345600-size-m-1-webkit-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-4efe4-lPages-12345600-currentPage-12345600-size-m-1-webkit-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-52c00--totalPages-1-currentPage-undefined-size-m-1-chromium-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-52c00--totalPages-1-currentPage-undefined-size-m-1-chromium-linux.png index d667d6f6de..fa46473af5 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-52c00--totalPages-1-currentPage-undefined-size-m-1-chromium-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-52c00--totalPages-1-currentPage-undefined-size-m-1-chromium-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-52c00--totalPages-1-currentPage-undefined-size-m-1-firefox-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-52c00--totalPages-1-currentPage-undefined-size-m-1-firefox-linux.png index 4e7367d14e..70ecd80189 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-52c00--totalPages-1-currentPage-undefined-size-m-1-firefox-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-52c00--totalPages-1-currentPage-undefined-size-m-1-firefox-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-52c00--totalPages-1-currentPage-undefined-size-m-1-webkit-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-52c00--totalPages-1-currentPage-undefined-size-m-1-webkit-linux.png index f25d9d3179..743b92f7b0 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-52c00--totalPages-1-currentPage-undefined-size-m-1-webkit-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-52c00--totalPages-1-currentPage-undefined-size-m-1-webkit-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-9f0bc--totalPages-123456-currentPage-1001-size-l-1-chromium-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-9f0bc--totalPages-123456-currentPage-1001-size-l-1-chromium-linux.png index 047d598313..fe2589b7be 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-9f0bc--totalPages-123456-currentPage-1001-size-l-1-chromium-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-9f0bc--totalPages-123456-currentPage-1001-size-l-1-chromium-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-9f0bc--totalPages-123456-currentPage-1001-size-l-1-firefox-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-9f0bc--totalPages-123456-currentPage-1001-size-l-1-firefox-linux.png index d3f043f0cb..53d0933bec 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-9f0bc--totalPages-123456-currentPage-1001-size-l-1-firefox-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-9f0bc--totalPages-123456-currentPage-1001-size-l-1-firefox-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-9f0bc--totalPages-123456-currentPage-1001-size-l-1-webkit-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-9f0bc--totalPages-123456-currentPage-1001-size-l-1-webkit-linux.png index 24710e681c..ca5cefc7ce 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-9f0bc--totalPages-123456-currentPage-1001-size-l-1-webkit-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-9f0bc--totalPages-123456-currentPage-1001-size-l-1-webkit-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-bf32d-lPages-12345600-currentPage-12345500-size-l-1-chromium-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-bf32d-lPages-12345600-currentPage-12345500-size-l-1-chromium-linux.png index f012d92d43..81947806fe 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-bf32d-lPages-12345600-currentPage-12345500-size-l-1-chromium-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-bf32d-lPages-12345600-currentPage-12345500-size-l-1-chromium-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-bf32d-lPages-12345600-currentPage-12345500-size-l-1-firefox-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-bf32d-lPages-12345600-currentPage-12345500-size-l-1-firefox-linux.png index 7b31f46dca..f7d89d41f9 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-bf32d-lPages-12345600-currentPage-12345500-size-l-1-firefox-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-bf32d-lPages-12345600-currentPage-12345500-size-l-1-firefox-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-bf32d-lPages-12345600-currentPage-12345500-size-l-1-webkit-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-bf32d-lPages-12345600-currentPage-12345500-size-l-1-webkit-linux.png index 77b72cce69..9a5cd699ae 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-bf32d-lPages-12345600-currentPage-12345500-size-l-1-webkit-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-wi-bf32d-lPages-12345600-currentPage-12345500-size-l-1-webkit-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-de-totalPages-1-currentPage-1-size-l-1-chromium-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-de-totalPages-1-currentPage-1-size-l-1-chromium-linux.png index a6a4104127..8e34ce0eaa 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-de-totalPages-1-currentPage-1-size-l-1-chromium-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-de-totalPages-1-currentPage-1-size-l-1-chromium-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-de-totalPages-1-currentPage-1-size-l-1-firefox-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-de-totalPages-1-currentPage-1-size-l-1-firefox-linux.png index 0472eaa4a3..3ccf923b46 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-de-totalPages-1-currentPage-1-size-l-1-firefox-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-de-totalPages-1-currentPage-1-size-l-1-firefox-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-de-totalPages-1-currentPage-1-size-l-1-webkit-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-de-totalPages-1-currentPage-1-size-l-1-webkit-linux.png index 9731038482..4403f00b21 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-de-totalPages-1-currentPage-1-size-l-1-webkit-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-de-totalPages-1-currentPage-1-size-l-1-webkit-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-zh-totalPages-1-currentPage-1-size-m-1-chromium-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-zh-totalPages-1-currentPage-1-size-m-1-chromium-linux.png index 7546c6a1d1..2d76ebd3df 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-zh-totalPages-1-currentPage-1-size-m-1-chromium-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-zh-totalPages-1-currentPage-1-size-m-1-chromium-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-zh-totalPages-1-currentPage-1-size-m-1-firefox-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-zh-totalPages-1-currentPage-1-size-m-1-firefox-linux.png index 02c10ea7bd..41eef755ba 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-zh-totalPages-1-currentPage-1-size-m-1-firefox-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-zh-totalPages-1-currentPage-1-size-m-1-firefox-linux.png differ diff --git a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-zh-totalPages-1-currentPage-1-size-m-1-webkit-linux.png b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-zh-totalPages-1-currentPage-1-size-m-1-webkit-linux.png index 2c41c2ccfa..b658d1e91e 100644 Binary files a/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-zh-totalPages-1-currentPage-1-size-m-1-webkit-linux.png and b/semcore/pagination/__tests__/pagination.browser-test.tsx-snapshots/-visual-Verify-pagination-number-formatting-with-locale-zh-totalPages-1-currentPage-1-size-m-1-webkit-linux.png differ diff --git a/semcore/pagination/src/Pagination.tsx b/semcore/pagination/src/Pagination.tsx index fd62ceb974..3ce28fdbfd 100644 --- a/semcore/pagination/src/Pagination.tsx +++ b/semcore/pagination/src/Pagination.tsx @@ -344,6 +344,7 @@ class TotalPages extends Component< )} diff --git a/semcore/pagination/src/style/pagination.shadow.css b/semcore/pagination/src/style/pagination.shadow.css index 1660bb7086..fc8251a637 100644 --- a/semcore/pagination/src/style/pagination.shadow.css +++ b/semcore/pagination/src/style/pagination.shadow.css @@ -4,20 +4,20 @@ SPagination { } SPagination[withGap] { - gap: var(--intergalactic-spacing-4x, 16px); + gap: var(--intergalactic-spacing-content-gap-xxlarge, 16px); &[size='l'] { - gap: var(--intergalactic-spacing-5x, 20px); + gap: var(--intergalactic-spacing-content-gap-xxlarge-extended, 20px); } } SNextPage, SPrevPage { align-self: center; - margin-left: var(--intergalactic-spacing-2x, 8px); + margin-left: var(--intergalactic-spacing-content-gap-large, 8px); &[size='l'] { - margin-left: var(--intergalactic-spacing-3x, 12px); + margin-left: var(--intergalactic-spacing-content-gap-xlarge, 12px); } } @@ -26,10 +26,10 @@ SLabel { } SLabel:not(:first-child) { - margin-left: var(--intergalactic-spacing-4x, 16px); + margin-left: var(--intergalactic-spacing-content-gap-xxlarge, 16px); &[size='300'] { - margin-left: var(--intergalactic-spacing-5x, 20px); + margin-left: var(--intergalactic-spacing-content-gap-xxlarge-extended, 20px); } } @@ -38,8 +38,8 @@ STotalPages { } STotalPagesLabel { - margin-left: var(--intergalactic-spacing-2x, 8px); - margin-right: var(--intergalactic-spacing-1x, 4px); + margin-left: var(--intergalactic-spacing-content-gap-large, 8px); + margin-right: var(--intergalactic-spacing-content-gap-small, 4px); color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); } @@ -56,11 +56,11 @@ STotalLastPages { SPageInput { max-width: 68px; - margin-left: var(--intergalactic-spacing-1x, 4px); + margin-left: var(--intergalactic-spacing-content-gap-small, 4px); } SPageInput[size='l'] { - margin-left: var(--intergalactic-spacing-2x, 8px); + margin-left: var(--intergalactic-spacing-content-gap-large, 8px); } SPageInput:focus-within SPageInputAddon { diff --git a/semcore/pills/__tests__/__snapshots__/index.test.tsx.snap b/semcore/pills/__tests__/__snapshots__/index.test.tsx.snap index c66166b7a9..5c3113985f 100644 --- a/semcore/pills/__tests__/__snapshots__/index.test.tsx.snap +++ b/semcore/pills/__tests__/__snapshots__/index.test.tsx.snap @@ -5,18 +5,31 @@ exports[`PillGroup > Verify data-ui-name 1`] = ` "children": [ { "children": [ + { + "children": [], + "uiName": "Box", + }, { "children": [ { - "children": [], - "uiName": "Pills.Item.Addon", + "children": [ + { + "children": [], + "uiName": "Pills.Item.Addon", + }, + { + "children": [], + "uiName": "Pills.Item.Text", + }, + ], + "uiName": "Pills.Item", }, { "children": [], - "uiName": "Pills.Item.Text", + "uiName": "Box", }, ], - "uiName": "Pills.Item", + "uiName": "Box", }, ], "uiName": "Pills", diff --git a/semcore/pills/__tests__/pills.browser-test.tsx b/semcore/pills/__tests__/pills.browser-test.tsx index 6363849e50..b1bf88e3a6 100644 --- a/semcore/pills/__tests__/pills.browser-test.tsx +++ b/semcore/pills/__tests__/pills.browser-test.tsx @@ -42,27 +42,10 @@ test.describe(`${TAG.VISUAL}`, () => { await test.step('Verify pills sizes styles', async () => { if ((await locators.sizeM(page).count()) > 0) { - await expect(locators.pillsItem(page).nth(0).locator('[data-ui-name="Pills.Item.Addon"]').first()).toHaveCSS('margin-left', '8px'); - await expect(locators.pillsItem(page).nth(0).locator('[data-ui-name="Pills.Item.Addon"]').nth(1)).toHaveCSS('margin-right', '8px'); - - await expect(locators.pillsItem(page).nth(0).locator('[data-ui-name="Pills.Item.Text"]')).toHaveCSS('margin-right', '8px'); - await expect(locators.pillsItem(page).nth(0).locator('[data-ui-name="Pills.Item.Text"]')).toHaveCSS('margin-left', '8px'); - - await expect(locators.pillsItemText(page).nth(1)).toHaveCSS('margin-left', '8px'); - await expect(locators.pillsItemText(page).nth(1)).toHaveCSS('margin-right', '8px'); - const count = await locators.pillsItem(page).count(); for (let i = 0; i < count; i++) await expect(locators.pillsItem(page).nth(i)).toHaveCSS('height', '28px'); } else if ((await locators.sizeL(page).count()) > 0) { - await expect(locators.pillsItem(page).nth(0).locator('[data-ui-name="Pills.Item.Addon"]').first()).toHaveCSS('margin-left', '12px'); - await expect(locators.pillsItem(page).nth(0).locator('[data-ui-name="Pills.Item.Addon"]').nth(1)).toHaveCSS('margin-right', '12px'); - - await expect(locators.pillsItem(page).nth(0).locator('[data-ui-name="Pills.Item.Text"]')).toHaveCSS('margin-right', '8px'); - await expect(locators.pillsItem(page).nth(0).locator('[data-ui-name="Pills.Item.Text"]')).toHaveCSS('margin-left', '8px'); - - await expect(locators.pillsItemText(page).nth(1)).toHaveCSS('margin-left', '12px'); - await expect(locators.pillsItemText(page).nth(1)).toHaveCSS('margin-right', '12px'); const count = await locators.pillsItem(page).count(); for (let i = 0; i < count; i++) await expect(locators.pillsItem(page).nth(i)).toHaveCSS('height', '40px'); diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-1-chromium-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-1-chromium-linux.png index 0a28d63a5a..71783c2b3b 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-1-chromium-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-1-chromium-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-1-firefox-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-1-firefox-linux.png index d281d71657..9526280334 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-1-firefox-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-1-firefox-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-1-webkit-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-1-webkit-linux.png index cbe47905e2..2d9fad439d 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-1-webkit-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-1-webkit-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-2-chromium-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-2-chromium-linux.png index 620b896392..5f1f3be168 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-2-chromium-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-2-chromium-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-2-firefox-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-2-firefox-linux.png index 899d48ac23..6d91a97aa7 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-2-firefox-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-2-firefox-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-2-webkit-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-2-webkit-linux.png index 2cb1fd80dc..d846300e4f 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-2-webkit-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-2-webkit-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-3-chromium-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-3-chromium-linux.png index 53f98fe021..0476273bfa 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-3-chromium-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-3-chromium-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-3-firefox-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-3-firefox-linux.png index a66a344908..4ff28efb35 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-3-firefox-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-3-firefox-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-3-webkit-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-3-webkit-linux.png index 0e29ea2581..3cfc5af4f5 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-3-webkit-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-l-3-webkit-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-1-chromium-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-1-chromium-linux.png index 9318ba7894..bd172fcdf3 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-1-chromium-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-1-chromium-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-1-firefox-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-1-firefox-linux.png index b73bb0c804..5bceee8a57 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-1-firefox-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-1-firefox-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-1-webkit-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-1-webkit-linux.png index eaaf714068..e27e21eb38 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-1-webkit-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-1-webkit-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-2-chromium-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-2-chromium-linux.png index 8e192018fe..a8e46225a2 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-2-chromium-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-2-chromium-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-2-firefox-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-2-firefox-linux.png index bafeb8d3b2..dd205c302f 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-2-firefox-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-2-firefox-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-2-webkit-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-2-webkit-linux.png index 9e3cce6198..8bd752ce71 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-2-webkit-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-2-webkit-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-3-chromium-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-3-chromium-linux.png index d00c76ce61..b0c27a4ba6 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-3-chromium-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-3-chromium-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-3-firefox-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-3-firefox-linux.png index 5a1d12a4f3..d931926df5 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-3-firefox-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-3-firefox-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-3-webkit-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-3-webkit-linux.png index 56c43ec9f1..d260df7dc4 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-3-webkit-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-Pills-with-different-addons-and-size-m-3-webkit-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-1-chromium-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-1-chromium-linux.png index 82ec3128f2..5b906eca15 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-1-chromium-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-1-chromium-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-1-firefox-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-1-firefox-linux.png index 592f10b1c2..ddae558e33 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-1-firefox-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-1-firefox-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-1-webkit-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-1-webkit-linux.png index c71f3e75ac..edb3f07702 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-1-webkit-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-1-webkit-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-2-chromium-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-2-chromium-linux.png index 2af0c91dd9..da235bd7f1 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-2-chromium-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-2-chromium-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-2-firefox-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-2-firefox-linux.png index aeaecf72f2..3eb4e8d993 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-2-firefox-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-2-firefox-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-2-webkit-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-2-webkit-linux.png index a32c0c4eb6..e3400fc345 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-2-webkit-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-2-webkit-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-3-chromium-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-3-chromium-linux.png index 3e63b603a5..5051d46c32 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-3-chromium-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-3-chromium-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-3-firefox-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-3-firefox-linux.png index 58faf98182..c1767778a3 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-3-firefox-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-3-firefox-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-3-webkit-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-3-webkit-linux.png index 86efb6ebd3..f3186577ef 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-3-webkit-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-custom-pills-3-webkit-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-different-amout-of-pills-1-chromium-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-different-amout-of-pills-1-chromium-linux.png index d02588e98a..99bd4dad80 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-different-amout-of-pills-1-chromium-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-different-amout-of-pills-1-chromium-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-different-amout-of-pills-1-firefox-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-different-amout-of-pills-1-firefox-linux.png index deb51fc995..789b2be8e1 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-different-amout-of-pills-1-firefox-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-different-amout-of-pills-1-firefox-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-different-amout-of-pills-1-webkit-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-different-amout-of-pills-1-webkit-linux.png index 9fec9cd3d1..c1e485d9f3 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-different-amout-of-pills-1-webkit-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-different-amout-of-pills-1-webkit-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-l-1-chromium-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-l-1-chromium-linux.png index 0dfd25d6e7..c1294f5238 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-l-1-chromium-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-l-1-chromium-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-l-1-firefox-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-l-1-firefox-linux.png index 3b655d4d44..11492f7368 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-l-1-firefox-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-l-1-firefox-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-l-1-webkit-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-l-1-webkit-linux.png index 1b21a660ff..8f30fa1a3c 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-l-1-webkit-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-l-1-webkit-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-m-1-chromium-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-m-1-chromium-linux.png index 7689540caa..d127e0ac24 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-m-1-chromium-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-m-1-chromium-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-m-1-firefox-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-m-1-firefox-linux.png index 6dbd4073bb..e0f8f604d4 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-m-1-firefox-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-m-1-firefox-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-m-1-webkit-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-m-1-webkit-linux.png index e06c766f79..061265a9f2 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-m-1-webkit-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-disabled-Pills-with-different-addons-and-size-m-1-webkit-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-counter-1-chromium-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-counter-1-chromium-linux.png index 964c20fdb7..dad95e86c5 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-counter-1-chromium-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-counter-1-chromium-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-counter-1-firefox-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-counter-1-firefox-linux.png index 16325f1ad7..6f60111ba8 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-counter-1-firefox-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-counter-1-firefox-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-counter-1-webkit-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-counter-1-webkit-linux.png index 5f02e3d959..3382ec6c6d 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-counter-1-webkit-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-counter-1-webkit-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-tab-panel-1-chromium-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-tab-panel-1-chromium-linux.png index bc4aee2d86..76e87258c6 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-tab-panel-1-chromium-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-tab-panel-1-chromium-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-tab-panel-1-firefox-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-tab-panel-1-firefox-linux.png index cb1dad54b2..876b25e626 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-tab-panel-1-firefox-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-tab-panel-1-firefox-linux.png differ diff --git a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-tab-panel-1-webkit-linux.png b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-tab-panel-1-webkit-linux.png index a667a17d7a..727e2b640e 100644 Binary files a/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-tab-panel-1-webkit-linux.png and b/semcore/pills/__tests__/pills.browser-test.tsx-snapshots/-visual-Verify-pills-with-tab-panel-1-webkit-linux.png differ diff --git a/semcore/pills/package.json b/semcore/pills/package.json index 9d1c9fe4b4..a5357d7f4b 100644 --- a/semcore/pills/package.json +++ b/semcore/pills/package.json @@ -16,6 +16,9 @@ "import": "./lib/esm/index.mjs", "require": "./lib/cjs/index.js" }, + "dependencies": { + "@semcore/typography": "^17.2.1" + }, "peerDependencies": { "@semcore/base-components": "^17.2.1" }, diff --git a/semcore/pills/src/Pills.tsx b/semcore/pills/src/Pills.tsx index 458ca5e28b..c7f1f290aa 100644 --- a/semcore/pills/src/Pills.tsx +++ b/semcore/pills/src/Pills.tsx @@ -1,15 +1,21 @@ -import { NeighborLocation, Box, useNeighborLocationDetect } from '@semcore/base-components'; +import { Box } from '@semcore/base-components'; import type { Intergalactic } from '@semcore/core'; import { createComponent, Component, sstyled, Root } from '@semcore/core'; import addonTextChildren from '@semcore/core/lib/utils/addonTextChildren'; +import canUseDOM from '@semcore/core/lib/utils/canUseDOM'; import a11yEnhance from '@semcore/core/lib/utils/enhances/a11yEnhance'; +import trottle from '@semcore/core/lib/utils/rafTrottle'; +import { Text as SemcoreText } from '@semcore/typography'; import React from 'react'; import type { NSPills } from './Pills.type'; import style from './style/pills.shadow.css'; +const TRANSITION_SLOW_THRESHOLD = 1; + +type RootProps = Intergalactic.InternalTypings.InferComponentProps; class RootPills extends Component< - Intergalactic.InternalTypings.InferComponentProps, + RootProps, typeof RootPills.enhance, NSPills.Handlers, {}, @@ -18,7 +24,7 @@ class RootPills extends Component< > { static displayName = 'Pills'; static style = style; - static defaultProps = ({ behavior }: Intergalactic.InternalTypings.InferComponentProps) => ({ + static defaultProps = ({ behavior }: RootProps) => ({ size: 'm', defaultValue: null, behavior: behavior ?? 'auto', @@ -26,6 +32,15 @@ class RootPills extends Component< itemValues: Array = []; + lastSelectedIndex: number | null = null; + currentSelectedIndex: number | null = null; + + rootRef: React.MutableRefObject = React.createRef(); + pills: Array = []; + segmentIndicatorRef: React.MutableRefObject = React.createRef(); + + ro: ResizeObserver | null = null; + static enhance = [a11yEnhance({ onNeighborChange: (neighborElement, props) => { if (neighborElement) { @@ -42,12 +57,77 @@ class RootPills extends Component< }, })] as const; + constructor(props: RootProps) { + super(props); + if (canUseDOM()) { + this.ro = new ResizeObserver(trottle(() => this.updateSegmentIndicator())); + } + } + uncontrolledProps() { return { value: null, }; } + componentDidUpdate() { + this.updateSelectedIndexes(); + this.updateSegmentIndicator(); + } + + componentDidMount() { + this.updateSegmentIndicator(); + } + + componentWillUnmount() { + this.ro?.disconnect(); + } + + updateSelectedIndexes() { + if (this.currentSelectedIndex === null) return; + if (this.currentSelectedIndex <= this.pills.length - 1) return; + + this.currentSelectedIndex = null; + this.lastSelectedIndex = null; + } + + updateSegmentIndicator() { + const indicator = this.segmentIndicatorRef?.current; + + if (!indicator) return; + + if (this.currentSelectedIndex === null) { + indicator.style.removeProperty('--global-speed'); + indicator.style.removeProperty('--global-left'); + indicator.style.removeProperty('--global-width'); + indicator.style.removeProperty('--global-height'); + + return; + }; + + const root = this.rootRef?.current; + const pill = this.pills[this.currentSelectedIndex]; + + if (!pill || !root) return; + + const pillRect = pill.getBoundingClientRect(); + const rootRect = root.getBoundingClientRect(); + + const speed = this.lastSelectedIndex === null + ? '--transition-slow' + : Math.abs(this.currentSelectedIndex - this.lastSelectedIndex) > TRANSITION_SLOW_THRESHOLD + ? '--transition-slow' + : '--transition-fast'; + const left = pillRect.left - rootRect.left; + const width = pillRect.width; + const height = pillRect.height; + + indicator.style.setProperty('--global-speed', `var(${speed})`); + indicator.style.setProperty('--global-left', `${left}px`); + indicator.style.setProperty('--global-width', `${width}px`); + indicator.style.setProperty('--global-height', `${height}px`); + } + bindHandlerClick = (value: NSPills.Pill.Props['value']) => (e: React.MouseEvent) => { this.handlers.value(value, e); }; @@ -65,6 +145,11 @@ class RootPills extends Component< this.itemValues[index] = props.value; + if (isSelected) { + this.lastSelectedIndex = this.currentSelectedIndex; + this.currentSelectedIndex = index; + } + return { index: index, size, @@ -74,12 +159,37 @@ class RootPills extends Component< tabIndex: isSelected ? 0 : -1, onClick: this.bindHandlerClick(props.value), onKeyDown: this.bindHandleKeyDown(props.value), + ref: (node: HTMLButtonElement | null) => { + const prevPill = this.pills[index]; + + if (prevPill) { + this.ro?.unobserve(prevPill); + } + + if (node === null) { + this.pills = this.pills.filter((_, pillIndex) => pillIndex !== index); + return; + }; + + this.pills[index] = node; + + this.ro?.observe(node); + }, + }; + } + + getItemTextProps() { + const { size } = this.asProps; + + return { + size: size === 'm' ? 200 : 300, }; } render() { const SPills = Root; - const { Children, styles, controlsLength, disabled, behavior, value } = this.asProps; + const SSegmentIndicator = Box; + const { Children, styles, disabled, behavior, value } = this.asProps; return sstyled(styles)( - - - + + , ); } @@ -98,8 +212,9 @@ class RootPills extends Component< function Pill(props: Intergalactic.InternalTypings.InferChildComponentProps) { const SPill = Root; - const { Children, styles, addonLeft, addonRight, selected, disabled, index, behavior } = props; - const neighborLocation = useNeighborLocationDetect(index); + const SPillContainer = Box; + const SPillSeparator = Box; + const { Children, styles, addonLeft, addonRight, selected, disabled, behavior, size } = props; const roleAreaProps = { 'role': behavior === 'auto' ? 'radio' : 'tab', @@ -108,25 +223,31 @@ function Pill(props: Intergalactic.InternalTypings.InferChildComponentProps - {addonLeft ? : null} - {addonTextChildren(Children, Pills.Item.Text, Pills.Item.Addon)} - {addonRight ? : null} - , + + + {addonLeft ? : null} + {addonTextChildren(Children, Pills.Item.Text, Pills.Item.Addon)} + {addonRight ? : null} + + + , ); } function Text(props: Intergalactic.InternalTypings.InferComponentProps) { const SText = Root; - return sstyled(props.styles)(); + return sstyled(props.styles)(); } function Addon(props: Intergalactic.InternalTypings.InferComponentProps) { diff --git a/semcore/pills/src/Pills.type.ts b/semcore/pills/src/Pills.type.ts index 0f20d32e76..a723615cd5 100644 --- a/semcore/pills/src/Pills.type.ts +++ b/semcore/pills/src/Pills.type.ts @@ -1,11 +1,12 @@ import type { NSBox, NSNeighborLocation } from '@semcore/base-components'; import type { PropGetterFn, Intergalactic } from '@semcore/core'; +import type { NSText } from '@semcore/typography'; import type React from 'react'; declare namespace NSPills { // TODO: It looks like the value isn't accurate. Revise and align it with the component's logic. type Value = string | number | boolean | null; - type Props = NSNeighborLocation.Props & NSBox.Props & { + type Props = NSBox.Props & { /** Pills size */ size?: 'l' | 'm'; /** Disabled state */ @@ -55,7 +56,7 @@ declare namespace NSPills { addonRight?: React.ElementType; }; namespace Text { - type Component = NSBox.Component; + type Component = NSText.Component; } namespace Addon { type Component = NSBox.Component; diff --git a/semcore/pills/src/style/pills.shadow.css b/semcore/pills/src/style/pills.shadow.css index e0c73a046b..11e06e683f 100644 --- a/semcore/pills/src/style/pills.shadow.css +++ b/semcore/pills/src/style/pills.shadow.css @@ -1,156 +1,163 @@ SPills { + position: relative; display: inline-flex; - align-items: center; - justify-content: center; - isolation: isolate; - border-radius: var(--intergalactic-control-rounded, 6px); + padding: var(--intergalactic-spacing-content-padding-xxsmall, 2px); + min-height: var(--intergalactic-form-control-m, 32px); + border-radius: var(--intergalactic-pills-rounded, 6px); + background: var(--intergalactic-control-pills-bg-normal, oklch(0.166 0.031 175.8 / 0.097)); + box-sizing: border-box; - SPill[selected] { - background: var(--intergalactic-control-secondary-info, oklch(0.527 0.264 262.9 / 0.039)); - border-color: var(--intergalactic-border-info-active, oklch(0.7 0.131 275.2)); - z-index: 3; - } - SPill:focus-visible, SPill[selected] { - z-index: 3; + &[size='l'] { + min-height: var(--intergalactic-form-control-l, 44px); } - SPill:hover, SPill:active { - z-index: 2; + /* + TODO: switch to anchor realisation when layout changes will be supported by FF and Safari. + As of now JS fallback is used. + */ + /* &:has(SPill[aria-checked='true'], SPill[aria-selected='true']) { + SPill[aria-checked='true'], SPill[aria-selected='true'] { + anchor-name: --active-segment; + } + } */ + + SPillContainer { + &:last-of-type { + SPillSeparator { + display: none; + } + } } + + --transition-fast: + left calc(var(--intergalactic-duration-fast, 200) * 1ms) var(--intergalactic-easings-fast, cubic-bezier(0.5, 0, 0, 1.12)), + width calc(var(--intergalactic-duration-fast, 200) * 1ms) var(--intergalactic-easings-fast, cubic-bezier(0.5, 0, 0, 1.12)), + top calc(var(--intergalactic-duration-fast, 200) * 1ms) var(--intergalactic-easings-fast, cubic-bezier(0.5, 0, 0, 1.12)), + height calc(var(--intergalactic-duration-fast, 200) * 1ms) var(--intergalactic-easings-fast, cubic-bezier(0.5, 0, 0, 1.12)); + + --transition-slow: + left calc(var(--intergalactic-duration-medium, 300) * 1ms) var(--intergalactic-easings-medium, cubic-bezier(0.5, 0, 0, 1.09)), + width calc(var(--intergalactic-duration-medium, 300) * 1ms) var(--intergalactic-easings-medium, cubic-bezier(0.5, 0, 0, 1.09)), + top calc(var(--intergalactic-duration-medium, 300) * 1ms) var(--intergalactic-easings-medium, cubic-bezier(0.5, 0, 0, 1.09)), + height calc(var(--intergalactic-duration-medium, 300) * 1ms) var(--intergalactic-easings-medium, cubic-bezier(0.5, 0, 0, 1.09)); } SPill { - display: inline-flex; - align-items: center; - justify-content: center; - line-height: normal; position: relative; - touch-action: manipulation; - white-space: nowrap; - user-select: none; - box-sizing: border-box; - padding: 0; - margin: 0; - box-shadow: none; - text-decoration: none; - -webkit-tap-highlight-color: transparent; - overflow: visible; - text-align: center; - vertical-align: middle; - font-family: inherit; + cursor: pointer; - background: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); - border: 1px solid var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); - border-radius: var(--intergalactic-control-rounded, 6px); - &::-moz-focus-inner { - border: none; - padding: 0; - } + display: inline-flex; + justify-content: center; + align-items: center; + gap: var(--intergalactic-spacing-content-gap-medium, 6px); + padding: 0 var(--intergalactic-spacing-content-padding-medium, 12px); + + border-style: solid; + border-color: transparent; + border-radius: var(--intergalactic-rounded-small, 4px); - &:active { - outline: 0; - text-decoration: none; - } + background-color: transparent; &:hover { - background: var(--intergalactic-bg-primary-neutral-hover, oklch(0.98 0.001 180)); + &[aria-checked='false'], + &[aria-selected='false'] { + &::after { + content: ''; + display: block; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border-radius: var(--intergalactic-rounded-small, 4px); + background: var(--intergalactic-control-pills-bg-hover, oklch(0.151 0.028 176.1 / 0.123)); + } + } } -} -SPill[disabled] { - cursor: default; - /* Disable link interactions */ - pointer-events: none; + &[disabled] { + cursor: default; + pointer-events: none; - &>* { - opacity: var(--intergalactic-disabled-opacity, 0.4); + &>* { + opacity: var(--intergalactic-disabled-opacity, 0.4); + } } -} - -SText { - color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); - display: inline-flex; -} -SAddon { - color: var(--intergalactic-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); - display: inline-flex; - align-items: center; - justify-content: center; -} - -SPill[size='m'] { - height: var(--intergalactic-form-control-m, 28px); - min-width: var(--intergalactic-form-control-m, 28px); - font-size: var(--intergalactic-fs-200, 14px); - - & SText { - margin-left: var(--intergalactic-spacing-2x, 8px); - margin-right: var(--intergalactic-spacing-2x, 8px); + &[size='m'] { + min-width: calc(var(--intergalactic-form-control-m, 32px) - var(--intergalactic-spacing-content-padding-xsmall, 4px)); + border-width: 2px 3px; } - & SAddon { - &:not(:only-child):first-child { - margin-left: var(--intergalactic-spacing-2x, 8px); - } - - &:not(:only-child):last-child { - margin-right: var(--intergalactic-spacing-2x, 8px); - } - - &:only-child { - margin-left: var(--intergalactic-spacing-2x, 8px); - margin-right: var(--intergalactic-spacing-2x, 8px); - } + &[size='l'] { + min-width: calc(var(--intergalactic-form-control-l, 44px) - var(--intergalactic-spacing-content-padding-xsmall, 4px)); + border-width: 3px 3px; } } -SPill[size='l'] { - height: var(--intergalactic-form-control-l, 40px); - min-width: var(--intergalactic-form-control-l, 40px); - font-size: var(--intergalactic-fs-300, 16px); - - & SText { - margin-left: var(--intergalactic-spacing-2x, 8px); - margin-right: var(--intergalactic-spacing-2x, 8px); +SPillContainer { + display: inline-flex; - &:only-child { - margin-left: var(--intergalactic-spacing-3x, 12px); - margin-right: var(--intergalactic-spacing-3x, 12px); + &:has(SPill[aria-checked='true'], SPill[aria-selected='true']) { + SPillSeparator { + background-color: transparent; } } - & SAddon { - &:not(:only-child):first-child { - margin-left: var(--intergalactic-spacing-3x, 12px); + &:has(+ SPillContainer SPill[aria-checked='true'], +SPillContainer SPill[aria-selected='true']) { + SPillSeparator { + background-color: transparent; } + } +} - &:not(:only-child):last-child { - margin-right: var(--intergalactic-spacing-3x, 12px); - } +SPillSeparator { + align-self: center; - &:only-child { - margin-left: var(--intergalactic-spacing-3x, 12px); - margin-right: var(--intergalactic-spacing-3x, 12px); - } + width: 1px; + height: calc(100% - var(--intergalactic-spacing-content-padding-xsmall-extended, 6px) * 2); + background-color: var(--intergalactic-control-pills-border, oklch(0.137 0.026 175.7 / 0.161)); + + &[size='l'] { + height: calc(100% - var(--intergalactic-spacing-content-padding-small, 8px) * 2); } } -SPill[neighborLocation='right'] { - border-top-right-radius: 0; - border-bottom-right-radius: 0; +SSegmentIndicator { + position: absolute; + + /* + TODO: switch to anchor realisation when layout changes will be supported by FF and Safari. + As of now JS fallback is used. + */ + /* position-anchor:--active-segment; */ + /*left:anchor(left);*/ + /*width:anchor-size(width);*/ + /*height:anchor-size(height);*/ + left: var(--global-left); + width: var(--global-width); + height: var(--global-height); + transition: var(--global-speed); + + background: var(--intergalactic-control-pills-bg-selected, oklch(1 0 0)); + box-shadow: var(--intergalactic-box-shadow-control-elevated, 0px 0px 1px 0px oklch(0.176 0.033 175.7 / 0.07), 0px 1px 3px 0px oklch(0.176 0.033 175.7 / 0.07)); + border-radius: var(--intergalactic-rounded-small, 4px); } -SPill[neighborLocation='both'] { - border-radius: 0; - /* disable-tokens-validator */ - margin-left: -1px; +SText { + color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); } -SPill[neighborLocation='left'] { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - /* disable-tokens-validator */ - margin-left: -1px; +SAddon { + color: var(--intergalactic-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); + display: inline-flex; + align-items: center; + justify-content: center; } + +@media (prefers-reduced-motion) { + SSegmentIndicator { + transition: none; + } +} \ No newline at end of file diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1280px-1-chromium-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1280px-1-chromium-linux.png index bfe14507f5..53d98b5127 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1280px-1-chromium-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1280px-1-chromium-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1280px-1-firefox-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1280px-1-firefox-linux.png index 6e7ec49e5f..bc89e87084 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1280px-1-firefox-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1280px-1-firefox-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1280px-1-webkit-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1280px-1-webkit-linux.png index bd6994ae11..5bb3de0b04 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1280px-1-webkit-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1280px-1-webkit-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1920px-1-chromium-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1920px-1-chromium-linux.png index 442d5e9770..a42347104b 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1920px-1-chromium-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1920px-1-chromium-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1920px-1-firefox-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1920px-1-firefox-linux.png index 7d96823725..de9b26fbe6 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1920px-1-firefox-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1920px-1-firefox-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1920px-1-webkit-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1920px-1-webkit-linux.png index 8f59fcff65..68e5d16ede 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1920px-1-webkit-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-1920px-1-webkit-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-320px-1-chromium-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-320px-1-chromium-linux.png index 994f3fd9b7..2518d05673 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-320px-1-chromium-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-320px-1-chromium-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-320px-1-firefox-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-320px-1-firefox-linux.png index 52e94b6a91..fe3f32433e 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-320px-1-firefox-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-320px-1-firefox-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-320px-1-webkit-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-320px-1-webkit-linux.png index 0fd3a7e065..45ea59f27a 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-320px-1-webkit-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-320px-1-webkit-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-768px-1-chromium-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-768px-1-chromium-linux.png index 07325dc6a9..c27ba4d19f 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-768px-1-chromium-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-768px-1-chromium-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-768px-1-firefox-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-768px-1-firefox-linux.png index 5667eb3ead..5ae8fbc41b 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-768px-1-firefox-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-768px-1-firefox-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-768px-1-webkit-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-768px-1-webkit-linux.png index 1e78ae4f10..cf638d0f1b 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-768px-1-webkit-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-base-example-looks-good-on-screen-width-768px-1-webkit-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-looks-good-when-long-long-title-1-chromium-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-looks-good-when-long-long-title-1-chromium-linux.png index 2604b7adce..ba2ac76c80 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-looks-good-when-long-long-title-1-chromium-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-looks-good-when-long-long-title-1-chromium-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-looks-good-when-long-long-title-1-firefox-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-looks-good-when-long-long-title-1-firefox-linux.png index d339ba42f4..b5ac9e7eb3 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-looks-good-when-long-long-title-1-firefox-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-looks-good-when-long-long-title-1-firefox-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-looks-good-when-long-long-title-1-webkit-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-looks-good-when-long-long-title-1-webkit-linux.png index 95fb8dfe9c..8b0a863b8b 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-looks-good-when-long-long-title-1-webkit-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-looks-good-when-long-long-title-1-webkit-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-renders-when-single-items-used-1-chromium-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-renders-when-single-items-used-1-chromium-linux.png index 3e024c1fa3..b51f712545 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-renders-when-single-items-used-1-chromium-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-renders-when-single-items-used-1-chromium-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-renders-when-single-items-used-1-firefox-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-renders-when-single-items-used-1-firefox-linux.png index cbb4758f60..bbe1081fd3 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-renders-when-single-items-used-1-firefox-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-renders-when-single-items-used-1-firefox-linux.png differ diff --git a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-renders-when-single-items-used-1-webkit-linux.png b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-renders-when-single-items-used-1-webkit-linux.png index 108f7b93db..046ed6cb95 100644 Binary files a/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-renders-when-single-items-used-1-webkit-linux.png and b/semcore/product-head/__tests__/product-head.browser-test.tsx-snapshots/-visual-Verify-renders-when-single-items-used-1-webkit-linux.png differ diff --git a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-0-size-s-theme-invert-1-chromium-linux.png b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-0-size-s-theme-invert-1-chromium-linux.png index 20ad851556..097bfaf4b9 100644 Binary files a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-0-size-s-theme-invert-1-chromium-linux.png and b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-0-size-s-theme-invert-1-chromium-linux.png differ diff --git a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-0-size-s-theme-invert-1-firefox-linux.png b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-0-size-s-theme-invert-1-firefox-linux.png index c9c45f7cbc..8ea3e78857 100644 Binary files a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-0-size-s-theme-invert-1-firefox-linux.png and b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-0-size-s-theme-invert-1-firefox-linux.png differ diff --git a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-0-size-s-theme-invert-1-webkit-linux.png b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-0-size-s-theme-invert-1-webkit-linux.png index d41db21b7e..642108d820 100644 Binary files a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-0-size-s-theme-invert-1-webkit-linux.png and b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-0-size-s-theme-invert-1-webkit-linux.png differ diff --git a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-110-size-m-theme-dark-1-chromium-linux.png b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-110-size-m-theme-dark-1-chromium-linux.png index b5ad5ad0e7..d89553a50a 100644 Binary files a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-110-size-m-theme-dark-1-chromium-linux.png and b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-110-size-m-theme-dark-1-chromium-linux.png differ diff --git a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-110-size-m-theme-dark-1-firefox-linux.png b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-110-size-m-theme-dark-1-firefox-linux.png index 10d13f5a73..f5e472b7b0 100644 Binary files a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-110-size-m-theme-dark-1-firefox-linux.png and b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-110-size-m-theme-dark-1-firefox-linux.png differ diff --git a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-110-size-m-theme-dark-1-webkit-linux.png b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-110-size-m-theme-dark-1-webkit-linux.png index 8a67c0ba51..b33b6d2c89 100644 Binary files a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-110-size-m-theme-dark-1-webkit-linux.png and b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-110-size-m-theme-dark-1-webkit-linux.png differ diff --git a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-50-size-l-theme-violet-100-1-chromium-linux.png b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-50-size-l-theme-violet-100-1-chromium-linux.png index 8e59d108c4..4628d4a09c 100644 Binary files a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-50-size-l-theme-violet-100-1-chromium-linux.png and b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-50-size-l-theme-violet-100-1-chromium-linux.png differ diff --git a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-50-size-l-theme-violet-100-1-firefox-linux.png b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-50-size-l-theme-violet-100-1-firefox-linux.png index b207becf5c..668a005040 100644 Binary files a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-50-size-l-theme-violet-100-1-firefox-linux.png and b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-50-size-l-theme-violet-100-1-firefox-linux.png differ diff --git a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-50-size-l-theme-violet-100-1-webkit-linux.png b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-50-size-l-theme-violet-100-1-webkit-linux.png index 1b26ebe2e2..952e8590f8 100644 Binary files a/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-50-size-l-theme-violet-100-1-webkit-linux.png and b/semcore/progress-bar/__tests__/progress-bar.browser-test.tsx-snapshots/-visual-Verify-progress-bar-with-background-customization-with-value-50-size-l-theme-violet-100-1-webkit-linux.png differ diff --git a/semcore/progress-bar/src/style/progress-bar.shadow.css b/semcore/progress-bar/src/style/progress-bar.shadow.css index 795ac894f6..ec68f7e777 100644 --- a/semcore/progress-bar/src/style/progress-bar.shadow.css +++ b/semcore/progress-bar/src/style/progress-bar.shadow.css @@ -2,11 +2,11 @@ SProgressBar { position: relative; width: 100%; overflow: hidden; - background-color: var(--intergalactic-progress-bar-bg, oklch(0.96 0.001 180)); + background-color: var(--intergalactic-progress-bar-bg, oklch(0.157 0.029 176 / 0.11)); } SProgressBar[theme='dark'] { - background-color: var(--intergalactic-progress-bar-bg-invert, oklch(0.45 0.004 143.7)); + background-color: var(--intergalactic-progress-bar-bg-invert, oklch(0.987 0.023 140 / 0.212)); } SValue { @@ -15,7 +15,7 @@ SValue { left: 0; background-color: var(--intergalactic-progress-bar-value-bg, oklch(1 0 0)); background-image: var(--intergalactic-progress-bar-value-gradient, - linear-gradient(-45deg, oklch(from oklch(0.74 0.17 303) calc(l - 0.05) c h) 25%, oklch(0.74 0.17 303) 0%, oklch(0.74 0.17 303) 50%, oklch(from oklch(0.74 0.17 303) calc(l - 0.05) c h) 0%, oklch(from oklch(0.74 0.17 303) calc(l - 0.05) c h) 75%, oklch(0.74 0.17 303) 0%)); + linear-gradient(-45deg, oklch(from oklch(0.22 0.01 140) l c h / 0.78) 25%, oklch(0.22 0.01 140) 0%, oklch(0.22 0.01 140) 50%, oklch(from oklch(0.22 0.01 140) l c h / 0.78) 0%, oklch(from oklch(0.22 0.01 140) l c h / 0.78) 75%, oklch(0.22 0.01 140) 0%)); overflow: hidden; animation-name: loading; @@ -57,7 +57,7 @@ SValue[size='l'] { SProgressBar[theme='invert'] { - background-color: var(--intergalactic-progress-bar-bg, oklch(0.96 0.001 180)); + background-color: var(--intergalactic-progress-bar-bg, oklch(0.157 0.029 176 / 0.11)); } @keyframes loading { @@ -73,7 +73,7 @@ SProgressBar[theme='invert'] { SProgressBar[animation] { background-color: var(--intergalactic-progress-bar-value-bg, oklch(1 0 0)); background-image: var(--intergalactic-progress-bar-pattern-gradient, - linear-gradient(-45deg, oklch(0 0 0 / 0.1) 25%, oklch(0.96 0.001 180) 0%, oklch(0.96 0.001 180) 50%, oklch(0 0 0 / 0.1) 0%, oklch(0 0 0 / 0.1) 75%, oklch(0.96 0.001 180) 0%)); + linear-gradient(-45deg, oklch(0 0 0 / 0.1) 25%, oklch(0.157 0.029 176 / 0.11) 0%, oklch(0.157 0.029 176 / 0.11) 50%, oklch(0 0 0 / 0.1) 0%, oklch(0 0 0 / 0.1) 75%, oklch(0.157 0.029 176 / 0.11) 0%)); animation-name: loading; animation-timing-function: linear; animation-iteration-count: infinite; diff --git a/semcore/radio/__tests__/radio.browser-test.tsx b/semcore/radio/__tests__/radio.browser-test.tsx index dfb9f54021..a169dc0c57 100644 --- a/semcore/radio/__tests__/radio.browser-test.tsx +++ b/semcore/radio/__tests__/radio.browser-test.tsx @@ -54,7 +54,7 @@ test.describe(`${TAG.VISUAL}`, () => { ]; variables.forEach((item) => { test(`Verify RadioGroup size ${item.size}, theme ${item.theme}, disabled ${item.disabled}`, { - tag: [TAG.PRIORITY_HIGH, '@radio'], + tag: [TAG.PRIORITY_HIGH, '@radio', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/radio/docs/examples/radiogroup_example.tsx', 'en', item); @@ -87,7 +87,7 @@ test.describe(`${TAG.VISUAL}`, () => { return { fontSize: s.fontSize, marginLeft: s.marginLeft }; }); expect(styles.fontSize).toBe('14px'); - expect(styles.marginLeft).toBe('8px'); + expect(styles.marginLeft).toBe('6px'); } }); } else { @@ -159,7 +159,7 @@ test.describe(`${TAG.VISUAL}`, () => { variables.forEach((item) => { const priority = item.disabled && item.size === 'l' ? TAG.PRIORITY_MEDIUM : TAG.PRIORITY_HIGH; test(`Verify Radio size ${item.size}, state ${item.state}, disabled ${item.disabled}, checked ${item.checked}`, { - tag: [priority, '@radio'], + tag: [priority, '@radio', '@base-components', '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/radio/tests/examples/radio-props.tsx', 'en', item); @@ -191,7 +191,7 @@ test.describe(`${TAG.VISUAL}`, () => { return { fontSize: s.fontSize, marginLeft: s.marginLeft }; }); expect(styles.fontSize).toBe('14px'); - expect(styles.marginLeft).toBe('8px'); + expect(styles.marginLeft).toBe('6px'); } }); } else { @@ -254,7 +254,7 @@ We verify states, visibility, and attributes. ===================================================== */ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify mouse interactions for radio with group', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@radio'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@radio', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/radio/docs/examples/radiogroup_example.tsx', 'en'); @@ -291,7 +291,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify keyboard interactions for radio with group', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@radio'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@radio', '@base-components', '@flex-box', '@typography'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/radio/docs/examples/radiogroup_example.tsx', 'en'); @@ -358,7 +358,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify actions when interactive element in text', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@radio'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@radio', '@base-components', '@flex-box', '@link', '@typography'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/radio/tests/examples/radiogroup_example_with_link.tsx', 'en'); @@ -482,7 +482,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify actions when interactive element in text with tooltip', { - tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, '@radio'], + tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, '@radio', '@button-link', '@link', '@tooltip', '@description-tooltip', '@typography'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/radio/tests/examples/additional_props_for_input_tooltip.tsx', 'en'); if (browserName == 'webkit') test.skip(); diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--222f8--state-invalid-disabled-false-checked-true-2-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--222f8--state-invalid-disabled-false-checked-true-2-chromium-linux.png index 1fb94dd1f1..ace2a6b942 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--222f8--state-invalid-disabled-false-checked-true-2-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--222f8--state-invalid-disabled-false-checked-true-2-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--222f8--state-invalid-disabled-false-checked-true-2-firefox-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--222f8--state-invalid-disabled-false-checked-true-2-firefox-linux.png index 23172f9d28..97aef3726e 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--222f8--state-invalid-disabled-false-checked-true-2-firefox-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--222f8--state-invalid-disabled-false-checked-true-2-firefox-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--222f8--state-invalid-disabled-false-checked-true-2-webkit-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--222f8--state-invalid-disabled-false-checked-true-2-webkit-linux.png index 6583a4514e..e7bcfd121e 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--222f8--state-invalid-disabled-false-checked-true-2-webkit-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--222f8--state-invalid-disabled-false-checked-true-2-webkit-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--29672--state-normal-disabled-false-checked-false-2-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--29672--state-normal-disabled-false-checked-false-2-chromium-linux.png index 27cc26727c..33c40d83d7 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--29672--state-normal-disabled-false-checked-false-2-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--29672--state-normal-disabled-false-checked-false-2-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--29672--state-normal-disabled-false-checked-false-2-firefox-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--29672--state-normal-disabled-false-checked-false-2-firefox-linux.png index 31500c4fe8..bfaac22031 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--29672--state-normal-disabled-false-checked-false-2-firefox-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--29672--state-normal-disabled-false-checked-false-2-firefox-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--29672--state-normal-disabled-false-checked-false-2-webkit-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--29672--state-normal-disabled-false-checked-false-2-webkit-linux.png index c8c52a35c3..9c03460edf 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--29672--state-normal-disabled-false-checked-false-2-webkit-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--29672--state-normal-disabled-false-checked-false-2-webkit-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--2d904--m-state-normal-disabled-true-checked-true-1-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--2d904--m-state-normal-disabled-true-checked-true-1-chromium-linux.png index 3c2b43935a..c217be62a1 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--2d904--m-state-normal-disabled-true-checked-true-1-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--2d904--m-state-normal-disabled-true-checked-true-1-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--2d904--m-state-normal-disabled-true-checked-true-1-firefox-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--2d904--m-state-normal-disabled-true-checked-true-1-firefox-linux.png index 12e8aa384b..4b1184b473 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--2d904--m-state-normal-disabled-true-checked-true-1-firefox-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--2d904--m-state-normal-disabled-true-checked-true-1-firefox-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--2d904--m-state-normal-disabled-true-checked-true-1-webkit-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--2d904--m-state-normal-disabled-true-checked-true-1-webkit-linux.png index 6c11ab1c88..d24a0ad152 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--2d904--m-state-normal-disabled-true-checked-true-1-webkit-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--2d904--m-state-normal-disabled-true-checked-true-1-webkit-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--44865--state-normal-disabled-false-checked-false-2-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--44865--state-normal-disabled-false-checked-false-2-chromium-linux.png index 9239e57a63..8ad3ff2c50 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--44865--state-normal-disabled-false-checked-false-2-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--44865--state-normal-disabled-false-checked-false-2-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--44865--state-normal-disabled-false-checked-false-2-firefox-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--44865--state-normal-disabled-false-checked-false-2-firefox-linux.png index b2a4a6ed86..0b67469676 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--44865--state-normal-disabled-false-checked-false-2-firefox-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--44865--state-normal-disabled-false-checked-false-2-firefox-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--44865--state-normal-disabled-false-checked-false-2-webkit-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--44865--state-normal-disabled-false-checked-false-2-webkit-linux.png index f87c1daca3..0368602612 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--44865--state-normal-disabled-false-checked-false-2-webkit-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--44865--state-normal-disabled-false-checked-false-2-webkit-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--47b3d--state-normal-disabled-false-checked-false-1-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--47b3d--state-normal-disabled-false-checked-false-1-chromium-linux.png index 7cfa9755d9..81e1d487a1 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--47b3d--state-normal-disabled-false-checked-false-1-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--47b3d--state-normal-disabled-false-checked-false-1-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--49342-l-state-normal-disabled-true-checked-false-1-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--49342-l-state-normal-disabled-true-checked-false-1-chromium-linux.png index 94088e0d66..0a4f8c5f78 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--49342-l-state-normal-disabled-true-checked-false-1-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--49342-l-state-normal-disabled-true-checked-false-1-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--9f6c2--state-invalid-disabled-false-checked-true-1-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--9f6c2--state-invalid-disabled-false-checked-true-1-chromium-linux.png index 0f37a070fd..1c3f96fa56 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--9f6c2--state-invalid-disabled-false-checked-true-1-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--9f6c2--state-invalid-disabled-false-checked-true-1-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--9f6c2--state-invalid-disabled-false-checked-true-1-firefox-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--9f6c2--state-invalid-disabled-false-checked-true-1-firefox-linux.png index fc4790bd25..6d20a28807 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--9f6c2--state-invalid-disabled-false-checked-true-1-firefox-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--9f6c2--state-invalid-disabled-false-checked-true-1-firefox-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--9f6c2--state-invalid-disabled-false-checked-true-1-webkit-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--9f6c2--state-invalid-disabled-false-checked-true-1-webkit-linux.png index 199de8824f..327e72b9cc 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--9f6c2--state-invalid-disabled-false-checked-true-1-webkit-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--9f6c2--state-invalid-disabled-false-checked-true-1-webkit-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--b4e10--state-normal-disabled-false-checked-false-1-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--b4e10--state-normal-disabled-false-checked-false-1-chromium-linux.png index 62ac9fd891..9bda777342 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--b4e10--state-normal-disabled-false-checked-false-1-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--b4e10--state-normal-disabled-false-checked-false-1-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--b4e10--state-normal-disabled-false-checked-false-1-firefox-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--b4e10--state-normal-disabled-false-checked-false-1-firefox-linux.png index 3e21fa68c4..88f850cdf8 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--b4e10--state-normal-disabled-false-checked-false-1-firefox-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--b4e10--state-normal-disabled-false-checked-false-1-firefox-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--b4e10--state-normal-disabled-false-checked-false-1-webkit-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--b4e10--state-normal-disabled-false-checked-false-1-webkit-linux.png index ab9f37be7b..601232cff5 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--b4e10--state-normal-disabled-false-checked-false-1-webkit-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--b4e10--state-normal-disabled-false-checked-false-1-webkit-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--dfc30--state-invalid-disabled-false-checked-true-2-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--dfc30--state-invalid-disabled-false-checked-true-2-chromium-linux.png index b9ca3f6dcd..5e68c5cade 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--dfc30--state-invalid-disabled-false-checked-true-2-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--dfc30--state-invalid-disabled-false-checked-true-2-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--dfc30--state-invalid-disabled-false-checked-true-2-firefox-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--dfc30--state-invalid-disabled-false-checked-true-2-firefox-linux.png index aa90166951..7e9e889a19 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--dfc30--state-invalid-disabled-false-checked-true-2-firefox-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--dfc30--state-invalid-disabled-false-checked-true-2-firefox-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--dfc30--state-invalid-disabled-false-checked-true-2-webkit-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--dfc30--state-invalid-disabled-false-checked-true-2-webkit-linux.png index bf54fa7521..3ac6efbbe0 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--dfc30--state-invalid-disabled-false-checked-true-2-webkit-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--dfc30--state-invalid-disabled-false-checked-true-2-webkit-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--eeca8--state-invalid-disabled-false-checked-true-1-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--eeca8--state-invalid-disabled-false-checked-true-1-chromium-linux.png index d1b90c8ee8..94814937c3 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--eeca8--state-invalid-disabled-false-checked-true-1-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-Radio-prop-combinations-Verify--eeca8--state-invalid-disabled-false-checked-true-1-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-275e0-Group-size-l-theme-undefined-disabled-false-1-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-275e0-Group-size-l-theme-undefined-disabled-false-1-chromium-linux.png index f45843dd31..e1c12c8af9 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-275e0-Group-size-l-theme-undefined-disabled-false-1-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-275e0-Group-size-l-theme-undefined-disabled-false-1-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-3962f-Group-size-m-theme-undefined-disabled-false-2-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-3962f-Group-size-m-theme-undefined-disabled-false-2-chromium-linux.png index 9620306774..820ee4d6d8 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-3962f-Group-size-m-theme-undefined-disabled-false-2-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-3962f-Group-size-m-theme-undefined-disabled-false-2-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-3962f-Group-size-m-theme-undefined-disabled-false-2-firefox-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-3962f-Group-size-m-theme-undefined-disabled-false-2-firefox-linux.png index 3bc808ba31..790df7c5b2 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-3962f-Group-size-m-theme-undefined-disabled-false-2-firefox-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-3962f-Group-size-m-theme-undefined-disabled-false-2-firefox-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-3962f-Group-size-m-theme-undefined-disabled-false-2-webkit-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-3962f-Group-size-m-theme-undefined-disabled-false-2-webkit-linux.png index c730aee994..eb3fbb06f3 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-3962f-Group-size-m-theme-undefined-disabled-false-2-webkit-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-3962f-Group-size-m-theme-undefined-disabled-false-2-webkit-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-426d5-Group-size-l-theme-undefined-disabled-false-2-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-426d5-Group-size-l-theme-undefined-disabled-false-2-chromium-linux.png index 2dc2efaaaa..24a43a42ee 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-426d5-Group-size-l-theme-undefined-disabled-false-2-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-426d5-Group-size-l-theme-undefined-disabled-false-2-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-57c11-Group-size-m-theme-yellow-400-disabled-true-1-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-57c11-Group-size-m-theme-yellow-400-disabled-true-1-chromium-linux.png index 7c23324004..76611696dd 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-57c11-Group-size-m-theme-yellow-400-disabled-true-1-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-57c11-Group-size-m-theme-yellow-400-disabled-true-1-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-57c11-Group-size-m-theme-yellow-400-disabled-true-1-firefox-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-57c11-Group-size-m-theme-yellow-400-disabled-true-1-firefox-linux.png index a31c0e48a0..0df1184741 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-57c11-Group-size-m-theme-yellow-400-disabled-true-1-firefox-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-57c11-Group-size-m-theme-yellow-400-disabled-true-1-firefox-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-57c11-Group-size-m-theme-yellow-400-disabled-true-1-webkit-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-57c11-Group-size-m-theme-yellow-400-disabled-true-1-webkit-linux.png index 35874f1087..a33e50e52e 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-57c11-Group-size-m-theme-yellow-400-disabled-true-1-webkit-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-57c11-Group-size-m-theme-yellow-400-disabled-true-1-webkit-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-64f06-props-size-m-theme-undefined-disabled-false-1-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-64f06-props-size-m-theme-undefined-disabled-false-1-chromium-linux.png index c95cc23346..ab8b1ccbf1 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-64f06-props-size-m-theme-undefined-disabled-false-1-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-64f06-props-size-m-theme-undefined-disabled-false-1-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-64f06-props-size-m-theme-undefined-disabled-false-1-firefox-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-64f06-props-size-m-theme-undefined-disabled-false-1-firefox-linux.png index 8536061a80..edf41ce286 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-64f06-props-size-m-theme-undefined-disabled-false-1-firefox-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-64f06-props-size-m-theme-undefined-disabled-false-1-firefox-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-64f06-props-size-m-theme-undefined-disabled-false-1-webkit-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-64f06-props-size-m-theme-undefined-disabled-false-1-webkit-linux.png index 675f7f11f8..ac9975f687 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-64f06-props-size-m-theme-undefined-disabled-false-1-webkit-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-64f06-props-size-m-theme-undefined-disabled-false-1-webkit-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-74c7d-props-size-l-theme-undefined-disabled-false-2-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-74c7d-props-size-l-theme-undefined-disabled-false-2-chromium-linux.png index 1e7528edf9..d3183b757e 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-74c7d-props-size-l-theme-undefined-disabled-false-2-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-74c7d-props-size-l-theme-undefined-disabled-false-2-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-74c7d-props-size-l-theme-undefined-disabled-false-2-firefox-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-74c7d-props-size-l-theme-undefined-disabled-false-2-firefox-linux.png index d28093bc8e..a4617fd4e4 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-74c7d-props-size-l-theme-undefined-disabled-false-2-firefox-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-74c7d-props-size-l-theme-undefined-disabled-false-2-firefox-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-74c7d-props-size-l-theme-undefined-disabled-false-2-webkit-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-74c7d-props-size-l-theme-undefined-disabled-false-2-webkit-linux.png index 101a3d336c..9d483b6d13 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-74c7d-props-size-l-theme-undefined-disabled-false-2-webkit-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-74c7d-props-size-l-theme-undefined-disabled-false-2-webkit-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-77394-Group-size-l-theme-yellow-400-disabled-true-1-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-77394-Group-size-l-theme-yellow-400-disabled-true-1-chromium-linux.png index b01b7a91b2..39b1378168 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-77394-Group-size-l-theme-yellow-400-disabled-true-1-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-77394-Group-size-l-theme-yellow-400-disabled-true-1-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-876d5-Group-size-m-theme-undefined-disabled-false-1-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-876d5-Group-size-m-theme-undefined-disabled-false-1-chromium-linux.png index ff52dc91de..801f4e9739 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-876d5-Group-size-m-theme-undefined-disabled-false-1-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-876d5-Group-size-m-theme-undefined-disabled-false-1-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-876d5-Group-size-m-theme-undefined-disabled-false-1-firefox-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-876d5-Group-size-m-theme-undefined-disabled-false-1-firefox-linux.png index 2f0bf984f2..3ca13be2e4 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-876d5-Group-size-m-theme-undefined-disabled-false-1-firefox-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-876d5-Group-size-m-theme-undefined-disabled-false-1-firefox-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-876d5-Group-size-m-theme-undefined-disabled-false-1-webkit-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-876d5-Group-size-m-theme-undefined-disabled-false-1-webkit-linux.png index d23ee9ab99..8080f353f2 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-876d5-Group-size-m-theme-undefined-disabled-false-1-webkit-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-876d5-Group-size-m-theme-undefined-disabled-false-1-webkit-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-9af92-props-size-m-theme-yellow-400-disabled-true-1-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-9af92-props-size-m-theme-yellow-400-disabled-true-1-chromium-linux.png index 5ba159ce55..bf08e020ec 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-9af92-props-size-m-theme-yellow-400-disabled-true-1-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-9af92-props-size-m-theme-yellow-400-disabled-true-1-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-9af92-props-size-m-theme-yellow-400-disabled-true-1-firefox-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-9af92-props-size-m-theme-yellow-400-disabled-true-1-firefox-linux.png index 307e53dff2..86730d250e 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-9af92-props-size-m-theme-yellow-400-disabled-true-1-firefox-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-9af92-props-size-m-theme-yellow-400-disabled-true-1-firefox-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-9af92-props-size-m-theme-yellow-400-disabled-true-1-webkit-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-9af92-props-size-m-theme-yellow-400-disabled-true-1-webkit-linux.png index 8af4feff8c..795260d101 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-9af92-props-size-m-theme-yellow-400-disabled-true-1-webkit-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-9af92-props-size-m-theme-yellow-400-disabled-true-1-webkit-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-a4d5b-props-size-m-theme-undefined-disabled-false-2-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-a4d5b-props-size-m-theme-undefined-disabled-false-2-chromium-linux.png index 6db86dfe86..2312be5e86 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-a4d5b-props-size-m-theme-undefined-disabled-false-2-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-a4d5b-props-size-m-theme-undefined-disabled-false-2-chromium-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-a4d5b-props-size-m-theme-undefined-disabled-false-2-firefox-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-a4d5b-props-size-m-theme-undefined-disabled-false-2-firefox-linux.png index 48045da264..528589fd30 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-a4d5b-props-size-m-theme-undefined-disabled-false-2-firefox-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-a4d5b-props-size-m-theme-undefined-disabled-false-2-firefox-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-a4d5b-props-size-m-theme-undefined-disabled-false-2-webkit-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-a4d5b-props-size-m-theme-undefined-disabled-false-2-webkit-linux.png index b5c79aac33..2934269e61 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-a4d5b-props-size-m-theme-undefined-disabled-false-2-webkit-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-a4d5b-props-size-m-theme-undefined-disabled-false-2-webkit-linux.png differ diff --git a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-d0f90-props-size-l-theme-undefined-disabled-false-1-chromium-linux.png b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-d0f90-props-size-l-theme-undefined-disabled-false-1-chromium-linux.png index 4cad8d5032..bcc21239e4 100644 Binary files a/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-d0f90-props-size-l-theme-undefined-disabled-false-1-chromium-linux.png and b/semcore/radio/__tests__/radio.browser-test.tsx-snapshots/-visual-Verify-RadioGroup-and-Radio-prop-combi-d0f90-props-size-l-theme-undefined-disabled-false-1-chromium-linux.png differ diff --git a/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx b/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx index 2d9a287779..abc7a4498f 100644 --- a/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx +++ b/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx @@ -46,7 +46,7 @@ Visual states, hover and focus styles, paddings, margins, and snapshots. ===================================================== */ test.describe(`${TAG.VISUAL}`, () => { test('Verify Radio and Select UX pattern', { - tag: [TAG.PRIORITY_MEDIUM, '@radio', '@select'], + tag: [TAG.PRIORITY_MEDIUM, '@radio', '@select', '@base-components', '@flex-box', '@button', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/form/docs/examples/radio-and-select.tsx', 'en'); @@ -67,7 +67,7 @@ We verify states, visibility, and attributes. ===================================================== */ test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify Radio and Select UX pattern keyboard interactions', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@radio', '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@radio', '@select', '@base-components', '@flex-box', '@button', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/form/docs/examples/radio-and-select.tsx', 'en'); @@ -104,7 +104,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { }); test('Verify Radio and Select UX pattern mouse interactions', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@radio', '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@radio', '@select', '@base-components', '@flex-box', '@button', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/form/docs/examples/radio-and-select.tsx', 'en'); diff --git a/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-1-chromium-linux.png b/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-1-chromium-linux.png index 0e91793d68..b355e36eec 100644 Binary files a/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-1-chromium-linux.png and b/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-1-chromium-linux.png differ diff --git a/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-1-firefox-linux.png b/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-1-firefox-linux.png index a858671f0b..437a9eaf82 100644 Binary files a/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-1-firefox-linux.png and b/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-1-firefox-linux.png differ diff --git a/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-1-webkit-linux.png b/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-1-webkit-linux.png index 72ebda4eb7..4e5b6327dd 100644 Binary files a/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-1-webkit-linux.png and b/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-1-webkit-linux.png differ diff --git a/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-2-chromium-linux.png b/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-2-chromium-linux.png index fad0b657f7..21667ca11b 100644 Binary files a/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-2-chromium-linux.png and b/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-2-chromium-linux.png differ diff --git a/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-2-firefox-linux.png b/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-2-firefox-linux.png index 7c374599ce..bfe7f3f9d9 100644 Binary files a/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-2-firefox-linux.png and b/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-2-firefox-linux.png differ diff --git a/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-2-webkit-linux.png b/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-2-webkit-linux.png index 99f556af79..9f597d7261 100644 Binary files a/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-2-webkit-linux.png and b/semcore/radio/__tests__/ux-patterns-with-radio/radio-and-select.browser-test.tsx-snapshots/-visual-Verify-Radio-and-Select-UX-pattern-2-webkit-linux.png differ diff --git a/semcore/radio/src/Radio.tsx b/semcore/radio/src/Radio.tsx index 026cd0fa3f..6a5d57a515 100644 --- a/semcore/radio/src/Radio.tsx +++ b/semcore/radio/src/Radio.tsx @@ -139,9 +139,10 @@ class RadioRoot extends Component + {hasChildren ? ( diff --git a/semcore/radio/src/style/radio.shadow.css b/semcore/radio/src/style/radio.shadow.css index 9147ccb8bf..d2fa5fe989 100644 --- a/semcore/radio/src/style/radio.shadow.css +++ b/semcore/radio/src/style/radio.shadow.css @@ -4,10 +4,16 @@ SRadio { cursor: pointer; SText { - margin-left: var(--intergalactic-spacing-2x, 8px); + margin-left: var(--intergalactic-spacing-content-gap-medium, 6px); color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); } + &[size='l'] { + SText { + margin-left: var(--intergalactic-spacing-content-gap-large, 8px); + } + } + SText[color] { color: var(--color); } @@ -33,7 +39,7 @@ SValue { left: 0; right: 0; bottom: 0; - background: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); + background: var(--intergalactic-control-radio-bg-normal, oklch(1 0 0)); border: 1px solid; border-radius: 50%; transition: calc(var(--intergalactic-duration-control, 200) * 1ms) all ease-in-out; @@ -51,7 +57,7 @@ SValue { width: 0; height: 0; border-radius: 50%; - background: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); + background: var(--intergalactic-control-radio-bg-normal, oklch(1 0 0)); } } @@ -83,7 +89,7 @@ SValue[size='l'] { } SValue[state='normal']::before { - border-color: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); + border-color: var(--intergalactic-control-radio-border, oklch(0.137 0.026 175.7 / 0.161)); } SValue[state='invalid']::before { @@ -106,14 +112,13 @@ SControl:checked~SValue[size='l']::after { } SControl:focus-visible+SValue[state='normal']::before { - border-color: var(--intergalactic-border-info-active, oklch(0.7 0.131 275.2)); @mixin focus-outline-mixin; } SControl:checked~SValue::before, SControl:checked:focus-visible~SValue::before { - border-color: var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); - background-color: var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); + border-color: var(--intergalactic-control-radio-bg-selected, oklch(0.23 0.01 140)); + background-color: var(--intergalactic-control-radio-bg-selected, oklch(0.23 0.01 140)); } SControl:focus-visible+SValue[state='invalid']::before { @@ -143,6 +148,6 @@ SInvalidPattern { border-radius: 50%; background-image: var(--intergalactic-border-critical-pattern, repeating-linear-gradient(315deg, oklch(0.7 0.21 23) 0, oklch(0.7 0.21 23) 1px, transparent 0, transparent 50%)); background-size: 6px 6px; - background-color: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); + background-color: var(--intergalactic-control-radio-bg-normal, oklch(1 0 0)); } } diff --git a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx index ffc9d670e4..88365d5b96 100644 --- a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx +++ b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx @@ -18,7 +18,7 @@ const locators = { ===================================================== */ test.describe(TAG.VISUAL, () => { test('Verify filter KD positions volume visual states', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input-number'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input-number', '@base-components', '@flex-box', '@base-trigger', '@filter-trigger', '@button', '@divider', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/filters/filter-custom-range/docs/examples/presets.tsx', 'en'); @@ -57,7 +57,7 @@ test.describe(TAG.VISUAL, () => { ===================================================== */ test.describe(TAG.FUNCTIONAL, () => { test('Verify filter KD positions volume keyboard navigation', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input-number'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input-number', '@base-components', '@flex-box', '@base-trigger', '@filter-trigger', '@button', '@divider', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/filters/filter-custom-range/docs/examples/presets.tsx', 'en'); @@ -185,7 +185,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify filter KD positions volume mouse navigation', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select', '@input-number'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select', '@input-number', '@base-components', '@flex-box', '@base-trigger', '@filter-trigger', '@button', '@divider', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/filters/filter-custom-range/docs/examples/presets.tsx', 'en'); diff --git a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-1-chromium-linux.png b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-1-chromium-linux.png index 5a77cca7b0..f03d74eb8d 100644 Binary files a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-1-chromium-linux.png and b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-1-firefox-linux.png b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-1-firefox-linux.png index 71021d0723..55a923b521 100644 Binary files a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-1-firefox-linux.png and b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-1-webkit-linux.png b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-1-webkit-linux.png index 94fe592cf3..3e8a42c356 100644 Binary files a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-1-webkit-linux.png and b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-2-chromium-linux.png b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-2-chromium-linux.png index d9d2b4f35b..5b5dca7202 100644 Binary files a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-2-chromium-linux.png and b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-2-chromium-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-2-firefox-linux.png b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-2-firefox-linux.png index fe368acaea..0daecc6aff 100644 Binary files a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-2-firefox-linux.png and b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-2-firefox-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-2-webkit-linux.png b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-2-webkit-linux.png index 0b5309607c..d507f5c0e3 100644 Binary files a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-2-webkit-linux.png and b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-2-webkit-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-3-chromium-linux.png b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-3-chromium-linux.png index 0ff35c47c7..5b69f0a231 100644 Binary files a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-3-chromium-linux.png and b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-3-chromium-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-3-firefox-linux.png b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-3-firefox-linux.png index 706016b5b4..2a96a06e3c 100644 Binary files a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-3-firefox-linux.png and b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-3-firefox-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-3-webkit-linux.png b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-3-webkit-linux.png index a8b92ace3d..214618d9b6 100644 Binary files a/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-3-webkit-linux.png and b/semcore/select/__tests__/filters-with-select/filter-kd-positions-volume.browser-test.tsx-snapshots/-visual-Verify-filter-KD-positions-volume-visual-states-3-webkit-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx index cd12802c2b..d4ce05e334 100644 --- a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx +++ b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx @@ -25,7 +25,7 @@ const locators = { ===================================================== */ test.describe(TAG.VISUAL, () => { test('Verify SERP features mouse interaction states', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select', '@base-components', '@flex-box', '@scroll-area', '@base-trigger', '@filter-trigger', '@button', '@button-link'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/filters/serp-features/docs/examples/serp-filter.tsx', 'en'); @@ -84,7 +84,7 @@ test.describe(TAG.VISUAL, () => { }); test('Verify SERP features keyboard interaction states', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@base-components', '@flex-box', '@scroll-area', '@base-trigger', '@filter-trigger', '@button', '@button-link'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/filters/serp-features/docs/examples/serp-filter.tsx', 'en'); @@ -147,7 +147,7 @@ test.describe(TAG.VISUAL, () => { ===================================================== */ test.describe(TAG.FUNCTIONAL, () => { test('Verify SERP features keyboard navigation', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@base-components', '@flex-box', '@scroll-area', '@base-trigger', '@filter-trigger', '@button', '@button-link'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/filters/serp-features/docs/examples/serp-filter.tsx', 'en'); diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-1-chromium-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-1-chromium-linux.png index 370c7f6495..b682d9955e 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-1-chromium-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-1-firefox-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-1-firefox-linux.png index fb255c4e77..a4c2108829 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-1-firefox-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-1-webkit-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-1-webkit-linux.png index 223633592c..581acc6b6f 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-1-webkit-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-2-chromium-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-2-chromium-linux.png index 5ac9c21e08..db69c7c9b0 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-2-chromium-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-2-chromium-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-2-firefox-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-2-firefox-linux.png index b023d6e691..8cd9c82968 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-2-firefox-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-2-firefox-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-2-webkit-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-2-webkit-linux.png index 44a754464f..6ff30517b2 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-2-webkit-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-2-webkit-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-3-chromium-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-3-chromium-linux.png index 85c9de27ff..c332a6d680 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-3-chromium-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-3-chromium-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-3-firefox-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-3-firefox-linux.png index 47be912a65..4042c4423b 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-3-firefox-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-3-firefox-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-3-webkit-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-3-webkit-linux.png index f0224ceffb..588f09fbff 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-3-webkit-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-3-webkit-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-4-chromium-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-4-chromium-linux.png index eb57f3ff52..698eb8a4c6 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-4-chromium-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-4-chromium-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-4-firefox-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-4-firefox-linux.png index 28f3bcb508..4d2dc93d4e 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-4-firefox-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-4-firefox-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-4-webkit-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-4-webkit-linux.png index e3d8db4738..69142b66dd 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-4-webkit-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-4-webkit-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-5-chromium-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-5-chromium-linux.png index 3199018b7f..06ec122c4b 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-5-chromium-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-5-chromium-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-5-firefox-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-5-firefox-linux.png index d12cda6a8e..241eb9862e 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-5-firefox-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-5-firefox-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-5-webkit-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-5-webkit-linux.png index ad02035417..aacf99320e 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-5-webkit-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-5-webkit-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-6-chromium-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-6-chromium-linux.png index e2cb11fd56..e9883491d0 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-6-chromium-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-6-chromium-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-6-firefox-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-6-firefox-linux.png index 94836eadbf..fbb27ad611 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-6-firefox-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-6-firefox-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-6-webkit-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-6-webkit-linux.png index 8268701063..744016bb21 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-6-webkit-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-keyboard-interaction-states-6-webkit-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-1-chromium-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-1-chromium-linux.png index 370c7f6495..607cc50ef5 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-1-chromium-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-1-firefox-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-1-firefox-linux.png index fb255c4e77..a4c2108829 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-1-firefox-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-1-webkit-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-1-webkit-linux.png index 223633592c..581acc6b6f 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-1-webkit-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-2-chromium-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-2-chromium-linux.png index 5ac9c21e08..cb3fdb7a97 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-2-chromium-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-2-chromium-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-2-firefox-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-2-firefox-linux.png index b023d6e691..8cd9c82968 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-2-firefox-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-2-firefox-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-2-webkit-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-2-webkit-linux.png index 44a754464f..6ff30517b2 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-2-webkit-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-2-webkit-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-3-chromium-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-3-chromium-linux.png index 36073ce25c..5c1b9c136d 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-3-chromium-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-3-chromium-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-3-firefox-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-3-firefox-linux.png index ae8096cece..bf644c2f42 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-3-firefox-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-3-firefox-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-3-webkit-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-3-webkit-linux.png index a24b26bb55..0e99dab32a 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-3-webkit-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-3-webkit-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-4-chromium-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-4-chromium-linux.png index 09e760b2e9..8cc4e0bb8a 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-4-chromium-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-4-chromium-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-4-firefox-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-4-firefox-linux.png index ea05a735ca..3dfa22257d 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-4-firefox-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-4-firefox-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-4-webkit-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-4-webkit-linux.png index d90c0d90bb..35b11c9da0 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-4-webkit-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-4-webkit-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-5-chromium-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-5-chromium-linux.png index b129d00052..a958d09ca5 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-5-chromium-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-5-chromium-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-5-firefox-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-5-firefox-linux.png index 27ee966047..02a0819c4c 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-5-firefox-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-5-firefox-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-5-webkit-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-5-webkit-linux.png index f963131582..717aa7adcf 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-5-webkit-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-5-webkit-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-6-chromium-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-6-chromium-linux.png index c23516cb24..0b0e4334b3 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-6-chromium-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-6-chromium-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-6-firefox-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-6-firefox-linux.png index db75f9c29e..cf630d0284 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-6-firefox-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-6-firefox-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-6-webkit-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-6-webkit-linux.png index 611540fa19..59487d0066 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-6-webkit-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-6-webkit-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-7-chromium-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-7-chromium-linux.png index c384d01f9d..808d8280d4 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-7-chromium-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-7-chromium-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-7-firefox-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-7-firefox-linux.png index 88dca95def..3857747b0b 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-7-firefox-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-7-firefox-linux.png differ diff --git a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-7-webkit-linux.png b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-7-webkit-linux.png index e7b00755a8..127972c7b0 100644 Binary files a/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-7-webkit-linux.png and b/semcore/select/__tests__/filters-with-select/serp-features.browser-test.tsx-snapshots/-visual-Verify-SERP-features-mouse-interaction-states-7-webkit-linux.png differ diff --git a/semcore/select/__tests__/multiselect.browser-test.tsx b/semcore/select/__tests__/multiselect.browser-test.tsx index a159796e3d..79eefee196 100644 --- a/semcore/select/__tests__/multiselect.browser-test.tsx +++ b/semcore/select/__tests__/multiselect.browser-test.tsx @@ -22,7 +22,7 @@ export const locators = { ===================================================== */ test.describe(`${TAG.VISUAL} `, () => { test('Verify multiselect selection visual state', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@multiselect'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@multiselect', '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/multiselect.tsx', 'en'); @@ -36,7 +36,7 @@ test.describe(`${TAG.VISUAL} `, () => { }); test('Verify multiselect with divider and sorting visual state', { - tag: [TAG.PRIORITY_HIGH, '@multiselect'], + tag: [TAG.PRIORITY_HIGH, '@multiselect', '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/sorting_multiselect_options.tsx', 'en'); @@ -61,7 +61,7 @@ test.describe(`${TAG.VISUAL} `, () => { }); test('Verify multiselect with render function select all visual state', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@multiselect'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@multiselect', '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/render_function.tsx', 'en'); const option = page.locator('[data-ui-name="Select.Option"][value="%all%"]'); @@ -83,7 +83,7 @@ test.describe(`${TAG.VISUAL} `, () => { }); test('Verify multiselect mouse selection visual state', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@multiselect'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@multiselect', '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/multiselect.tsx', 'en'); @@ -108,7 +108,7 @@ test.describe(`${TAG.VISUAL} `, () => { ===================================================== */ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify keyboard interactions with multiselect', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@multiselect'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@multiselect', '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/multiselect.tsx', 'en'); @@ -165,7 +165,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify mouse interactions with multiselect', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@multiselect'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@multiselect', '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/multiselect.tsx', 'en'); @@ -206,7 +206,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify multiselect with divider and sorting functionality', { - tag: [TAG.PRIORITY_HIGH, '@multiselect'], + tag: [TAG.PRIORITY_HIGH, '@multiselect', '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/sorting_multiselect_options.tsx', 'en'); @@ -238,7 +238,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify keyboard interactions with render function', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@multiselect'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@multiselect', '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/render_function.tsx', 'en'); const option = page.locator('[data-ui-name="Select.Option"][value="%all%"]'); @@ -290,7 +290,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify mouse interactions with render function', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@multiselect'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@multiselect', '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/render_function.tsx', 'en'); const option = page.locator('[data-ui-name="Select.Option"][value="%all%"]'); @@ -323,7 +323,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify keyboard interactions after mouse interactions', { - tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, TAG.MOUSE, '@multiselect'], + tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, TAG.MOUSE, '@multiselect', '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/multiselect.tsx', 'en'); diff --git a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-mouse-selection-visual-state-1-chromium-linux.png b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-mouse-selection-visual-state-1-chromium-linux.png index b556bf9d3b..b35b477e56 100644 Binary files a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-mouse-selection-visual-state-1-chromium-linux.png and b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-mouse-selection-visual-state-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-mouse-selection-visual-state-1-firefox-linux.png b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-mouse-selection-visual-state-1-firefox-linux.png index ff35fb2ff1..5b638ffd00 100644 Binary files a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-mouse-selection-visual-state-1-firefox-linux.png and b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-mouse-selection-visual-state-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-mouse-selection-visual-state-1-webkit-linux.png b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-mouse-selection-visual-state-1-webkit-linux.png index e47db13474..fb2425f1c6 100644 Binary files a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-mouse-selection-visual-state-1-webkit-linux.png and b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-mouse-selection-visual-state-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-selection-visual-state-1-chromium-linux.png b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-selection-visual-state-1-chromium-linux.png index d52a016bf6..e3e3ef4b00 100644 Binary files a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-selection-visual-state-1-chromium-linux.png and b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-selection-visual-state-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-selection-visual-state-1-firefox-linux.png b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-selection-visual-state-1-firefox-linux.png index ba6482959f..c086e33be6 100644 Binary files a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-selection-visual-state-1-firefox-linux.png and b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-selection-visual-state-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-selection-visual-state-1-webkit-linux.png b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-selection-visual-state-1-webkit-linux.png index 5f85db5ce5..2299313f26 100644 Binary files a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-selection-visual-state-1-webkit-linux.png and b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-selection-visual-state-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-divider-and-sorting-visual-state-1-chromium-linux.png b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-divider-and-sorting-visual-state-1-chromium-linux.png index 0aeccdc871..7cdc976255 100644 Binary files a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-divider-and-sorting-visual-state-1-chromium-linux.png and b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-divider-and-sorting-visual-state-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-divider-and-sorting-visual-state-1-firefox-linux.png b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-divider-and-sorting-visual-state-1-firefox-linux.png index 1bf2179292..2de2b08f49 100644 Binary files a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-divider-and-sorting-visual-state-1-firefox-linux.png and b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-divider-and-sorting-visual-state-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-divider-and-sorting-visual-state-1-webkit-linux.png b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-divider-and-sorting-visual-state-1-webkit-linux.png index f46e25f5aa..45c4b06fc3 100644 Binary files a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-divider-and-sorting-visual-state-1-webkit-linux.png and b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-divider-and-sorting-visual-state-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-render-function-select-all-visual-state-1-chromium-linux.png b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-render-function-select-all-visual-state-1-chromium-linux.png index 25c452b971..d951051784 100644 Binary files a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-render-function-select-all-visual-state-1-chromium-linux.png and b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-render-function-select-all-visual-state-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-render-function-select-all-visual-state-1-firefox-linux.png b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-render-function-select-all-visual-state-1-firefox-linux.png index bdc445277b..75e2780769 100644 Binary files a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-render-function-select-all-visual-state-1-firefox-linux.png and b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-render-function-select-all-visual-state-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-render-function-select-all-visual-state-1-webkit-linux.png b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-render-function-select-all-visual-state-1-webkit-linux.png index 8fa58d244e..1ffb858214 100644 Binary files a/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-render-function-select-all-visual-state-1-webkit-linux.png and b/semcore/select/__tests__/multiselect.browser-test.tsx-snapshots/-visual-Verify-multiselect-with-render-function-select-all-visual-state-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.axe-test.tsx b/semcore/select/__tests__/select.axe-test.tsx index bc5c9bf1d9..5dadef3fff 100644 --- a/semcore/select/__tests__/select.axe-test.tsx +++ b/semcore/select/__tests__/select.axe-test.tsx @@ -117,7 +117,7 @@ test.describe(`@select ${TAG.ACCESSIBILITY}`, () => { }); test('Menu Customization With Notice', async ({ page }) => { - await loadPage(page, 'stories/components/select/docs/examples/dropdownmenu_customization.tsx', 'en'); + await loadPage(page, 'stories/components/select/docs/examples/menu_customization.tsx', 'en'); await test.step('Default state', async () => { const violations = await getAccessibilityViolations({ page }); diff --git a/semcore/select/__tests__/select.browser-test.tsx b/semcore/select/__tests__/select.browser-test.tsx index 5a98ec3360..de440be874 100644 --- a/semcore/select/__tests__/select.browser-test.tsx +++ b/semcore/select/__tests__/select.browser-test.tsx @@ -43,7 +43,7 @@ test.describe(`${TAG.VISUAL} `, () => { pairwiseVariables.forEach((props) => { test(`Verify select basic props and addons: ${props.description}`, { - tag: [TAG.PRIORITY_HIGH, '@select', '@badge'], + tag: [TAG.PRIORITY_HIGH, '@select', '@badge', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/tests/examples/basic_props_and_trigger_addons.tsx', 'en', props); @@ -54,6 +54,10 @@ test.describe(`${TAG.VISUAL} `, () => { await locators.selectTrigger(page).click(); await locators.options(page).first().waitFor({ state: 'visible' }); + await expect(locators.menu(page)).toHaveCSS( + 'max-height', + props.size === 'l' ? '306px' : '246px', + ); await expect(page).toHaveScreenshot(); } else { await expect(page).toHaveScreenshot(); @@ -78,7 +82,7 @@ test.describe(`${TAG.VISUAL} `, () => { optionsConfigVariables.forEach((props) => { test(`Verify select options: ${props.description}`, { - tag: [TAG.PRIORITY_HIGH, '@select', '@checkbox'], + tag: [TAG.PRIORITY_HIGH, '@select', '@checkbox', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/tests/examples/options_checkbox_group_and_hint.tsx', 'en', props); @@ -117,7 +121,7 @@ test.describe(`${TAG.VISUAL} `, () => { const style = window.getComputedStyle(element, '::after'); return { width: style.width, height: style.height }; }); - expect(indicatorSize).toEqual({ width: '8px', height: '2px' }); + expect(indicatorSize).toEqual({ width: '8px', height: '1.5px' }); }); const subcomponentsConfigVariables = [ @@ -162,7 +166,7 @@ test.describe(`${TAG.VISUAL} `, () => { }); test('Verify select with Search nothing found state', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/options_filtering.tsx', 'en'); await locators.selectTrigger(page).click(); @@ -173,9 +177,9 @@ test.describe(`${TAG.VISUAL} `, () => { }); test('Verify select with notice without focusable elements', { - tag: [TAG.PRIORITY_MEDIUM, '@select'], + tag: [TAG.PRIORITY_MEDIUM, '@select', '@base-components', '@flex-box', '@notice', '@typography'], }, async ({ page }) => { - await loadPage(page, 'stories/components/select/docs/examples/dropdownmenu_customization.tsx', 'en'); + await loadPage(page, 'stories/components/select/docs/examples/menu_customization.tsx', 'en'); await locators.label(page).click(); await expect(locators.list(page)).toBeVisible(); @@ -235,7 +239,7 @@ test.describe(`${TAG.VISUAL} `, () => { for (const size of ['m', 'l'] as const) { test(`Verify nothing-found status appearance with size ${size}`, { - tag: [TAG.PRIORITY_MEDIUM, '@select'], + tag: [TAG.PRIORITY_MEDIUM, '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, statusItemStory, 'en', { size }); @@ -261,7 +265,7 @@ test.describe(`${TAG.VISUAL} `, () => { ===================================================== */ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify trigger customization mouse interactions', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select', '@base-components', '@flex-box', '@base-trigger', '@button-trigger', '@link-trigger', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/trigger_customization.tsx', 'en'); @@ -303,7 +307,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify trigger customization keyboard interactions', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@base-components', '@flex-box', '@base-trigger', '@button-trigger', '@link-trigger', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/trigger_customization.tsx', 'en'); @@ -335,7 +339,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify basic usage mouse interactions', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/basic_usage.tsx', 'en'); @@ -380,7 +384,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify basic usage keyboard interactions', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/basic_usage.tsx', 'en'); @@ -453,7 +457,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify ArrowUp reaches all enabled options when first options are disabled', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/tests/examples/options_checkbox_group_and_hint.tsx', 'en', { option1Disabled: true, @@ -515,7 +519,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify custom selected label', { - tag: [TAG.PRIORITY_MEDIUM, '@select'], + tag: [TAG.PRIORITY_MEDIUM, '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/custom_selected_label.tsx', 'en'); @@ -530,7 +534,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify Controlled Mode mouse interactions', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/controlled_and_uncontrolled_modes.tsx', 'en'); @@ -558,7 +562,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify Controlled Mode keyboard interactions', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/controlled_and_uncontrolled_modes.tsx', 'en'); @@ -598,7 +602,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify keyboard interactions when select with Search', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/options_filtering.tsx', 'en'); const inputLocaltor = await page.locator('input'); @@ -698,7 +702,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify mouse interactions when select with Search', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/options_filtering.tsx', 'en'); const inputLocaltor = await page.locator('input'); @@ -753,7 +757,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify advances filtering control custom behavior', { - tag: [TAG.PRIORITY_MEDIUM, '@select'], + tag: [TAG.PRIORITY_MEDIUM, '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/docs/examples/advanced_filtering_control.tsx', 'en'); @@ -777,7 +781,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { interactionVariables.forEach((item) => { test(`Verify select with interaction = ${item.interaction}`, { - tag: [TAG.PRIORITY_HIGH, '@select'], + tag: [TAG.PRIORITY_HIGH, '@select', '@badge', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/tests/examples/basic_props_and_trigger_addons.tsx', 'en', item); @@ -821,7 +825,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify that select could be focused programmatically', { - tag: [TAG.PRIORITY_MEDIUM, '@select'], + tag: [TAG.PRIORITY_MEDIUM, '@select', '@base-components', '@flex-box', '@button', '@tooltip', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/select/tests/examples/programmatically_focus.tsx', 'en'); await locators.button(page, 'Set focus').click(); @@ -832,7 +836,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { const statusItemStory = 'stories/components/select/tests/examples/on_change_input_search.tsx'; test('Verify screen-reader result count when options are found', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, TAG.KEYBOARD, TAG.ACCESSIBILITY, '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, TAG.KEYBOARD, TAG.ACCESSIBILITY, '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, statusItemStory, 'en'); @@ -851,7 +855,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify visible "Nothing found" when no options match', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, TAG.KEYBOARD, '@select'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, TAG.KEYBOARD, '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, statusItemStory, 'en'); @@ -870,7 +874,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify loading state text is shown', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@select'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, statusItemStory, 'en', { state: 'loading' }); @@ -884,7 +888,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify error state text is shown', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@select'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, statusItemStory, 'en', { state: 'error' }); @@ -900,7 +904,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { }); test('Verify custom children override the default status text', { - tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, TAG.KEYBOARD, '@select'], + tag: [TAG.PRIORITY_MEDIUM, TAG.MOUSE, TAG.KEYBOARD, '@select', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, statusItemStory, 'en', { customChildren: 'No fruits match your search', diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-chromium-linux.png index d85be7d131..b7905d1be8 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-firefox-linux.png index e5a54ab199..e693324b6c 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-webkit-linux.png index bca3af5fe2..ca594a3110 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-l-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-chromium-linux.png index f6566b0b8b..1a5e473c86 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-firefox-linux.png index a9266c2417..9cba9cf148 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-webkit-linux.png index a84675b4db..02e2e75a93 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-StatusItem-Verify-nothing-found-status-appearance-with-size-m-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--8cbf8-om-label-right-icon-addon-with-trigger-text-2-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--8cbf8-om-label-right-icon-addon-with-trigger-text-2-chromium-linux.png index 916dfbf792..fce6842448 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--8cbf8-om-label-right-icon-addon-with-trigger-text-2-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--8cbf8-om-label-right-icon-addon-with-trigger-text-2-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--8cbf8-om-label-right-icon-addon-with-trigger-text-2-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--8cbf8-om-label-right-icon-addon-with-trigger-text-2-firefox-linux.png index 5c71e2fb6c..8daeb5c59b 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--8cbf8-om-label-right-icon-addon-with-trigger-text-2-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--8cbf8-om-label-right-icon-addon-with-trigger-text-2-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--8cbf8-om-label-right-icon-addon-with-trigger-text-2-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--8cbf8-om-label-right-icon-addon-with-trigger-text-2-webkit-linux.png index 03ba9c9b34..1992bec782 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--8cbf8-om-label-right-icon-addon-with-trigger-text-2-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--8cbf8-om-label-right-icon-addon-with-trigger-text-2-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--9526a--invalid-state-with-label-right-badge-addon-2-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--9526a--invalid-state-with-label-right-badge-addon-2-chromium-linux.png index e818026703..45c32b9f7d 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--9526a--invalid-state-with-label-right-badge-addon-2-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--9526a--invalid-state-with-label-right-badge-addon-2-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--9526a--invalid-state-with-label-right-badge-addon-2-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--9526a--invalid-state-with-label-right-badge-addon-2-firefox-linux.png index c817fdcfee..44488b31ce 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--9526a--invalid-state-with-label-right-badge-addon-2-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--9526a--invalid-state-with-label-right-badge-addon-2-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--9526a--invalid-state-with-label-right-badge-addon-2-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--9526a--invalid-state-with-label-right-badge-addon-2-webkit-linux.png index 2f313475b1..694e694ab7 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--9526a--invalid-state-with-label-right-badge-addon-2-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--9526a--invalid-state-with-label-right-badge-addon-2-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--96589-om-label-right-icon-addon-with-trigger-text-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--96589-om-label-right-icon-addon-with-trigger-text-1-chromium-linux.png index 0edb096d3c..3e7fdf6f63 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--96589-om-label-right-icon-addon-with-trigger-text-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--96589-om-label-right-icon-addon-with-trigger-text-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--96589-om-label-right-icon-addon-with-trigger-text-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--96589-om-label-right-icon-addon-with-trigger-text-1-firefox-linux.png index 0c62cf8b58..7299a5cd9d 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--96589-om-label-right-icon-addon-with-trigger-text-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--96589-om-label-right-icon-addon-with-trigger-text-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--96589-om-label-right-icon-addon-with-trigger-text-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--96589-om-label-right-icon-addon-with-trigger-text-1-webkit-linux.png index 06c7d1c6bd..1ff9baba22 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--96589-om-label-right-icon-addon-with-trigger-text-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--96589-om-label-right-icon-addon-with-trigger-text-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--c06de--invalid-state-with-label-right-badge-addon-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--c06de--invalid-state-with-label-right-badge-addon-1-chromium-linux.png index d41184f30c..67ce814f8c 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--c06de--invalid-state-with-label-right-badge-addon-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--c06de--invalid-state-with-label-right-badge-addon-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--c06de--invalid-state-with-label-right-badge-addon-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--c06de--invalid-state-with-label-right-badge-addon-1-firefox-linux.png index 18b07625c6..9003c54093 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--c06de--invalid-state-with-label-right-badge-addon-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--c06de--invalid-state-with-label-right-badge-addon-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--c06de--invalid-state-with-label-right-badge-addon-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--c06de--invalid-state-with-label-right-badge-addon-1-webkit-linux.png index 655ec8ca38..af8f66d7a8 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--c06de--invalid-state-with-label-right-badge-addon-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons--c06de--invalid-state-with-label-right-badge-addon-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-disabled-left-badge-addon-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-disabled-left-badge-addon-1-chromium-linux.png index 95d284862f..33cc59397d 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-disabled-left-badge-addon-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-disabled-left-badge-addon-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-disabled-left-badge-addon-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-disabled-left-badge-addon-1-firefox-linux.png index 7d595e9740..f6aacff1ac 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-disabled-left-badge-addon-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-disabled-left-badge-addon-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-disabled-left-badge-addon-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-disabled-left-badge-addon-1-webkit-linux.png index b53d7f2ef2..b769506a99 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-disabled-left-badge-addon-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-disabled-left-badge-addon-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-1-chromium-linux.png index 853524fc3b..737f5a5547 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-1-firefox-linux.png index 0af53fcf43..fc6fc73c95 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-1-webkit-linux.png index 502e95b231..c87843ab13 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-2-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-2-chromium-linux.png index 21eb8d126a..7bc9123020 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-2-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-2-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-2-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-2-firefox-linux.png index 6d8b36b99b..9373ae93ea 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-2-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-2-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-2-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-2-webkit-linux.png index 8f09ae14ac..26a594f01b 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-2-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-addon-2-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-1-chromium-linux.png index 3d0c39d8d8..2bd4ca613e 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-1-firefox-linux.png index cad0ed22ab..3ebd5e80a6 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-1-webkit-linux.png index 5a7ba87b65..e6886b5f49 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-2-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-2-chromium-linux.png index f45ddf0f2e..24c8ba9715 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-2-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-2-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-2-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-2-firefox-linux.png index 38c8eef1df..ccbb0c172e 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-2-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-2-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-2-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-2-webkit-linux.png index b9e6ed6534..cf48b13814 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-2-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-L-valid-state-left-icon-right-text-addons-2-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-1-chromium-linux.png index e2b0c95d30..4689d55214 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-1-firefox-linux.png index 4e475ab21c..1de0087ff6 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-1-webkit-linux.png index 5f202bad4e..ed4ba9060c 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-2-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-2-chromium-linux.png index c240588faa..acc60ed4dd 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-2-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-2-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-2-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-2-firefox-linux.png index b041b7e4c3..20abd48784 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-2-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-2-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-2-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-2-webkit-linux.png index 3d0d2cebe9..906b0936c9 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-2-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-left-badge-addon-with-trigger-text-2-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-1-chromium-linux.png index a0baf64496..10dfd266a0 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-1-firefox-linux.png index ba899c9ef1..ccf8f0c2cd 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-1-webkit-linux.png index 31005615ef..c267e6ff9d 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-2-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-2-chromium-linux.png index bebf9f71bf..c787179358 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-2-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-2-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-2-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-2-firefox-linux.png index 4dd85a71ce..83c55e3dae 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-2-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-2-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-2-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-2-webkit-linux.png index e2492757ee..44d044b9f9 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-2-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-normal-state-with-label-2-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-1-chromium-linux.png index 308357c82b..e1700a98ec 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-1-firefox-linux.png index a48cb221f5..f34037ee61 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-1-webkit-linux.png index 96749f1456..7f429efad2 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-2-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-2-chromium-linux.png index a95509a193..43dc0fbba2 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-2-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-2-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-2-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-2-firefox-linux.png index 225b987570..80a728ef93 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-2-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-2-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-2-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-2-webkit-linux.png index 63ece7949a..4186f14b28 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-2-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-basic-props-and-addons-size-M-with-label-left-text-right-icon-addons-2-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-option3-selected-with-indeterminate-checkbox-and-group-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-option3-selected-with-indeterminate-checkbox-and-group-1-chromium-linux.png index 16f7b26565..a7118e171a 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-option3-selected-with-indeterminate-checkbox-and-group-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-option3-selected-with-indeterminate-checkbox-and-group-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-option3-selected-with-indeterminate-checkbox-and-group-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-option3-selected-with-indeterminate-checkbox-and-group-1-firefox-linux.png index 74428e3ceb..31be7cf77a 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-option3-selected-with-indeterminate-checkbox-and-group-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-option3-selected-with-indeterminate-checkbox-and-group-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-option3-selected-with-indeterminate-checkbox-and-group-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-option3-selected-with-indeterminate-checkbox-and-group-1-webkit-linux.png index 78c4ba4a46..1c7c84aa9b 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-option3-selected-with-indeterminate-checkbox-and-group-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-option3-selected-with-indeterminate-checkbox-and-group-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-all-disabled-with-checkboxes-and-group-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-all-disabled-with-checkboxes-and-group-1-chromium-linux.png index b01764ec48..67cb0e696f 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-all-disabled-with-checkboxes-and-group-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-all-disabled-with-checkboxes-and-group-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-all-disabled-with-checkboxes-and-group-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-all-disabled-with-checkboxes-and-group-1-firefox-linux.png index fd49abfb8a..e656616fcc 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-all-disabled-with-checkboxes-and-group-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-all-disabled-with-checkboxes-and-group-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-all-disabled-with-checkboxes-and-group-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-all-disabled-with-checkboxes-and-group-1-webkit-linux.png index e56b39bf28..2a83923643 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-all-disabled-with-checkboxes-and-group-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-all-disabled-with-checkboxes-and-group-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-option3-indeterminate-checkbox-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-option3-indeterminate-checkbox-1-chromium-linux.png index 29377953d6..e202e8cee0 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-option3-indeterminate-checkbox-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-option3-indeterminate-checkbox-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-option3-indeterminate-checkbox-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-option3-indeterminate-checkbox-1-firefox-linux.png index 51f2171b2b..06318bc8bf 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-option3-indeterminate-checkbox-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-option3-indeterminate-checkbox-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-option3-indeterminate-checkbox-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-option3-indeterminate-checkbox-1-webkit-linux.png index b7480c3873..eb0f8a1f88 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-option3-indeterminate-checkbox-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-valid-state-option3-indeterminate-checkbox-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-with-group-and-custom-subtitle-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-with-group-and-custom-subtitle-1-chromium-linux.png index 3c80b3eba0..625bc95655 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-with-group-and-custom-subtitle-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-with-group-and-custom-subtitle-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-with-group-and-custom-subtitle-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-with-group-and-custom-subtitle-1-firefox-linux.png index 6fd003d975..42b9b3b57c 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-with-group-and-custom-subtitle-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-with-group-and-custom-subtitle-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-with-group-and-custom-subtitle-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-with-group-and-custom-subtitle-1-webkit-linux.png index c148fd88a0..7d29519527 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-with-group-and-custom-subtitle-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-L-with-group-and-custom-subtitle-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-33183-l-option1-and-option2-selected-with-checkbox-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-33183-l-option1-and-option2-selected-with-checkbox-1-chromium-linux.png index 7649356174..df03e3560b 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-33183-l-option1-and-option2-selected-with-checkbox-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-33183-l-option1-and-option2-selected-with-checkbox-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-33183-l-option1-and-option2-selected-with-checkbox-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-33183-l-option1-and-option2-selected-with-checkbox-1-firefox-linux.png index d267497e37..6ee12de000 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-33183-l-option1-and-option2-selected-with-checkbox-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-33183-l-option1-and-option2-selected-with-checkbox-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-33183-l-option1-and-option2-selected-with-checkbox-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-33183-l-option1-and-option2-selected-with-checkbox-1-webkit-linux.png index f86bd0911e..6b0b8d3a5b 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-33183-l-option1-and-option2-selected-with-checkbox-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-33183-l-option1-and-option2-selected-with-checkbox-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-f85fe-th-label-options-with-checkboxes-with-group-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-f85fe-th-label-options-with-checkboxes-with-group-1-chromium-linux.png index fb46e9b0e2..109cd3ebe8 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-f85fe-th-label-options-with-checkboxes-with-group-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-f85fe-th-label-options-with-checkboxes-with-group-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-f85fe-th-label-options-with-checkboxes-with-group-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-f85fe-th-label-options-with-checkboxes-with-group-1-firefox-linux.png index 2415c3f08d..e8ddac8886 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-f85fe-th-label-options-with-checkboxes-with-group-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-f85fe-th-label-options-with-checkboxes-with-group-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-f85fe-th-label-options-with-checkboxes-with-group-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-f85fe-th-label-options-with-checkboxes-with-group-1-webkit-linux.png index 618c5027e0..26fe93ff9c 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-f85fe-th-label-options-with-checkboxes-with-group-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-invali-f85fe-th-label-options-with-checkboxes-with-group-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-option2-checkbox-option3-no-checkbox-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-option2-checkbox-option3-no-checkbox-1-chromium-linux.png index 5fe4d7b1af..7d7c74f028 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-option2-checkbox-option3-no-checkbox-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-option2-checkbox-option3-no-checkbox-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-option2-checkbox-option3-no-checkbox-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-option2-checkbox-option3-no-checkbox-1-firefox-linux.png index e6f39338a5..ee9a7c2613 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-option2-checkbox-option3-no-checkbox-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-option2-checkbox-option3-no-checkbox-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-option2-checkbox-option3-no-checkbox-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-option2-checkbox-option3-no-checkbox-1-webkit-linux.png index 1421380dd7..788c991fa7 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-option2-checkbox-option3-no-checkbox-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-option2-checkbox-option3-no-checkbox-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-with-label-option1-disabled-options-with-checkboxes-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-with-label-option1-disabled-options-with-checkboxes-1-chromium-linux.png index ecd0912833..d3c34d115a 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-with-label-option1-disabled-options-with-checkboxes-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-with-label-option1-disabled-options-with-checkboxes-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-with-label-option1-disabled-options-with-checkboxes-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-with-label-option1-disabled-options-with-checkboxes-1-firefox-linux.png index 6c3be9508d..f700401325 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-with-label-option1-disabled-options-with-checkboxes-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-with-label-option1-disabled-options-with-checkboxes-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-with-label-option1-disabled-options-with-checkboxes-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-with-label-option1-disabled-options-with-checkboxes-1-webkit-linux.png index 1a1887f0c7..4cdac6670c 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-with-label-option1-disabled-options-with-checkboxes-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-options-size-M-with-label-option1-disabled-options-with-checkboxes-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-disabled-list-L-with-search-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-disabled-list-L-with-search-1-chromium-linux.png index b385d623dc..c74f222c99 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-disabled-list-L-with-search-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-disabled-list-L-with-search-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-disabled-list-L-with-search-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-disabled-list-L-with-search-1-firefox-linux.png index d733faeaa9..4d3195beb9 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-disabled-list-L-with-search-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-disabled-list-L-with-search-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-disabled-list-L-with-search-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-disabled-list-L-with-search-1-webkit-linux.png index 3fe4c9ee70..5b766a6a0c 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-disabled-list-L-with-search-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-disabled-list-L-with-search-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-loading-list-L-no-search-10-options-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-loading-list-L-no-search-10-options-1-chromium-linux.png index 59b2795459..8cefdd3d8f 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-loading-list-L-no-search-10-options-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-loading-list-L-no-search-10-options-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-loading-list-L-no-search-10-options-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-loading-list-L-no-search-10-options-1-firefox-linux.png index ca598f6ea3..5307d07ad2 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-loading-list-L-no-search-10-options-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-loading-list-L-no-search-10-options-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-loading-list-L-no-search-10-options-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-loading-list-L-no-search-10-options-1-webkit-linux.png index 298edbe669..7b1a63ddf3 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-loading-list-L-no-search-10-options-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-loading-list-L-no-search-10-options-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-L-with-search-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-L-with-search-1-chromium-linux.png index e1270bed8b..da73a2f223 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-L-with-search-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-L-with-search-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-L-with-search-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-L-with-search-1-firefox-linux.png index 35b1835056..e275e30b7b 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-L-with-search-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-L-with-search-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-L-with-search-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-L-with-search-1-webkit-linux.png index df2cbe2283..99729c0885 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-L-with-search-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-L-with-search-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-M-maxH-300-no-search-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-M-maxH-300-no-search-1-chromium-linux.png index 41637e5c1e..b93ea15580 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-M-maxH-300-no-search-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-M-maxH-300-no-search-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-M-maxH-300-no-search-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-M-maxH-300-no-search-1-firefox-linux.png index 1cbdc1c75a..9e0a936968 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-M-maxH-300-no-search-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-M-maxH-300-no-search-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-M-maxH-300-no-search-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-M-maxH-300-no-search-1-webkit-linux.png index ebb12618ec..4c7866ab63 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-M-maxH-300-no-search-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-L-valid-list-M-maxH-300-no-search-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-list-M-search-with-custom-placeholder-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-list-M-search-with-custom-placeholder-1-chromium-linux.png index 471f206552..412372accb 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-list-M-search-with-custom-placeholder-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-list-M-search-with-custom-placeholder-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-list-M-search-with-custom-placeholder-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-list-M-search-with-custom-placeholder-1-firefox-linux.png index 4ec2437cff..1a81e5a728 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-list-M-search-with-custom-placeholder-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-list-M-search-with-custom-placeholder-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-list-M-search-with-custom-placeholder-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-list-M-search-with-custom-placeholder-1-webkit-linux.png index 9a53f51e18..8613184bff 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-list-M-search-with-custom-placeholder-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-list-M-search-with-custom-placeholder-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-loading-list-M-no-search-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-loading-list-M-no-search-1-chromium-linux.png index 6ae4055841..fcd514da6a 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-loading-list-M-no-search-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-loading-list-M-no-search-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-loading-list-M-no-search-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-loading-list-M-no-search-1-firefox-linux.png index 11ccb101a0..36748fa0ed 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-loading-list-M-no-search-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-loading-list-M-no-search-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-loading-list-M-no-search-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-loading-list-M-no-search-1-webkit-linux.png index 578bae74e3..c5190893f4 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-loading-list-M-no-search-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-invalid-loading-list-M-no-search-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-list-L-maxH-150-with-search-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-list-L-maxH-150-with-search-1-chromium-linux.png index 9a7c90719c..5ea55d4f99 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-list-L-maxH-150-with-search-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-list-L-maxH-150-with-search-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-list-L-maxH-150-with-search-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-list-L-maxH-150-with-search-1-firefox-linux.png index 5da817897c..4c612e86c9 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-list-L-maxH-150-with-search-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-list-L-maxH-150-with-search-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-list-L-maxH-150-with-search-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-list-L-maxH-150-with-search-1-webkit-linux.png index 6d49e573b7..299a180d0b 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-list-L-maxH-150-with-search-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-list-L-maxH-150-with-search-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-normal-list-M-no-search-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-normal-list-M-no-search-1-chromium-linux.png index b50acb2dc2..4e1051685e 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-normal-list-M-no-search-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-normal-list-M-no-search-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-normal-list-M-no-search-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-normal-list-M-no-search-1-firefox-linux.png index c0e814e735..1f12f86638 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-normal-list-M-no-search-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-normal-list-M-no-search-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-normal-list-M-no-search-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-normal-list-M-no-search-1-webkit-linux.png index 7466674373..de8af5de36 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-normal-list-M-no-search-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-subcomponents-trigger-M-normal-list-M-no-search-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-Search-nothing-found-state-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-Search-nothing-found-state-1-chromium-linux.png index a96565d46d..85fcf8b7d6 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-Search-nothing-found-state-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-Search-nothing-found-state-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-Search-nothing-found-state-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-Search-nothing-found-state-1-firefox-linux.png index ed068766df..f564cc66c6 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-Search-nothing-found-state-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-Search-nothing-found-state-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-Search-nothing-found-state-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-Search-nothing-found-state-1-webkit-linux.png index 56fde4b5df..86dfa23902 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-Search-nothing-found-state-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-Search-nothing-found-state-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-notice-without-focusable-elements-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-notice-without-focusable-elements-1-chromium-linux.png index 99168f40fc..1dd3c4c03e 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-notice-without-focusable-elements-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-notice-without-focusable-elements-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-notice-without-focusable-elements-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-notice-without-focusable-elements-1-firefox-linux.png index 8fdc8af848..9bc48348b6 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-notice-without-focusable-elements-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-notice-without-focusable-elements-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-notice-without-focusable-elements-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-notice-without-focusable-elements-1-webkit-linux.png index 6130b4d705..4e36102bc9 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-notice-without-focusable-elements-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-select-with-notice-without-focusable-elements-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-keyboard-scroll-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-keyboard-scroll-1-chromium-linux.png index 4b3e2b117d..2ed718ea71 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-keyboard-scroll-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-keyboard-scroll-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-keyboard-scroll-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-keyboard-scroll-1-firefox-linux.png index a6246e3d38..ccdfac29c0 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-keyboard-scroll-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-keyboard-scroll-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-keyboard-scroll-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-keyboard-scroll-1-webkit-linux.png index ccae0f6e0f..6a5b68b045 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-keyboard-scroll-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-keyboard-scroll-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-mouse-scroll-1-chromium-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-mouse-scroll-1-chromium-linux.png index cc71154174..2599533580 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-mouse-scroll-1-chromium-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-mouse-scroll-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-mouse-scroll-1-firefox-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-mouse-scroll-1-firefox-linux.png index 22e561c0e2..f30702cf9c 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-mouse-scroll-1-firefox-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-mouse-scroll-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-mouse-scroll-1-webkit-linux.png b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-mouse-scroll-1-webkit-linux.png index 4087b06616..10c6aa651f 100644 Binary files a/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-mouse-scroll-1-webkit-linux.png and b/semcore/select/__tests__/select.browser-test.tsx-snapshots/-visual-Verify-sticky-groups-mouse-scroll-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx index cc548853b7..0225da4300 100644 --- a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx +++ b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx @@ -51,7 +51,7 @@ const expectOptionsToMatch = async (page: Page, query: string) => { ===================================================== */ test.describe(TAG.VISUAL, () => { test('Verify AutoSuggest keyboard navigation states', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, examplePath, 'en'); @@ -77,7 +77,7 @@ test.describe(TAG.VISUAL, () => { (['m', 'l'] as const).forEach((size) => { test(`Verify AutoSuggest async loading visual state — size ${size}`, { - tag: [TAG.PRIORITY_MEDIUM, '@select', '@input'], + tag: [TAG.PRIORITY_MEDIUM, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, examplePath, 'en', { size, suggestionsSource: 'async', asyncDelay: 3000 }); @@ -114,7 +114,7 @@ test.describe(TAG.FUNCTIONAL, () => { const asyncDelay = 500; test(`Verify AutoSuggest flow — ${suggestionsSource}, ${hasPlaceholder ? 'with' : 'without'} statusItemPlaceholder`, { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, examplePath, 'en', { suggestionsSource, statusItemPlaceholder, asyncDelay }); @@ -231,7 +231,7 @@ test.describe(TAG.FUNCTIONAL, () => { const optionName = 'british'; // matches only "British Shorthair" test(`Verify AutoSuggest keeps suggestions hidden after selection/Escape — ${suggestionsSource}, ${hasPlaceholder ? 'with' : 'without'} statusItemPlaceholder`, { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, TAG.MOUSE, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, TAG.MOUSE, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, examplePath, 'en', { suggestionsSource, statusItemPlaceholder, asyncDelay }); @@ -349,7 +349,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest filters suggestions incrementally as characters are typed', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, examplePath, 'en'); @@ -370,7 +370,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest autoFocus focuses the input and opens matches options when some value pre defined', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, examplePath, 'en', { autoFocus: true, initialValue: 'p' }); @@ -380,7 +380,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest defaultValue mode initializes the input and opens matches on focus', { - tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, examplePath, 'en', { valueMode: 'defaultValue', initialValue: 'p', autoFocus: true }); @@ -390,7 +390,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest focus states', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await test.step('Verify matching prefilled value opens options on focus', async () => { await loadPage(page, examplePath, 'en', { initialValue: 'p' }); @@ -407,7 +407,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest mouse selection sets the value and editing reopens suggestions', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, examplePath, 'en'); @@ -437,7 +437,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest accepts regexp-like characters in query', { - tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, examplePath, 'en'); @@ -451,7 +451,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest ignores stale async results', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, examplePath, 'en', { suggestionsSource: 'async', asyncDelay: 700 }); @@ -467,7 +467,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest highlight preserves the original case of the option', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, examplePath, 'en'); @@ -483,7 +483,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest renders HTML in option text as plain text', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { const dialogs: string[] = []; page.on('dialog', async (dialog) => { @@ -514,7 +514,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest accepts a matching regexp-like option without crashing', { - tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, examplePath, 'en'); @@ -526,7 +526,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest arrow navigation moves sequentially in an open list', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, examplePath, 'en'); @@ -543,7 +543,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest arrows reopen the list after Escape and highlight the first/last option', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, examplePath, 'en'); @@ -575,7 +575,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest readOnly prevents typing and opening suggestions', { - tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_MEDIUM, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, examplePath, 'en', { readOnly: true }); @@ -593,7 +593,7 @@ test.describe(TAG.FUNCTIONAL, () => { const compositionInput = (page: Page) => page.getByLabel('Your pet breed'); test('Verify AutoSuggest renders via explicit compound subcomponents', { - tag: [TAG.PRIORITY_HIGH, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, compositionPath, 'en'); @@ -606,7 +606,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest custom StartTypingState renders its own content', { - tag: [TAG.PRIORITY_HIGH, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, compositionPath, 'en', { customStartTyping: true }); @@ -616,7 +616,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest custom SuggestionItem overrides the option rendering', { - tag: [TAG.PRIORITY_HIGH, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, compositionPath, 'en', { customSuggestionItem: true }); @@ -630,7 +630,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest popper width and max-height are configurable', { - tag: [TAG.PRIORITY_MEDIUM, '@select', '@input'], + tag: [TAG.PRIORITY_MEDIUM, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, compositionPath, 'en', { width: 320, popperWidth: 420, popperMaxHeight: 120 }); @@ -647,7 +647,7 @@ test.describe(TAG.FUNCTIONAL, () => { }); test('Verify AutoSuggest custom LoadingState renders its own content', { - tag: [TAG.PRIORITY_MEDIUM, '@select', '@input'], + tag: [TAG.PRIORITY_MEDIUM, '@select', '@input', '@base-components', '@flex-box', '@typography', '@spin'], }, async ({ page }) => { await loadPage(page, compositionPath, 'en', { suggestionsSource: 'async', diff --git a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-arrow-highlight-chromium-linux.png b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-arrow-highlight-chromium-linux.png index fdfe8d4e65..f148e9c05a 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-arrow-highlight-chromium-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-arrow-highlight-chromium-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-arrow-highlight-firefox-linux.png b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-arrow-highlight-firefox-linux.png index 6567465484..e2be831229 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-arrow-highlight-firefox-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-arrow-highlight-firefox-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-arrow-highlight-webkit-linux.png b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-arrow-highlight-webkit-linux.png index 732d452ce9..f9b9cd6974 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-arrow-highlight-webkit-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-arrow-highlight-webkit-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-focus-status-placeholder-chromium-linux.png b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-focus-status-placeholder-chromium-linux.png index 7af73dc83c..b53180ffae 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-focus-status-placeholder-chromium-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-focus-status-placeholder-chromium-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-focus-status-placeholder-firefox-linux.png b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-focus-status-placeholder-firefox-linux.png index 5a00d7732f..afaf4f17d0 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-focus-status-placeholder-firefox-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-focus-status-placeholder-firefox-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-focus-status-placeholder-webkit-linux.png b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-focus-status-placeholder-webkit-linux.png index e7b3e04013..afeae86001 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-focus-status-placeholder-webkit-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-focus-status-placeholder-webkit-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-l-chromium-linux.png b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-l-chromium-linux.png index cdcd3df226..b856a15006 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-l-chromium-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-l-chromium-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-l-firefox-linux.png b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-l-firefox-linux.png index 6faed0b359..31fa0cf84e 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-l-firefox-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-l-firefox-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-l-webkit-linux.png b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-l-webkit-linux.png index ba6c87f955..231e1d8177 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-l-webkit-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-l-webkit-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-m-chromium-linux.png b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-m-chromium-linux.png index a30cf53a2c..c2584d7b9c 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-m-chromium-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-m-chromium-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-m-firefox-linux.png b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-m-firefox-linux.png index f7a4c40e90..f4c37604d4 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-m-firefox-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-m-firefox-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-m-webkit-linux.png b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-m-webkit-linux.png index 1cc072730b..17813edcfd 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-m-webkit-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-loading-state-size-m-webkit-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-typed-options-chromium-linux.png b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-typed-options-chromium-linux.png index e32731711e..0d3ea9ad19 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-typed-options-chromium-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-typed-options-chromium-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-typed-options-firefox-linux.png b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-typed-options-firefox-linux.png index 3edbb725ab..46d67b87f8 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-typed-options-firefox-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-typed-options-firefox-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-typed-options-webkit-linux.png b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-typed-options-webkit-linux.png index bd2b3a55cb..0f80ad3726 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-typed-options-webkit-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/auto-suggest.browser-test.tsx-snapshots/autosuggest-typed-options-webkit-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx index d8099157b8..988a266d3c 100644 --- a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx +++ b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx @@ -14,7 +14,7 @@ const locators = { ===================================================== */ test.describe(TAG.VISUAL, () => { test('Verify Combobox menu opened state', { - tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/auto-suggest/docs/examples/combobox_example.tsx', 'en'); @@ -26,7 +26,7 @@ test.describe(TAG.VISUAL, () => { }); test('Verify Combobox with typed value', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/auto-suggest/docs/examples/combobox_example.tsx', 'en'); @@ -39,7 +39,7 @@ test.describe(TAG.VISUAL, () => { }); test('Verify Combobox arrows navigation state', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/auto-suggest/docs/examples/combobox_example.tsx', 'en'); @@ -63,7 +63,7 @@ test.describe(TAG.VISUAL, () => { ===================================================== */ test.describe(TAG.FUNCTIONAL, () => { test('Verify Combobox keyboard navigation', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/auto-suggest/docs/examples/combobox_example.tsx', 'en'); diff --git a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-arrows-navigation-state-1-chromium-linux.png b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-arrows-navigation-state-1-chromium-linux.png index d307bf89cd..1a08b42171 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-arrows-navigation-state-1-chromium-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-arrows-navigation-state-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-arrows-navigation-state-1-firefox-linux.png b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-arrows-navigation-state-1-firefox-linux.png index 34406b822b..7a9973e44c 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-arrows-navigation-state-1-firefox-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-arrows-navigation-state-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-arrows-navigation-state-1-webkit-linux.png b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-arrows-navigation-state-1-webkit-linux.png index 3e0d30d8bc..93dca9e710 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-arrows-navigation-state-1-webkit-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-arrows-navigation-state-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-menu-opened-state-1-chromium-linux.png b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-menu-opened-state-1-chromium-linux.png index d1a6b17ee5..16dee8fc1c 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-menu-opened-state-1-chromium-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-menu-opened-state-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-menu-opened-state-1-firefox-linux.png b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-menu-opened-state-1-firefox-linux.png index 65b133a489..4d03dd35a3 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-menu-opened-state-1-firefox-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-menu-opened-state-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-menu-opened-state-1-webkit-linux.png b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-menu-opened-state-1-webkit-linux.png index 64e2f6a657..a84dbc3b8e 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-menu-opened-state-1-webkit-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-menu-opened-state-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-with-typed-value-1-chromium-linux.png b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-with-typed-value-1-chromium-linux.png index 8dbc8e5f19..7768a24fdf 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-with-typed-value-1-chromium-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-with-typed-value-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-with-typed-value-1-firefox-linux.png b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-with-typed-value-1-firefox-linux.png index f69f017c20..347a1dd1fb 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-with-typed-value-1-firefox-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-with-typed-value-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-with-typed-value-1-webkit-linux.png b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-with-typed-value-1-webkit-linux.png index 8727cb6d56..5efb6cd79d 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-with-typed-value-1-webkit-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/combobox.browser-test.tsx-snapshots/-visual-Verify-Combobox-with-typed-value-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx b/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx index 7edee154ac..d3615b5e22 100644 --- a/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx +++ b/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx @@ -16,7 +16,7 @@ const locators = { ===================================================== */ test.describe(TAG.VISUAL, () => { test('Verify Input Phone keyboard interaction', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@button-link', '@input-mask', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/input-phone/docs/examples/known_country_and_number_format.tsx', 'en'); @@ -43,7 +43,7 @@ test.describe(TAG.VISUAL, () => { ===================================================== */ test.describe(TAG.FUNCTIONAL, () => { test('Verify Input Phone Functionality', { - tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input'], + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@select', '@input', '@base-components', '@flex-box', '@button-link', '@input-mask', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/input-phone/docs/examples/known_country_and_number_format.tsx', 'en'); diff --git a/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-1-chromium-linux.png b/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-1-chromium-linux.png index 0198937c20..591558a976 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-1-chromium-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-1-chromium-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-1-firefox-linux.png b/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-1-firefox-linux.png index 763fe3f1ea..4d6cae63dd 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-1-firefox-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-1-firefox-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-1-webkit-linux.png b/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-1-webkit-linux.png index f98f9c0301..99fc42a999 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-1-webkit-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-1-webkit-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-2-chromium-linux.png b/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-2-chromium-linux.png index 43061e0f88..fdcf837b6c 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-2-chromium-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-2-chromium-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-2-firefox-linux.png b/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-2-firefox-linux.png index 0915144b9b..9ddc19604c 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-2-firefox-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-2-firefox-linux.png differ diff --git a/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-2-webkit-linux.png b/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-2-webkit-linux.png index 637da426eb..f974cf8f0d 100644 Binary files a/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-2-webkit-linux.png and b/semcore/select/__tests__/ux-patterns-with-select/input-phone.browser-test.tsx-snapshots/-visual-Verify-Input-Phone-keyboard-interaction-2-webkit-linux.png differ diff --git a/semcore/select/src/Select.jsx b/semcore/select/src/Select.jsx index 0eddb1fdb6..08475cea93 100644 --- a/semcore/select/src/Select.jsx +++ b/semcore/select/src/Select.jsx @@ -509,6 +509,7 @@ const Select = createComponent( Divider, InputSearch: [InputSearchWrapper, InputSearch._______childrenComponents], Input: [InputSearchWrapper, InputSearch._______childrenComponents], + Notice: Dropdown.Notice, }, { parent: DropdownMenu, context: selectContext }, ); diff --git a/semcore/select/src/index.d.ts b/semcore/select/src/index.d.ts index ff2ba94744..154460e1bc 100644 --- a/semcore/select/src/index.d.ts +++ b/semcore/select/src/index.d.ts @@ -3,7 +3,7 @@ import type { ButtonTrigger, BaseTriggerProps, ButtonTriggerProps, LinkTriggerPr import type { PropGetterFn, Intergalactic } from '@semcore/core'; import type Divider from '@semcore/divider'; import type Dropdown from '@semcore/dropdown'; -import type { StatusItemComponent } from '@semcore/dropdown'; +import type { StatusItemComponent, DropdownNoticeComponent } from '@semcore/dropdown'; import type { DropdownMenuContext, DropdownMenuItemProps, @@ -162,6 +162,7 @@ declare const Select: IntergalacticSelectComponent & { Divider: typeof Divider; InputSearch: typeof InputSearch; Input: typeof InputSearch; + Notice: DropdownNoticeComponent; }; declare const wrapSelect: ( diff --git a/semcore/select/src/style/input-search.shadow.css b/semcore/select/src/style/input-search.shadow.css index 14db18dac4..b232edcb91 100644 --- a/semcore/select/src/style/input-search.shadow.css +++ b/semcore/select/src/style/input-search.shadow.css @@ -1,9 +1,7 @@ -SInputSearch[size='m'] { - height: 32px; -} - SSearchClear { - padding: 0 var(--intergalactic-spacing-2x, 8px); + padding: 0 var(--intergalactic-spacing-05x, 2px); + margin-left: var(--intergalactic-spacing-05x, 2px); + margin-right: var(--intergalactic-spacing-content-gap-medium, 6px); } SSearchClear[hide] { diff --git a/semcore/select/src/style/select.shadow.css b/semcore/select/src/style/select.shadow.css index acc81137c6..60ba9b7dfb 100644 --- a/semcore/select/src/style/select.shadow.css +++ b/semcore/select/src/style/select.shadow.css @@ -1,6 +1,6 @@ SOptionCheckbox { margin-top: var(--intergalactic-spacing-05x, 2px); - margin-right: var(--intergalactic-spacing-2x, 8px); + margin-right: var(--intergalactic-spacing-content-gap-medium, 6px); margin-bottom: auto; position: relative; flex-shrink: 0; @@ -12,10 +12,9 @@ SOptionCheckbox { left: 0; right: 0; bottom: 0; - background: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); - border: 1px solid; + background: var(--intergalactic-control-checkbox-bg-normal, oklch(1 0 0)); + border: 1px solid var(--intergalactic-control-checkbox-border, oklch(0.137 0.026 175.7 / 0.161)); border-radius: var(--intergalactic-addon-rounded, 4px); - border-color: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); } width: 16px; @@ -35,26 +34,27 @@ SOptionCheckbox::after { } SOptionCheckbox[selected]::after { - background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEwIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik04LjI1IDFMNCA1LjI1TDEuNzUgMyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg=='); + background-image: var(--intergalactic-assets-checkmark-m, url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMiAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAuMzEwNyAyLjE2NzkxTDQuNjQ2NDUgNy44MzIxMkwxLjY4OTM0IDQuODc1MDEiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZT0id2hpdGUiLz48L3N2Zz4=")); } SOptionCheckbox[size='l'] { width: 20px; height: 20px; + margin-right: var(--intergalactic-spacing-content-gap-large, 8px); } SOptionCheckbox[size='l'][selected]::after { - background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDEyIDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMSAxLjVMNC43NSA3Ljc1TDEgNCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg=='); + background-image: var(--intergalactic-assets-checkmark-l, url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxNCAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTIuNCAyLjQ1MjIxTDUuMzA0NCA5LjU0NzgyTDEuNjAwMDEgNS44NDM0MyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==")); } SOptionCheckbox[selected]:before { - background-color: var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); - border-color: var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); + background-color: var(--intergalactic-control-checkbox-bg-selected, oklch(0.23 0.01 140)); + border-color: var(--intergalactic-control-checkbox-bg-selected, oklch(0.23 0.01 140)); } SOptionCheckbox[indeterminate]:before { - background-color: var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); - border-color: var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); + background-color: var(--intergalactic-control-checkbox-bg-selected, oklch(0.23 0.01 140)); + border-color: var(--intergalactic-control-checkbox-bg-selected, oklch(0.23 0.01 140)); } SOptionCheckbox[theme]:before { @@ -76,7 +76,7 @@ SOptionCheckbox[selected] { } SOptionCheckbox[indeterminate]:after { - background-color: #ffffff; + background-color: var(--intergalactic-control-checkbox-checkmark, oklch(1 0 0)); background-image: none; margin: auto; /* disable-tokens-validator */ @@ -84,11 +84,13 @@ SOptionCheckbox[indeterminate]:after { } SOptionCheckbox[indeterminate][size='l']:after { - width: 12px; - height: 2px; + width: var(--intergalactic-spacing-3x, 12px); + /* disable-tokens-validator */ + height: 1.5px; /* TODO: --intergalactic-icon-stroke-width (?) */ } SOptionCheckbox[indeterminate][size='m']:after { - width: 8px; - height: 2px; + width: var(--intergalactic-spacing-2x, 8px); + /* disable-tokens-validator */ + height: 1.5px; /* TODO: --intergalactic-icon-stroke-width (?) */ } diff --git a/semcore/side-panel/__tests__/__snapshots__/index.test.tsx.snap b/semcore/side-panel/__tests__/__snapshots__/index.test.tsx.snap index 67cb1fce74..2c318e5635 100644 --- a/semcore/side-panel/__tests__/__snapshots__/index.test.tsx.snap +++ b/semcore/side-panel/__tests__/__snapshots__/index.test.tsx.snap @@ -32,8 +32,13 @@ exports[`SidePanel > Verify data-ui-name 1`] = ` "uiName": "Link.Addon", }, { - "children": [], - "uiName": "ButtonLink.Text", + "children": [ + { + "children": [], + "uiName": "ButtonLink.Text", + }, + ], + "uiName": "Link.Text", }, ], "uiName": "SidePanel.Back.InnerWrapper", diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx b/semcore/side-panel/__tests__/side-panel.browser-test.tsx index 85389be01a..afdba841b6 100644 --- a/semcore/side-panel/__tests__/side-panel.browser-test.tsx +++ b/semcore/side-panel/__tests__/side-panel.browser-test.tsx @@ -182,20 +182,35 @@ test.describe(`${TAG.VISUAL} `, () => { '@ellipsis', '@tooltip'], }, async ({ page }) => { - await loadPage(page, 'stories/components/side-panel/tests/examples/side-panel-additional-states.tsx', 'en', { ellipsisTitle: true, withTooltipInBody: true, withFooter: true }); + const titleText = 'Heading 6, 16px Heading 6, 16px'; + + await loadPage(page, 'stories/components/side-panel/tests/examples/side-panel-additional-states.tsx', 'en', { + ellipsisTitle: true, + withTooltipInBody: true, + withFooter: true, + animationsDisabled: true, + }); await page.keyboard.press('Tab'); await page.keyboard.press('Enter'); await expect(locators.button(page, 'Close')).toBeFocused(); - await locators.hint(page).waitFor({ state: 'visible' }); + await locators.hint(page).filter({ hasText: 'Close' }).waitFor({ state: 'visible' }); - const title = page.locator('h6[data-ui-name="SidePanel.Title"]'); - const box = await title.boundingBox(); + const title = locators.title(page); + await expect(title).toHaveText(titleText); + await expect.poll(async () => { + return title.evaluate((el) => el.scrollWidth > el.clientWidth); + }).toBe(true); - if (box) { - await page.mouse.move(box.x + box.width / 2, box.y + box.height / 2); - } - await locators.hint(page).nth(1).waitFor({ state: 'visible' }); + await title.hover(); + await locators.hint(page).filter({ hasText: titleText }).waitFor({ state: 'visible' }); + await page.waitForFunction((expectedText) => { + const titleHint = Array.from(document.querySelectorAll('[data-ui-name="Hint"]')) + .find((hint) => hint.textContent?.includes(expectedText)); + + return titleHint && getComputedStyle(titleHint).opacity === '1'; + }, titleText); + await expect(locators.hint(page)).toHaveCount(2); await expect(page).toHaveScreenshot({ maxDiffPixelRatio: 0.01 }); }); diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-bottom-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-bottom-1-chromium-linux.png index 06798df904..9e1d7f1268 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-bottom-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-bottom-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-bottom-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-bottom-1-firefox-linux.png index 432ef9ab7a..7444e062ea 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-bottom-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-bottom-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-bottom-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-bottom-1-webkit-linux.png index c0dce6e46f..14c4d6c86c 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-bottom-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-bottom-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-left-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-left-1-chromium-linux.png index 106ab632ec..1ce508b97e 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-left-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-left-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-left-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-left-1-firefox-linux.png index 98cad679db..94b4a4557c 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-left-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-left-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-left-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-left-1-webkit-linux.png index c9ed429b8a..49d1575830 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-left-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-left-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-right-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-right-1-chromium-linux.png index 3fc6c77ffc..c9ece42d7e 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-right-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-right-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-right-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-right-1-firefox-linux.png index 0a0bfff636..bea9d35a0e 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-right-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-right-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-right-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-right-1-webkit-linux.png index 0dafb7f125..3e88249c8e 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-right-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-right-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-top-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-top-1-chromium-linux.png index 5f225c0953..a1a5ebf9ea 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-top-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-top-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-top-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-top-1-firefox-linux.png index 59d2afdfb4..b2a653b5d0 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-top-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-top-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-top-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-top-1-webkit-linux.png index 85346237ef..97a2ab2d95 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-top-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Base-example-looks-good-in-each-placement-top-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-looks-good-when-SidePanel-Close-and-closable-true-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-looks-good-when-SidePanel-Close-and-closable-true-1-chromium-linux.png index abed6a16ae..d7a7ad1aab 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-looks-good-when-SidePanel-Close-and-closable-true-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-looks-good-when-SidePanel-Close-and-closable-true-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-looks-good-when-SidePanel-Close-and-closable-true-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-looks-good-when-SidePanel-Close-and-closable-true-1-firefox-linux.png index ea175f9bca..46baf4524e 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-looks-good-when-SidePanel-Close-and-closable-true-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-looks-good-when-SidePanel-Close-and-closable-true-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-looks-good-when-SidePanel-Close-and-closable-true-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-looks-good-when-SidePanel-Close-and-closable-true-1-webkit-linux.png index 7ffb1636b2..4832e9961b 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-looks-good-when-SidePanel-Close-and-closable-true-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-looks-good-when-SidePanel-Close-and-closable-true-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-shown-when-SidePanel-Close-and-closable-false-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-shown-when-SidePanel-Close-and-closable-false-1-chromium-linux.png index abed6a16ae..911b8cf2d0 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-shown-when-SidePanel-Close-and-closable-false-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-shown-when-SidePanel-Close-and-closable-false-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-shown-when-SidePanel-Close-and-closable-false-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-shown-when-SidePanel-Close-and-closable-false-1-firefox-linux.png index ea175f9bca..46baf4524e 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-shown-when-SidePanel-Close-and-closable-false-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-shown-when-SidePanel-Close-and-closable-false-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-shown-when-SidePanel-Close-and-closable-false-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-shown-when-SidePanel-Close-and-closable-false-1-webkit-linux.png index 8d7f2aeab3..4832e9961b 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-shown-when-SidePanel-Close-and-closable-false-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Close-button-shown-when-SidePanel-Close-and-closable-false-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-bottom-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-bottom-1-chromium-linux.png index 769ecd1130..cc5370615d 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-bottom-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-bottom-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-bottom-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-bottom-1-firefox-linux.png index da551ab806..3508f421da 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-bottom-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-bottom-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-bottom-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-bottom-1-webkit-linux.png index 8d2f8ea1b3..998f5641d7 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-bottom-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-bottom-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-left-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-left-1-chromium-linux.png index 48f6908171..ac813ff6bd 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-left-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-left-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-left-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-left-1-firefox-linux.png index 76653f7e9f..19ab325013 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-left-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-left-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-left-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-left-1-webkit-linux.png index 046e47e886..30b8947ffd 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-left-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-left-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-right-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-right-1-chromium-linux.png index 88d4965d0b..db3d1ecdce 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-right-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-right-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-right-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-right-1-firefox-linux.png index d377eabda0..d82074ca0f 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-right-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-right-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-right-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-right-1-webkit-linux.png index 2031db727e..41bcf3848f 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-right-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-right-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-top-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-top-1-chromium-linux.png index e0ca3b3314..1be59842d7 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-top-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-top-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-top-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-top-1-firefox-linux.png index ab1f563383..83b7baa558 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-top-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-top-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-top-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-top-1-webkit-linux.png index 2987c20fff..f881d609c6 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-top-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Internal-component-inside-positioned-correclty-in-each-placement-top-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-No-Close-button-when-no-SidePanel-Close-and-closable-false-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-No-Close-button-when-no-SidePanel-Close-and-closable-false-1-chromium-linux.png index 3e32368376..accd362efb 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-No-Close-button-when-no-SidePanel-Close-and-closable-false-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-No-Close-button-when-no-SidePanel-Close-and-closable-false-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-No-Close-button-when-no-SidePanel-Close-and-closable-false-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-No-Close-button-when-no-SidePanel-Close-and-closable-false-1-firefox-linux.png index f77d2d0ee6..67fac654a7 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-No-Close-button-when-no-SidePanel-Close-and-closable-false-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-No-Close-button-when-no-SidePanel-Close-and-closable-false-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-No-Close-button-when-no-SidePanel-Close-and-closable-false-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-No-Close-button-when-no-SidePanel-Close-and-closable-false-1-webkit-linux.png index f551abde1d..30661c02d1 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-No-Close-button-when-no-SidePanel-Close-and-closable-false-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-No-Close-button-when-no-SidePanel-Close-and-closable-false-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Ellipsis-and-tooltip-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Ellipsis-and-tooltip-1-chromium-linux.png index 1d0f2f8098..43c0ebd68f 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Ellipsis-and-tooltip-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Ellipsis-and-tooltip-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Ellipsis-and-tooltip-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Ellipsis-and-tooltip-1-firefox-linux.png index 106eb2ce1b..8cfac5d1c6 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Ellipsis-and-tooltip-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Ellipsis-and-tooltip-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Ellipsis-and-tooltip-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Ellipsis-and-tooltip-1-webkit-linux.png index 4d959b5bea..3abd4e6d1d 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Ellipsis-and-tooltip-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Ellipsis-and-tooltip-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-1-chromium-linux.png index 4324d0ee07..ea640a1fbb 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-1-firefox-linux.png index 20b01ab5c7..f3d89cbd6e 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-1-webkit-linux.png index 224660514a..a9f8cbadc0 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-2-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-2-chromium-linux.png index a84ff6dc69..cecc163d0e 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-2-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-2-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-2-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-2-firefox-linux.png index e683b5a590..28e14bd5f1 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-2-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-2-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-2-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-2-webkit-linux.png index 99d6db2c8f..da05b679e4 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-2-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-bottom-2-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-1-chromium-linux.png index 0a15432224..511c6e20bd 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-1-firefox-linux.png index 28c9442741..b8195267e8 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-1-webkit-linux.png index c833a1cc2e..dfe1ebf1c5 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-2-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-2-chromium-linux.png index 60f7e78d44..20caef9f03 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-2-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-2-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-2-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-2-firefox-linux.png index 71d8cf7033..e0fafd80e3 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-2-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-2-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-2-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-2-webkit-linux.png index f4ee2aa942..53bde2fb97 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-2-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-left-2-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-1-chromium-linux.png index 6b108a1a75..57414e789d 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-1-firefox-linux.png index a155a3ebe9..4d934c7117 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-1-webkit-linux.png index a65b78d093..6c66eb1420 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-2-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-2-chromium-linux.png index 07584d8a68..d2a2b1646b 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-2-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-2-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-2-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-2-firefox-linux.png index 8a04934e14..1c02215fd1 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-2-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-2-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-2-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-2-webkit-linux.png index 0a3b8254fd..bac3df15c6 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-2-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-right-2-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-1-chromium-linux.png index 614b5a7747..cd16d08840 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-1-firefox-linux.png index 5ae80a2455..5d455d83d9 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-1-webkit-linux.png index e50212e9dc..4862a3f1b7 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-2-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-2-chromium-linux.png index 6e8935aa19..7ab3a5f49a 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-2-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-2-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-2-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-2-firefox-linux.png index 9e18c94eae..ce6ce4f472 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-2-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-2-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-2-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-2-webkit-linux.png index 0a8a845558..983c9cac45 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-2-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-Header-and-Footer-looks-good-in-each-placement-top-2-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-bottom-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-bottom-1-chromium-linux.png index d0191e8a8d..cabd4c74e0 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-bottom-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-bottom-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-bottom-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-bottom-1-firefox-linux.png index 43e2109b05..dc552f5ffc 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-bottom-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-bottom-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-bottom-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-bottom-1-webkit-linux.png index f4a26a4b76..4ed728df01 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-bottom-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-bottom-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-left-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-left-1-chromium-linux.png index f69c990a05..71e0254ea3 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-left-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-left-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-left-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-left-1-firefox-linux.png index 7b61d84ff5..fca8806e9f 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-left-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-left-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-left-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-left-1-webkit-linux.png index 462dd5196d..618620e182 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-left-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-left-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-right-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-right-1-chromium-linux.png index 5c9e700215..f8d602f281 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-right-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-right-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-right-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-right-1-firefox-linux.png index 7e30967361..4d4cfc4993 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-right-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-right-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-right-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-right-1-webkit-linux.png index e0f04cc29e..aeddbce9a5 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-right-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-right-1-webkit-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-top-1-chromium-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-top-1-chromium-linux.png index 8cd957c1ba..885452dc8c 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-top-1-chromium-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-top-1-chromium-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-top-1-firefox-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-top-1-firefox-linux.png index 83d409f459..0fdf50ed8d 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-top-1-firefox-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-top-1-firefox-linux.png differ diff --git a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-top-1-webkit-linux.png b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-top-1-webkit-linux.png index 75f77d7912..1f37746801 100644 Binary files a/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-top-1-webkit-linux.png and b/semcore/side-panel/__tests__/side-panel.browser-test.tsx-snapshots/-visual-Verify-Side-panel-with-disabled-overlay-in-each-placement-top-1-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx b/semcore/skeleton/__tests__/skeleton.browser-test.tsx index f3ec61afc6..ae8043eeee 100644 --- a/semcore/skeleton/__tests__/skeleton.browser-test.tsx +++ b/semcore/skeleton/__tests__/skeleton.browser-test.tsx @@ -1,108 +1,247 @@ -import type { Page } from '@semcore/testing-utils/playwright'; +import type { Locator, Page } from '@semcore/testing-utils/playwright'; import { expect, test } from '@semcore/testing-utils/playwright'; import { loadPage } from '@semcore/testing-utils/shared/helpers'; import { TAG } from '@semcore/testing-utils/shared/tags'; +const BASE_EXAMPLE = 'stories/components/skeleton/tests/examples/chart-skeletons.tsx'; + +/** every chart skeleton rendered by the example, in DOM order */ +const CHARTS = [ + 'LineChartSkeleton', + 'AreaChartSkeleton', + 'BarChartSkeleton', + 'HistogramChartSkeleton', + 'CompactHorizontalBarChartSkeleton', + 'DonutChartSkeleton', + 'ScatterPlotChartSkeleton', + 'BubbleChartSkeleton', + 'VennChartSkeleton', + 'RadialTreeChartSkeleton', +] as const; + export const locators = { skeleton: (page: Page, index?: number) => { const base = page.locator('[data-ui-name="SkeletonSVG"]'); return typeof index === 'number' ? base.nth(index) : base; }, - button: (page: Page, index?: number) => { - const base = page.locator('[data-ui-name="Button"]'); + chartSkeleton: (page: Page, index?: number) => { + const base = page.locator('[data-ui-name="Skeleton"]'); return typeof index === 'number' ? base.nth(index) : base; }, + // areas of the example, so every screenshot is scoped to its own skeleton + area: (page: Page, testId: string) => page.locator(`[data-testid="${testId}"]`), + chart: (page: Page, name: string) => page.locator(`[data-testid="chart-${name}"]`), }; +const computed = (locator: Locator, property: string) => + locator.evaluate((el, prop) => getComputedStyle(el).getPropertyValue(prop), property); + /* ===================================================== @visual -Visual states, hover and focus styles, paddings, margins, and snapshots. +Visual states and snapshots. +Every snapshot is taken from a [data-testid] area, never from the whole page. +The pulse animation is frozen with duration=0 to keep screenshots stable. ===================================================== */ test.describe(`${TAG.VISUAL}`, () => { - test('Verify text initial loading styles', { + test('Verify every chart skeleton pattern', { tag: [TAG.PRIORITY_HIGH, '@skeleton'], }, async ({ page }) => { - await loadPage(page, 'stories/components/skeleton/docs/examples/text_initial_loading.tsx', 'en'); + await loadPage(page, BASE_EXAMPLE, 'en', { duration: 0 }); + + for (const name of CHARTS) { + await test.step(`Verify ${name}`, async () => { + const chart = locators.chart(page, name); + + await chart.scrollIntoViewIfNeeded(); + await expect(chart).toBeVisible(); + await expect(chart).toHaveScreenshot(`${name}.png`); + }); + } + }); + + test('Verify type=monotone for Line and Area', { + tag: [TAG.PRIORITY_MEDIUM, '@skeleton'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { duration: 0, type: 'monotone' }); + + await expect(locators.chart(page, 'LineChartSkeleton')).toHaveScreenshot( + 'LineChartSkeleton-monotone.png', + ); + await expect(locators.chart(page, 'AreaChartSkeleton')).toHaveScreenshot( + 'AreaChartSkeleton-monotone.png', + ); + }); + + test('Verify layout=vertical for Bar and Histogram', { + tag: [TAG.PRIORITY_MEDIUM, '@skeleton'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { duration: 0, layout: 'vertical' }); + + await expect(locators.chart(page, 'BarChartSkeleton')).toHaveScreenshot( + 'BarChartSkeleton-vertical.png', + ); + await expect(locators.chart(page, 'HistogramChartSkeleton')).toHaveScreenshot( + 'HistogramChartSkeleton-vertical.png', + ); + }); + + test('Verify halfsize donut', { + tag: [TAG.PRIORITY_MEDIUM, '@skeleton'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { duration: 0, halfsize: true }); - await locators.skeleton(page).waitFor({ state: 'visible' }); - await expect(page).toHaveScreenshot(); + await expect(locators.chart(page, 'DonutChartSkeleton')).toHaveScreenshot( + 'DonutChartSkeleton-halfsize.png', + ); + }); - await expect(locators.skeleton(page)).toHaveAttribute('preserveAspectRatio', 'none'); + const textCases = [ + { theme: 'default', amount: 1, textWidth: '60%' }, + { theme: 'invert', amount: 1, textWidth: '60%' }, + { theme: 'default', amount: 3, textWidth: '100%' }, + { theme: 'invert', amount: 5, textWidth: '30%' }, + ] as const; - const styleAttr = await locators.skeleton(page).getAttribute('style'); - expect(styleAttr).toContain('2000ms'); + textCases.forEach((item) => { + test(`Verify theme=${item.theme}, amount=${item.amount}`, { + tag: [TAG.PRIORITY_HIGH, '@skeleton'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { + ...item, + duration: 0, + invertedBackground: item.theme === 'invert', + }); - await locators.button(page).click(); - await expect(locators.skeleton(page)).not.toBeVisible(); + await expect(locators.skeleton(page, 0)).toBeVisible(); + await expect(locators.area(page, 'plain-skeleton')).toHaveScreenshot(); + }); }); - test('Verify skeleton for charts', { + test('Verify chart skeletons on inverted background', { tag: [TAG.PRIORITY_HIGH, '@skeleton'], }, async ({ page }) => { - await loadPage(page, 'stories/components/skeleton/docs/examples/skeleton_examples_for_charts.tsx', 'en'); + await loadPage(page, BASE_EXAMPLE, 'en', { + duration: 0, + theme: 'invert', + invertedBackground: true, + }); - const card = page.locator('[data-ui-name="Card"]'); - const count = await card.count(); + await expect(locators.area(page, 'chart-skeletons')).toHaveScreenshot(); + }); +}); - for (let i = 0; i < count; i++) { - const currentCard = card.nth(i); - const title = await currentCard.locator('[data-ui-name="Card.Title"]').textContent(); +/* ===================================================== +@functional +Attributes, props forwarding, locales and resizing - no snapshots here. +===================================================== */ +test.describe(`${TAG.FUNCTIONAL}`, () => { + test('Verify root attributes', { + tag: [TAG.PRIORITY_HIGH, '@skeleton'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en'); - await currentCard.scrollIntoViewIfNeeded(); - await expect(currentCard).toBeVisible(); + const skeleton = locators.skeleton(page, 0); - const clip = await currentCard.boundingBox(); - if (!clip) { - throw new Error(`Card "${title}" is not available for screenshot`); - } + await expect(skeleton).toBeVisible(); + await expect(skeleton).toHaveAttribute('role', 'img'); + await expect(skeleton).toHaveAttribute('aria-label', 'Loading…'); + await expect(skeleton).toHaveAttribute('preserveAspectRatio', 'none'); + }); - await expect(page).toHaveScreenshot(`${title}.png`, { clip }); - } + test('Verify duration prop drives the pulse animation', { + tag: [TAG.PRIORITY_MEDIUM, '@skeleton'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { duration: 500 }); + + const skeleton = locators.skeleton(page, 0); + + expect(await skeleton.getAttribute('style')).toContain('500ms'); + expect(await computed(skeleton, 'animation-duration')).toBe('0.5s'); }); - const themeVariables = [ - { theme: 'dark', amount: 1, duration: 0 }, - { theme: 'invert', amount: 1, duration: 0 }, - { theme: 'dark', amount: 3, duration: 0 }, - { theme: 'invert', amount: 5, width: '60%', duration: 0 }, - ]; - themeVariables.forEach((item) => { - test(`Verify theme=${item.theme}, amount=${item.amount}`, { - tag: [TAG.PRIORITY_HIGH, '@skeleton'], - }, async ({ page }) => { - await loadPage(page, 'stories/components/skeleton/tests/examples/skeleton-themes.tsx', 'en', item); + test('Verify hidden prop renders nothing', { + tag: [TAG.PRIORITY_HIGH, '@skeleton'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { hidden: true }); - await test.step('Verify skeleton visibility', async () => { - await expect(locators.skeleton(page, 0)).toBeVisible(); - }); + await expect(locators.skeleton(page)).toHaveCount(0); + await expect(locators.chartSkeleton(page)).toHaveCount(0); + }); - await test.step('Verify screenshot', async () => { - await expect(page).toHaveScreenshot(); - }); - }); + test('Verify aria-label is localized', { + tag: [TAG.PRIORITY_MEDIUM, '@skeleton'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'de', { locale: 'de' }); + + expect(await locators.skeleton(page, 0).getAttribute('aria-label')).not.toBe('Loading…'); + }); + + test('Verify Skeleton.Text amount renders the requested number of lines', { + tag: [TAG.PRIORITY_MEDIUM, '@skeleton'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { amount: 4 }); + + // 4 lines from the first Skeleton.Text plus a single line from the second one + await expect(locators.area(page, 'plain-skeleton').locator('rect[rx="4"]')).toHaveCount(5); + }); + + test('Verify theme changes the fill of Skeleton', { + tag: [TAG.PRIORITY_HIGH, '@skeleton'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'default' }); + const defaultFill = await computed(locators.skeleton(page, 0), 'fill'); + + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'invert' }); + const invertFill = await computed(locators.skeleton(page, 0), 'fill'); + + expect(defaultFill).not.toBe(''); + expect(invertFill).not.toBe(defaultFill); }); - test('Verify observeParentSize prop styles', { + test('Verify theme changes the color of chart skeletons', { + tag: [TAG.PRIORITY_HIGH, '@skeleton'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'default' }); + const defaultChart = locators.chart(page, 'LineChartSkeleton').getByRole('img'); + await expect(defaultChart).toBeVisible(); + const defaultBackground = await computed(defaultChart, 'background-color'); + + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'invert' }); + const invertChart = locators.chart(page, 'LineChartSkeleton').getByRole('img'); + await expect(invertChart).toBeVisible(); + const invertBackground = await computed(invertChart, 'background-color'); + + expect(defaultBackground).not.toBe(''); + expect(invertBackground).not.toBe(defaultBackground); + }); + + test('Verify observeParentSize follows the parent width', { tag: [TAG.PRIORITY_MEDIUM, '@skeleton'], }, async ({ page }) => { - await loadPage(page, 'stories/components/skeleton/tests/examples/observe-parent-size.tsx', 'en'); + await loadPage(page, BASE_EXAMPLE, 'en', { observeParentSize: true, parentWidth: 200 }); + + const skeleton = locators.skeleton(page, 0); + await expect(skeleton).toHaveAttribute('width', '100%'); + + const narrow = (await skeleton.boundingBox())!.width; + + await locators.area(page, 'skeleton-parent').evaluate((el) => { + (el as HTMLElement).style.width = '600px'; + }); - const styleAttr = await locators.skeleton(page, 1).getAttribute('style'); - await expect(locators.skeleton(page, 0)).toHaveAttribute('width', '100%'); - expect(styleAttr).toContain('300px'); + await expect(async () => { + const wide = (await skeleton.boundingBox())!.width; + expect(wide).toBeGreaterThan(narrow); + }).toPass(); - await locators.button(page).click(); - await page.waitForTimeout(100); - await expect(locators.skeleton(page, 0)).toHaveAttribute('width', '100%'); - expect(styleAttr).toContain('300px'); - await expect(page).toHaveScreenshot(); + await expect(skeleton).toHaveAttribute('width', '100%'); }); - test('Verify usage with other elements styles', { + test('Verify w prop pins the skeleton width regardless of the parent', { tag: [TAG.PRIORITY_MEDIUM, '@skeleton'], }, async ({ page }) => { - await loadPage(page, 'stories/components/skeleton/docs/examples/usage_with_other_elements.tsx', 'en'); + await loadPage(page, BASE_EXAMPLE, 'en', { w: 300, parentWidth: 200 }); - await expect(page).toHaveScreenshot(); + expect(await computed(locators.skeleton(page, 0), 'width')).toBe('300px'); }); }); diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-chart-skeletons-on-inverted-background-1-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-chart-skeletons-on-inverted-background-1-chromium-linux.png new file mode 100644 index 0000000000..2f379a7b6a Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-chart-skeletons-on-inverted-background-1-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-chart-skeletons-on-inverted-background-1-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-chart-skeletons-on-inverted-background-1-firefox-linux.png new file mode 100644 index 0000000000..b9251fb0d7 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-chart-skeletons-on-inverted-background-1-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-chart-skeletons-on-inverted-background-1-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-chart-skeletons-on-inverted-background-1-webkit-linux.png new file mode 100644 index 0000000000..a29e8717af Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-chart-skeletons-on-inverted-background-1-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-observeParentSize-prop-styles-1-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-observeParentSize-prop-styles-1-chromium-linux.png deleted file mode 100644 index 88700de51b..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-observeParentSize-prop-styles-1-chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-observeParentSize-prop-styles-1-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-observeParentSize-prop-styles-1-firefox-linux.png deleted file mode 100644 index 29e22613f7..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-observeParentSize-prop-styles-1-firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-observeParentSize-prop-styles-1-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-observeParentSize-prop-styles-1-webkit-linux.png deleted file mode 100644 index a982aa2eee..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-observeParentSize-prop-styles-1-webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-text-initial-loading-styles-1-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-text-initial-loading-styles-1-chromium-linux.png deleted file mode 100644 index 802dd19ab2..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-text-initial-loading-styles-1-chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-text-initial-loading-styles-1-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-text-initial-loading-styles-1-firefox-linux.png deleted file mode 100644 index 1e5cbb6372..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-text-initial-loading-styles-1-firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-text-initial-loading-styles-1-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-text-initial-loading-styles-1-webkit-linux.png deleted file mode 100644 index 62f0b3cf71..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-text-initial-loading-styles-1-webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-1-1-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-1-1-chromium-linux.png deleted file mode 100644 index dbb4c412bf..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-1-1-chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-1-1-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-1-1-firefox-linux.png deleted file mode 100644 index 631df7007f..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-1-1-firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-1-1-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-1-1-webkit-linux.png deleted file mode 100644 index 59475fbe33..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-1-1-webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-3-1-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-3-1-chromium-linux.png deleted file mode 100644 index 86c160d060..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-3-1-chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-3-1-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-3-1-firefox-linux.png deleted file mode 100644 index ef5cf8c549..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-3-1-firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-3-1-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-3-1-webkit-linux.png deleted file mode 100644 index a41eea9897..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-dark-amount-3-1-webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-1-1-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-1-1-chromium-linux.png new file mode 100644 index 0000000000..9251399766 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-1-1-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-1-1-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-1-1-firefox-linux.png new file mode 100644 index 0000000000..6c223865f0 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-1-1-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-1-1-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-1-1-webkit-linux.png new file mode 100644 index 0000000000..b12c5b1b19 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-1-1-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-3-1-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-3-1-chromium-linux.png new file mode 100644 index 0000000000..27c74184a9 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-3-1-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-3-1-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-3-1-firefox-linux.png new file mode 100644 index 0000000000..5529003eaf Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-3-1-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-3-1-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-3-1-webkit-linux.png new file mode 100644 index 0000000000..44edc6bb5b Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-default-amount-3-1-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-1-1-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-1-1-chromium-linux.png index 1ec22538a6..df68aac1c5 100644 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-1-1-chromium-linux.png and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-1-1-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-1-1-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-1-1-firefox-linux.png index c561964037..bddea2afd6 100644 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-1-1-firefox-linux.png and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-1-1-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-1-1-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-1-1-webkit-linux.png index 6ef3424c8e..cf9a2a5506 100644 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-1-1-webkit-linux.png and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-1-1-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-5-1-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-5-1-chromium-linux.png index 295117c961..cf10f5f8df 100644 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-5-1-chromium-linux.png and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-5-1-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-5-1-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-5-1-firefox-linux.png index 9394089138..18839cb03e 100644 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-5-1-firefox-linux.png and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-5-1-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-5-1-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-5-1-webkit-linux.png index b7b25d598a..27351546ca 100644 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-5-1-webkit-linux.png and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-theme-invert-amount-5-1-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-usage-with-other-elements-styles-1-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-usage-with-other-elements-styles-1-chromium-linux.png deleted file mode 100644 index 62b18a861e..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-usage-with-other-elements-styles-1-chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-usage-with-other-elements-styles-1-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-usage-with-other-elements-styles-1-firefox-linux.png deleted file mode 100644 index 46d198bbec..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-usage-with-other-elements-styles-1-firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-usage-with-other-elements-styles-1-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-usage-with-other-elements-styles-1-webkit-linux.png deleted file mode 100644 index 5ebf2cacd1..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/-visual-Verify-usage-with-other-elements-styles-1-webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-chromium-linux.png deleted file mode 100644 index 08c2d15b7c..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-firefox-linux.png deleted file mode 100644 index 33e4b2a9b6..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-type-monotone--chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-type-monotone--chromium-linux.png deleted file mode 100644 index 8a67956c45..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-type-monotone--chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-type-monotone--firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-type-monotone--firefox-linux.png deleted file mode 100644 index 5fcf080123..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-type-monotone--firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-type-monotone--webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-type-monotone--webkit-linux.png deleted file mode 100644 index 526c6096bc..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-type-monotone--webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-webkit-linux.png deleted file mode 100644 index c3162d4a9e..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChart-skeleton-webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-chromium-linux.png new file mode 100644 index 0000000000..858a22243d Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-firefox-linux.png new file mode 100644 index 0000000000..3a9382525b Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-monotone-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-monotone-chromium-linux.png new file mode 100644 index 0000000000..72500dc426 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-monotone-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-monotone-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-monotone-firefox-linux.png new file mode 100644 index 0000000000..a4b72461d7 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-monotone-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-monotone-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-monotone-webkit-linux.png new file mode 100644 index 0000000000..866faff2d6 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-monotone-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-webkit-linux.png new file mode 100644 index 0000000000..e39d2f8a13 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/AreaChartSkeleton-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-chromium-linux.png deleted file mode 100644 index 9cc493c484..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-firefox-linux.png deleted file mode 100644 index f41cb483b7..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-layout-vertical--chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-layout-vertical--chromium-linux.png deleted file mode 100644 index 5ecbb2aa16..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-layout-vertical--chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-layout-vertical--firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-layout-vertical--firefox-linux.png deleted file mode 100644 index 3914b059ee..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-layout-vertical--firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-layout-vertical--webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-layout-vertical--webkit-linux.png deleted file mode 100644 index df704bc29f..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-layout-vertical--webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-webkit-linux.png deleted file mode 100644 index 75f6a4c2f1..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChart-skeleton-webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-chromium-linux.png new file mode 100644 index 0000000000..16b9bbf37d Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-firefox-linux.png new file mode 100644 index 0000000000..325ae6af55 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-vertical-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-vertical-chromium-linux.png new file mode 100644 index 0000000000..e3722b7a82 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-vertical-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-vertical-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-vertical-firefox-linux.png new file mode 100644 index 0000000000..80eca23d96 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-vertical-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-vertical-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-vertical-webkit-linux.png new file mode 100644 index 0000000000..1b0316ee29 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-vertical-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-webkit-linux.png new file mode 100644 index 0000000000..92a28f1b3b Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BarChartSkeleton-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChart-skeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChart-skeleton-chromium-linux.png deleted file mode 100644 index 7b4023797d..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChart-skeleton-chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChart-skeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChart-skeleton-firefox-linux.png deleted file mode 100644 index 336c41e1a0..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChart-skeleton-firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChart-skeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChart-skeleton-webkit-linux.png deleted file mode 100644 index 40a4695ce2..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChart-skeleton-webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChartSkeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChartSkeleton-chromium-linux.png new file mode 100644 index 0000000000..6d4e345fd6 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChartSkeleton-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChartSkeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChartSkeleton-firefox-linux.png new file mode 100644 index 0000000000..977c0e163e Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChartSkeleton-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChartSkeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChartSkeleton-webkit-linux.png new file mode 100644 index 0000000000..d5780a804a Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/BubbleChartSkeleton-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChart-skeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChart-skeleton-chromium-linux.png deleted file mode 100644 index d53edcf576..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChart-skeleton-chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChart-skeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChart-skeleton-firefox-linux.png deleted file mode 100644 index 5961973136..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChart-skeleton-firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChart-skeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChart-skeleton-webkit-linux.png deleted file mode 100644 index 62649a52f1..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChart-skeleton-webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChartSkeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChartSkeleton-chromium-linux.png new file mode 100644 index 0000000000..467b94d48c Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChartSkeleton-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChartSkeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChartSkeleton-firefox-linux.png new file mode 100644 index 0000000000..be106839d5 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChartSkeleton-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChartSkeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChartSkeleton-webkit-linux.png new file mode 100644 index 0000000000..314523a87f Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/CompactHorizontalBarChartSkeleton-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-chromium-linux.png deleted file mode 100644 index ee7e4bd6cb..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-firefox-linux.png deleted file mode 100644 index 02e522cf0f..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-halfsize--chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-halfsize--chromium-linux.png deleted file mode 100644 index 267edf3123..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-halfsize--chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-halfsize--firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-halfsize--firefox-linux.png deleted file mode 100644 index 4b9c76e391..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-halfsize--firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-halfsize--webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-halfsize--webkit-linux.png deleted file mode 100644 index 99a6ee3995..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-halfsize--webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-webkit-linux.png deleted file mode 100644 index 6b74676194..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChart-skeleton-webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-chromium-linux.png new file mode 100644 index 0000000000..5efe22fab0 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-firefox-linux.png new file mode 100644 index 0000000000..4177f97cc7 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-halfsize-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-halfsize-chromium-linux.png new file mode 100644 index 0000000000..c483431e99 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-halfsize-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-halfsize-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-halfsize-firefox-linux.png new file mode 100644 index 0000000000..a507871346 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-halfsize-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-halfsize-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-halfsize-webkit-linux.png new file mode 100644 index 0000000000..5ae0a16325 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-halfsize-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-webkit-linux.png new file mode 100644 index 0000000000..49dd4ee55e Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/DonutChartSkeleton-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-chromium-linux.png deleted file mode 100644 index 7fbcb1cceb..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-firefox-linux.png deleted file mode 100644 index 2f59defd95..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-layout-vertical--chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-layout-vertical--chromium-linux.png deleted file mode 100644 index c2d55eb963..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-layout-vertical--chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-layout-vertical--firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-layout-vertical--firefox-linux.png deleted file mode 100644 index 449fccf77d..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-layout-vertical--firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-layout-vertical--webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-layout-vertical--webkit-linux.png deleted file mode 100644 index 4fa63dec1b..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-layout-vertical--webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-webkit-linux.png deleted file mode 100644 index 2ff0175951..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChart-skeleton-webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-chromium-linux.png new file mode 100644 index 0000000000..838759ecbc Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-firefox-linux.png new file mode 100644 index 0000000000..c045ddb2ea Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-vertical-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-vertical-chromium-linux.png new file mode 100644 index 0000000000..6aa52b1d8c Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-vertical-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-vertical-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-vertical-firefox-linux.png new file mode 100644 index 0000000000..880ebf5033 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-vertical-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-vertical-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-vertical-webkit-linux.png new file mode 100644 index 0000000000..d4b3efe769 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-vertical-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-webkit-linux.png new file mode 100644 index 0000000000..b1082ac1f2 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/HistogramChartSkeleton-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-chromium-linux.png deleted file mode 100644 index 24c1d98b9a..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-firefox-linux.png deleted file mode 100644 index 64c7ff7389..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-type-monotone--chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-type-monotone--chromium-linux.png deleted file mode 100644 index e8c1b44bf4..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-type-monotone--chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-type-monotone--firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-type-monotone--firefox-linux.png deleted file mode 100644 index e245a5a7e0..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-type-monotone--firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-type-monotone--webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-type-monotone--webkit-linux.png deleted file mode 100644 index a9e7fb223b..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-type-monotone--webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-webkit-linux.png deleted file mode 100644 index 3418547e08..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChart-skeleton-webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-chromium-linux.png new file mode 100644 index 0000000000..77837fa8bc Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-firefox-linux.png new file mode 100644 index 0000000000..fe63e1f352 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-monotone-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-monotone-chromium-linux.png new file mode 100644 index 0000000000..8b8d0399f8 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-monotone-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-monotone-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-monotone-firefox-linux.png new file mode 100644 index 0000000000..8bbdadb0cf Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-monotone-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-monotone-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-monotone-webkit-linux.png new file mode 100644 index 0000000000..076df323bf Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-monotone-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-webkit-linux.png new file mode 100644 index 0000000000..4c3b152cf1 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/LineChartSkeleton-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChart-skeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChart-skeleton-chromium-linux.png deleted file mode 100644 index a1459b6c39..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChart-skeleton-chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChart-skeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChart-skeleton-firefox-linux.png deleted file mode 100644 index 739ce9ae89..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChart-skeleton-firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChart-skeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChart-skeleton-webkit-linux.png deleted file mode 100644 index 684233d6a2..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChart-skeleton-webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChartSkeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChartSkeleton-chromium-linux.png new file mode 100644 index 0000000000..952921c1ee Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChartSkeleton-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChartSkeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChartSkeleton-firefox-linux.png new file mode 100644 index 0000000000..69dfc6ab2d Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChartSkeleton-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChartSkeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChartSkeleton-webkit-linux.png new file mode 100644 index 0000000000..52014d9a3b Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/RadialTreeChartSkeleton-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChart-skeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChart-skeleton-chromium-linux.png deleted file mode 100644 index c4f64d622a..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChart-skeleton-chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChart-skeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChart-skeleton-firefox-linux.png deleted file mode 100644 index ed4b330ae9..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChart-skeleton-firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChart-skeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChart-skeleton-webkit-linux.png deleted file mode 100644 index 86f20dc63c..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChart-skeleton-webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChartSkeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChartSkeleton-chromium-linux.png new file mode 100644 index 0000000000..5d793dbaaa Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChartSkeleton-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChartSkeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChartSkeleton-firefox-linux.png new file mode 100644 index 0000000000..79f22ee7b5 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChartSkeleton-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChartSkeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChartSkeleton-webkit-linux.png new file mode 100644 index 0000000000..22f32a97cd Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/ScatterPlotChartSkeleton-webkit-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChart-skeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChart-skeleton-chromium-linux.png deleted file mode 100644 index 156531f968..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChart-skeleton-chromium-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChart-skeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChart-skeleton-firefox-linux.png deleted file mode 100644 index 4351325b6d..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChart-skeleton-firefox-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChart-skeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChart-skeleton-webkit-linux.png deleted file mode 100644 index 8296b13c27..0000000000 Binary files a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChart-skeleton-webkit-linux.png and /dev/null differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChartSkeleton-chromium-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChartSkeleton-chromium-linux.png new file mode 100644 index 0000000000..cf50729f67 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChartSkeleton-chromium-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChartSkeleton-firefox-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChartSkeleton-firefox-linux.png new file mode 100644 index 0000000000..0e6b5d156c Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChartSkeleton-firefox-linux.png differ diff --git a/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChartSkeleton-webkit-linux.png b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChartSkeleton-webkit-linux.png new file mode 100644 index 0000000000..5ee80c2818 Binary files /dev/null and b/semcore/skeleton/__tests__/skeleton.browser-test.tsx-snapshots/VennChartSkeleton-webkit-linux.png differ diff --git a/semcore/skeleton/src/Skeleton.tsx b/semcore/skeleton/src/Skeleton.tsx index 9c81ad5541..301460444c 100644 --- a/semcore/skeleton/src/Skeleton.tsx +++ b/semcore/skeleton/src/Skeleton.tsx @@ -10,11 +10,6 @@ import type { NSSkeleton } from './Skeleton.type'; import style from './style/skeleton.shadow.css'; import { localizedMessages } from './translations/__intergalactic-dynamic-locales'; -const MAP_COLOR_THEME = { - dark: 'rgba(255, 255, 255, 0.3)', - invert: 'rgba(224, 225, 233, 0.8)', -}; - class SkeletonRoot extends Component< Intergalactic.InternalTypings.InferComponentProps, typeof SkeletonRoot.enhance, @@ -27,6 +22,7 @@ class SkeletonRoot extends Component< static style = style; static enhance = [i18nEnhance(localizedMessages)] as const; static defaultProps = { + theme: 'default', duration: 2000, } as const; @@ -62,7 +58,7 @@ class SkeletonSVG extends Component< static style = style; static defaultProps = { - theme: 'invert', + theme: 'default', duration: 2000, } as const; @@ -98,16 +94,6 @@ class SkeletonSVG extends Component< } } - setContext() { - const { theme } = this.asProps; - - if (!theme) return {}; - - return { - gradientUrl: MAP_COLOR_THEME[theme], - }; - } - render() { const { Children, styles, uid, theme, duration } = this.asProps; const SSkeletonSVG = Root; @@ -144,6 +130,7 @@ function Text( {[...Array(amountLine)].map((_el, index) => sstyled(styles)( ; } - type RenderComponent = Intergalactic.Component<'div', Props, Ctx>; + type RenderComponent = Intergalactic.Component<'div', Props>; - type Component = Intergalactic.Component<'svg', Props, Ctx> & { + type Component = Intergalactic.Component<'svg', Props> & { Text: Text.Component; }; } @@ -58,8 +55,6 @@ declare namespace NSSkeleton { /** @deprecated It will be removed in v19. */ export type SkeletonProps = NSSkeleton.Props; /** @deprecated It will be removed in v19. */ -export type SkeletonCtx = NSSkeleton.Ctx; -/** @deprecated It will be removed in v19. */ export type SkeletonTextProps = NSSkeleton.Text.Props; export type { NSSkeleton }; diff --git a/semcore/skeleton/src/style/chart.shadow.css b/semcore/skeleton/src/style/chart.shadow.css index f9399df437..7e07f6e0d8 100644 --- a/semcore/skeleton/src/style/chart.shadow.css +++ b/semcore/skeleton/src/style/chart.shadow.css @@ -1,17 +1,22 @@ SChartSkeleton { height: 200px; width: 100%; - background-image: var(--bgPattern); + mask-image: var(--bgPattern); + background-color: var(--intergalactic-skeleton-bg, oklch(0.94 0.002 180)); +} + +SChartSkeleton[theme='invert'] { + background-color: var(--intergalactic-skeleton-bg-invert, oklch(0.5 0.004 147.4)); } SChartSkeleton[bgPosition] { - background-position: var(--bgPosition); + mask-position: var(--bgPosition); } SChartSkeleton[bgSize] { - background-size: var(--bgSize); + mask-size: var(--bgSize); } SChartSkeleton[bgRepeat] { - background-repeat: var(--bgRepeat); -} \ No newline at end of file + mask-repeat: var(--bgRepeat); +} diff --git a/semcore/skeleton/src/style/skeleton.shadow.css b/semcore/skeleton/src/style/skeleton.shadow.css index 44c9d1cf02..f902e73a4c 100644 --- a/semcore/skeleton/src/style/skeleton.shadow.css +++ b/semcore/skeleton/src/style/skeleton.shadow.css @@ -20,11 +20,11 @@ SSkeleton { } } -SSkeletonSVG[theme='invert'] { +SSkeletonSVG[theme='default'] { fill: var(--intergalactic-skeleton-bg, oklch(0.94 0.002 180)); } -SSkeletonSVG[theme='dark'] { +SSkeletonSVG[theme='invert'] { fill: var(--intergalactic-skeleton-bg-invert, oklch(0.5 0.004 147.4)); } @@ -36,4 +36,4 @@ SText { SSkeleton { animation-name: none; } -} \ No newline at end of file +} diff --git a/semcore/skeleton/src/svg/area-chart-linear.svg b/semcore/skeleton/src/svg/area-chart-linear.svg index e421916095..049fbe8319 100644 --- a/semcore/skeleton/src/svg/area-chart-linear.svg +++ b/semcore/skeleton/src/svg/area-chart-linear.svg @@ -1,3 +1,3 @@ - + diff --git a/semcore/skeleton/src/svg/area-chart-monotone.svg b/semcore/skeleton/src/svg/area-chart-monotone.svg index 937ebfa952..1875a78902 100644 --- a/semcore/skeleton/src/svg/area-chart-monotone.svg +++ b/semcore/skeleton/src/svg/area-chart-monotone.svg @@ -1,3 +1,3 @@ - + diff --git a/semcore/skeleton/src/svg/bar-chart-horizontal.svg b/semcore/skeleton/src/svg/bar-chart-horizontal.svg index 3afc8b627a..3e07532d79 100644 --- a/semcore/skeleton/src/svg/bar-chart-horizontal.svg +++ b/semcore/skeleton/src/svg/bar-chart-horizontal.svg @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/semcore/skeleton/src/svg/bar-chart-vertical.svg b/semcore/skeleton/src/svg/bar-chart-vertical.svg index 7c5fe6d714..52a7dab1a2 100644 --- a/semcore/skeleton/src/svg/bar-chart-vertical.svg +++ b/semcore/skeleton/src/svg/bar-chart-vertical.svg @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/semcore/skeleton/src/svg/bubble-chart.svg b/semcore/skeleton/src/svg/bubble-chart.svg index 12ab0f86f3..3e317f0fed 100644 --- a/semcore/skeleton/src/svg/bubble-chart.svg +++ b/semcore/skeleton/src/svg/bubble-chart.svg @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/semcore/skeleton/src/svg/compact-horizontal-bar-chart.svg b/semcore/skeleton/src/svg/compact-horizontal-bar-chart.svg index 61e114cddf..5d69f3c46e 100644 --- a/semcore/skeleton/src/svg/compact-horizontal-bar-chart.svg +++ b/semcore/skeleton/src/svg/compact-horizontal-bar-chart.svg @@ -1,8 +1,7 @@ - - - - - + + + + + - \ No newline at end of file diff --git a/semcore/skeleton/src/svg/donut-chart-halfsize.svg b/semcore/skeleton/src/svg/donut-chart-halfsize.svg index 1a8932c164..b35a514089 100644 --- a/semcore/skeleton/src/svg/donut-chart-halfsize.svg +++ b/semcore/skeleton/src/svg/donut-chart-halfsize.svg @@ -1,4 +1,4 @@ - - + + diff --git a/semcore/skeleton/src/svg/donut-chart.svg b/semcore/skeleton/src/svg/donut-chart.svg index 43da5f8090..b6de3bb6b0 100644 --- a/semcore/skeleton/src/svg/donut-chart.svg +++ b/semcore/skeleton/src/svg/donut-chart.svg @@ -1,9 +1,5 @@ - - - - - - - + + + diff --git a/semcore/skeleton/src/svg/histogram-chart-horizontal.svg b/semcore/skeleton/src/svg/histogram-chart-horizontal.svg index 0a00a30da5..a097603642 100644 --- a/semcore/skeleton/src/svg/histogram-chart-horizontal.svg +++ b/semcore/skeleton/src/svg/histogram-chart-horizontal.svg @@ -1,6 +1,6 @@ - - - - + + + + diff --git a/semcore/skeleton/src/svg/histogram-chart-vertical.svg b/semcore/skeleton/src/svg/histogram-chart-vertical.svg index d6a82056c6..2d2238cb8e 100644 --- a/semcore/skeleton/src/svg/histogram-chart-vertical.svg +++ b/semcore/skeleton/src/svg/histogram-chart-vertical.svg @@ -1,7 +1,7 @@ - - - - - + + + + + diff --git a/semcore/skeleton/src/svg/line-chart-linear.svg b/semcore/skeleton/src/svg/line-chart-linear.svg index 836561266e..578d2cd201 100644 --- a/semcore/skeleton/src/svg/line-chart-linear.svg +++ b/semcore/skeleton/src/svg/line-chart-linear.svg @@ -1,10 +1,3 @@ - - - - - - - - + diff --git a/semcore/skeleton/src/svg/line-chart-monotone.svg b/semcore/skeleton/src/svg/line-chart-monotone.svg index 049540b8d1..01ee02076c 100644 --- a/semcore/skeleton/src/svg/line-chart-monotone.svg +++ b/semcore/skeleton/src/svg/line-chart-monotone.svg @@ -1,3 +1,3 @@ - + diff --git a/semcore/skeleton/src/svg/radial-chart.svg b/semcore/skeleton/src/svg/radial-chart.svg index f689ebb4b7..4aaf6e4cc6 100644 --- a/semcore/skeleton/src/svg/radial-chart.svg +++ b/semcore/skeleton/src/svg/radial-chart.svg @@ -1,19 +1,19 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/semcore/skeleton/src/svg/scatter-plot-chart.svg b/semcore/skeleton/src/svg/scatter-plot-chart.svg index 1c0fc1a9be..7fc12c70b3 100644 --- a/semcore/skeleton/src/svg/scatter-plot-chart.svg +++ b/semcore/skeleton/src/svg/scatter-plot-chart.svg @@ -1,16 +1,9 @@ - - - - - - - - - - - - - - + + + + + + + diff --git a/semcore/skeleton/src/svg/venn-chart.svg b/semcore/skeleton/src/svg/venn-chart.svg index 66cc8767f8..2fac798486 100644 --- a/semcore/skeleton/src/svg/venn-chart.svg +++ b/semcore/skeleton/src/svg/venn-chart.svg @@ -1,13 +1,4 @@ - - - - - - - - - - - + + diff --git a/semcore/slider/__tests__/slider.browser-test.tsx-snapshots/-visual-Verify-slider-with-input-validation-states-1-chromium-linux.png b/semcore/slider/__tests__/slider.browser-test.tsx-snapshots/-visual-Verify-slider-with-input-validation-states-1-chromium-linux.png index 6d4f559585..83987632f5 100644 Binary files a/semcore/slider/__tests__/slider.browser-test.tsx-snapshots/-visual-Verify-slider-with-input-validation-states-1-chromium-linux.png and b/semcore/slider/__tests__/slider.browser-test.tsx-snapshots/-visual-Verify-slider-with-input-validation-states-1-chromium-linux.png differ diff --git a/semcore/slider/__tests__/slider.browser-test.tsx-snapshots/-visual-Verify-slider-with-input-validation-states-1-firefox-linux.png b/semcore/slider/__tests__/slider.browser-test.tsx-snapshots/-visual-Verify-slider-with-input-validation-states-1-firefox-linux.png index c3d6149625..02f112a9b3 100644 Binary files a/semcore/slider/__tests__/slider.browser-test.tsx-snapshots/-visual-Verify-slider-with-input-validation-states-1-firefox-linux.png and b/semcore/slider/__tests__/slider.browser-test.tsx-snapshots/-visual-Verify-slider-with-input-validation-states-1-firefox-linux.png differ diff --git a/semcore/slider/__tests__/slider.browser-test.tsx-snapshots/-visual-Verify-slider-with-input-validation-states-1-webkit-linux.png b/semcore/slider/__tests__/slider.browser-test.tsx-snapshots/-visual-Verify-slider-with-input-validation-states-1-webkit-linux.png index 1afc75add9..d286183a07 100644 Binary files a/semcore/slider/__tests__/slider.browser-test.tsx-snapshots/-visual-Verify-slider-with-input-validation-states-1-webkit-linux.png and b/semcore/slider/__tests__/slider.browser-test.tsx-snapshots/-visual-Verify-slider-with-input-validation-states-1-webkit-linux.png differ diff --git a/semcore/slider/src/style/slider.shadow.css b/semcore/slider/src/style/slider.shadow.css index b63325e5a7..e7936885d1 100644 --- a/semcore/slider/src/style/slider.shadow.css +++ b/semcore/slider/src/style/slider.shadow.css @@ -15,11 +15,11 @@ SSlider { height: 4px; width: 100%; border-radius: var(--intergalactic-progress-bar-rounded, 6px); - background-color: var(--intergalactic-border-secondary, oklch(0.176 0.033 175.7 / 0.07)); + background-color: var(--intergalactic-border-secondary, oklch(0.176 0.033 175.7 / 0.07)); /* TODO: --intergalactic-control-slider-bar-bg */ } &:hover:before { - background-color: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); + background-color: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); /* TODO: --intergalactic-control-slider-bar-bg-hover */ } &:active SKnob, @@ -50,7 +50,7 @@ SBar { border-radius: var(--intergalactic-progress-bar-rounded, 6px); box-sizing: border-box; background-size: 12px; - background-color: var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); + background-color: var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); /* TODO: --intergalactic-control-slider-bar-value-bg */ cursor: pointer; transition: calc(var(--intergalactic-duration-control, 200) * 1ms) width ease-in-out; } @@ -62,14 +62,14 @@ SKnob { width: 20px; border-radius: 50%; box-sizing: border-box; - background-color: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); - border: 5px solid var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); + background-color: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); /* TODO: --intergalactic-control-slider-knob-bg */ + border: 5px solid var(--intergalactic-control-primary-info, oklch(0.23 0.01 140)); /* TODO: --intergalactic-control-slider-knob-border */ cursor: pointer; transform: translate(-50%, -50%); transition: calc(var(--intergalactic-duration-control, 200) * 1ms) left ease-in-out; &:hover { - border-color: var(--intergalactic-control-primary-info-hover, oklch(0.32 0.007 140)); + border-color: var(--intergalactic-control-primary-info-hover, oklch(0.32 0.007 140)); /* TODO: --intergalactic-control-slider-knob-border-hover */ } } diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx b/semcore/spin-container/__tests__/spin-container.browser-test.tsx index ea3f938782..b43e967cfa 100644 --- a/semcore/spin-container/__tests__/spin-container.browser-test.tsx +++ b/semcore/spin-container/__tests__/spin-container.browser-test.tsx @@ -1,8 +1,22 @@ -import type { Page } from '@semcore/testing-utils/playwright'; +import type { Locator, Page } from '@semcore/testing-utils/playwright'; import { expect, test } from '@semcore/testing-utils/playwright'; import { loadPage } from '@semcore/testing-utils/shared/helpers'; import { TAG } from '@semcore/testing-utils/shared/tags'; +const ALL_SIZES_EXAMPLE = 'stories/components/spin-container/advanced/examples/all-sizes.tsx'; +const BASE_EXAMPLE = 'stories/components/spin-container/tests/examples/spin-container-base.tsx'; +const CONTENT_EXAMPLE = 'stories/components/spin-container/docs/examples/usage_in_content.tsx'; + +/** size: rendered box of the nested Spin */ +const SIZES = { + xs: '16px', + s: '20px', + m: '24px', + l: '32px', + xl: '48px', + xxl: '72px', +} as const; + export const locators = { spinContainer: (page: Page, index?: number) => { const base = page.locator('[data-ui-name="SpinContainer"]'); @@ -28,119 +42,248 @@ export const locators = { const base = page.locator('[data-ui-name="Input.Value"]'); return typeof index === 'number' ? base.nth(index) : base; }, - flex: (page: Page, index?: number) => { - const base = page.locator('[data-ui-name="Flex"]'); - return typeof index === 'number' ? base.nth(index) : base; - }, fadeInOut: (page: Page, index?: number) => { const base = page.locator('[data-ui-name="FadeInOut"]'); return typeof index === 'number' ? base.nth(index) : base; }, + // areas of the examples, so screenshots stay scoped to the container itself + area: (page: Page, testId: string) => page.locator(`[data-testid="${testId}"]`), +}; + +const computed = (locator: Locator, property: string) => + locator.evaluate((el, prop) => getComputedStyle(el).getPropertyValue(prop), property); + +const expectStableSpinScreenshot = async (page: Page, locator: Locator) => { + await page.addStyleTag({ + content: ` + [data-ui-name="Spin"], + [data-ui-name="Spin"] circle { + animation-delay: -1s !important; + animation-play-state: paused !important; + } + `, + }); + await expect(locator).toHaveScreenshot(); }; /* ===================================================== @visual -Visual states, hover and focus styles, paddings, margins, and snapshots. +Visual states, paddings, margins, and snapshots. +Snapshots are always scoped to the container area, never the whole page. ===================================================== */ test.describe(`${TAG.VISUAL}`, () => { - test('Verify sizes and theme', { + test('Verify all sizes and themes', { tag: [TAG.PRIORITY_HIGH, '@spin-container'], }, async ({ page }) => { - await loadPage(page, 'stories/components/spin-container/tests/examples/sizes.tsx', 'en'); - - await test.step('Verify screenshot', async () => { - await expect(page).toHaveScreenshot(); - }); - - await test.step('Verify sizes and themes', async () => { - const sizes = { - xs: '16px', - s: '20px', - m: '24px', - l: '32px', - xl: '48px', - xxl: '72px', - }; + await loadPage(page, ALL_SIZES_EXAMPLE, 'en'); - const themes = ['dark', 'invert']; + const sizes = Object.entries(SIZES); - for (const [themeIndex, theme] of themes.entries()) { - const spinContainer = locators.flex(page, themeIndex).locator('[data-ui-name="SpinContainer"]'); - - for (const [size, expectedPx] of Object.entries(sizes)) { - const spinner = spinContainer.locator(`svg[class*="size_${size}"]`); + // the example renders the full size scale twice: default theme, then invert theme + for (const [themeIndex, theme] of ['default', 'invert'].entries()) { + for (const [sizeIndex, [size, expectedPx]] of sizes.entries()) { + const spinner = locators.spin(page, themeIndex * sizes.length + sizeIndex); + await test.step(`Verify size="${size}" (${theme} theme)`, async () => { await expect(spinner).toBeVisible(); - const [height, width] = await Promise.all([ - spinner.evaluate((el) => getComputedStyle(el).height), - spinner.evaluate((el) => getComputedStyle(el).width), - ]); - - expect(height).toBe(expectedPx); - expect(width).toBe(expectedPx); + expect(await computed(spinner, 'height')).toBe(expectedPx); + expect(await computed(spinner, 'width')).toBe(expectedPx); const style = await spinner.getAttribute('style'); expect(style).toContain(`${theme};`); - } + }); } + } + + await test.step('Verify screenshot', async () => { + await expectStableSpinScreenshot(page, locators.area(page, 'spin-container-all-sizes')); }); }); - test('Verify custom backgrounds with themes and overlay and theme', { + test('Verify default theme overlay', { + tag: [TAG.PRIORITY_HIGH, '@spin-container'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'default' }); + + const overlay = locators.spinContainerOverlay(page, 0); + await expect(overlay).toBeVisible(); + expect(await computed(overlay, 'background-color')).not.toBe('rgba(0, 0, 0, 0)'); + + await expectStableSpinScreenshot(page, locators.area(page, 'spin-container-static')); + }); + + test('Verify invert theme overlay on inverted background', { + tag: [TAG.PRIORITY_HIGH, '@spin-container'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'invert' }); + + const spinner = locators.spin(page, 2); + const style = await spinner.getAttribute('style'); + expect(style).toContain('invert'); + + await expectStableSpinScreenshot(page, locators.area(page, 'spin-container-invert-bg')); + }); + + test('Verify custom overlay backgrounds', { tag: [TAG.PRIORITY_MEDIUM, '@spin-container'], }, async ({ page }) => { - await loadPage(page, 'stories/components/spin-container/tests/examples/custom-background.tsx', 'en'); + test.slow(); + + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'default' }); + const themeBackground = await computed( + locators.spinContainerOverlay(page, 0), + 'background-color', + ); - await expect(page).toHaveScreenshot(); + for (const [background, expectedInStyle] of [ + ['blanchedalmond', 'blanchedalmond'], + ['#3eeb4c', '3eeb4c'], + ['dark-violet', '8649e1'], + ] as const) { + await test.step(`Verify background="${background}"`, async () => { + await loadPage(page, BASE_EXAMPLE, 'en', { background }); + + const overlay = locators.spinContainerOverlay(page, 0); + const style = await overlay.getAttribute('style'); + expect(style).toContain(expectedInStyle); + + // a custom background must win over the theme background + expect(await computed(overlay, 'background-color')).not.toBe(themeBackground); + }); + } + + await loadPage(page, BASE_EXAMPLE, 'en', { background: 'blanchedalmond' }); + await expectStableSpinScreenshot(page, locators.area(page, 'spin-container-static')); }); - test('Verify when elements and spin container added', { + test('Verify overlay is not rendered when loading is false', { tag: [TAG.PRIORITY_HIGH, '@spin-container'], }, async ({ page }) => { - await loadPage(page, 'stories/components/spin-container/tests/examples/over-interactive-content.tsx', 'en'); + await loadPage(page, BASE_EXAMPLE, 'en', { loading: false }); - await expect(page).toHaveScreenshot(); + await expect(locators.fadeInOut(page)).toHaveCount(0); + await expect(locators.spin(page)).toHaveCount(0); + + await expectStableSpinScreenshot(page, locators.area(page, 'spin-container-static')); + }); + + test('Verify advanced mode with custom overlay content', { + tag: [TAG.PRIORITY_MEDIUM, '@spin-container'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { + advancedMode: true, + overlayText: 'Loading data…', + }); + + const overlay = locators.spinContainerOverlay(page, 0); + + await expect(locators.spinContainerContent(page, 0)).toBeVisible(); + await expect(overlay).toContainText('Loading data…'); + // custom children replace the default spinner + await expect(overlay.locator('[data-ui-name="Spin"]')).toHaveCount(0); + + await expectStableSpinScreenshot(page, locators.area(page, 'spin-container-static')); }); }); /* ===================================================== @functional -Keyboard and mouse interactions - no snapshots here. -We verify states, visibility, and attributes. +Keyboard and mouse interactions, attributes and prop forwarding - no snapshots here. ===================================================== */ test.describe(`${TAG.FUNCTIONAL}`, () => { - test('Verify interactions when elements when spin container added', { + test('Verify content is inert and unreachable by keyboard while loading', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@spin-container'], }, async ({ page }) => { - await loadPage(page, 'stories/components/spin-container/tests/examples/over-interactive-content.tsx', 'en'); + await loadPage(page, BASE_EXAMPLE, 'en', { loading: true }); - await test.step('Verify tab navigation to first input', async () => { - await page.keyboard.press('Tab'); - await expect(locators.input(page, 0)).toBeFocused(); + await test.step('Verify content is inert', async () => { + await expect(locators.spinContainerContent(page, 1)).toHaveAttribute('inert', ''); }); - await test.step('Verify tab navigation to second input', async () => { + await test.step('Verify input cannot be focused', async () => { await page.keyboard.press('Tab'); - await expect(locators.input(page, 1)).toBeFocused(); + await expect(locators.input(page, 0)).not.toBeFocused(); }); - await test.step('Verify third input is not focusable due to overlay', async () => { - await page.keyboard.press('Tab'); - await expect(locators.input(page, 2)).not.toBeFocused(); + await test.step('Verify overlay is not focusable', async () => { await expect(locators.spinContainerOverlay(page, 0)).not.toBeFocused(); }); + }); - await test.step('Verify overlay is not focusable', async () => { - await page.keyboard.press('Tab'); - await expect(locators.spinContainerOverlay(page, 1)).not.toBeFocused(); + test('Verify content is reachable by keyboard when not loading', { + tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, '@spin-container'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { loading: false }); + + await expect(locators.spinContainerContent(page, 1)).not.toHaveAttribute('inert', ''); + + await page.keyboard.press('Tab'); + await expect(locators.input(page, 0)).toBeFocused(); + }); + + test('Verify size and theme are forwarded to the nested Spin', { + tag: [TAG.PRIORITY_HIGH, '@spin-container'], + }, async ({ page }) => { + await test.step('Verify size', async () => { + await loadPage(page, BASE_EXAMPLE, 'en', { size: 'xs' }); + + const spinner = locators.spin(page, 0); + expect(await computed(spinner, 'width')).toBe('16px'); + expect(await computed(spinner, 'height')).toBe('16px'); + }); + + await test.step('Verify theme', async () => { + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'invert' }); + + const style = await locators.spin(page, 0).getAttribute('style'); + expect(style).toContain('invert'); }); }); + test('Verify deprecated theme="dark" renders as default', { + tag: [TAG.PRIORITY_HIGH, '@spin-container'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'default' }); + const defaultBackground = await computed( + locators.spinContainerOverlay(page, 0), + 'background-color', + ); + + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'dark' }); + const darkBackground = await computed( + locators.spinContainerOverlay(page, 0), + 'background-color', + ); + + expect(darkBackground).toBe(defaultBackground); + }); + + test('Verify duration prop drives the overlay animation', { + tag: [TAG.PRIORITY_MEDIUM, '@spin-container'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { duration: 1000 }); + + expect(await computed(locators.fadeInOut(page, 0), 'animation-duration')).toBe('1s'); + }); + + test('Verify box props', { + tag: [TAG.PRIORITY_MEDIUM, '@spin-container'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { w: 250, h: 250, m: 4, p: 4 }); + + const spinContainer = locators.spinContainer(page, 0); + + expect(await computed(spinContainer, 'width')).toBe('250px'); + expect(await computed(spinContainer, 'height')).toBe('250px'); + expect(await computed(spinContainer, 'margin')).toBe('16px'); + expect(await computed(spinContainer, 'padding')).toBe('16px'); + }); + test('Verify spin container attributes when loading and not loading', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@spin-container'], }, async ({ page }) => { - await loadPage(page, 'stories/components/spin-container/docs/examples/usage_in_content.tsx', 'en'); + await loadPage(page, CONTENT_EXAMPLE, 'en'); await test.step('Verify spin container attributes when loading', async () => { await expect(locators.spinContainer(page)).toHaveAttribute('aria-live', 'polite'); diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-advanced-mode-with-custom-overlay-content-1-chromium-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-advanced-mode-with-custom-overlay-content-1-chromium-linux.png new file mode 100644 index 0000000000..b89231a801 Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-advanced-mode-with-custom-overlay-content-1-chromium-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-advanced-mode-with-custom-overlay-content-1-firefox-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-advanced-mode-with-custom-overlay-content-1-firefox-linux.png new file mode 100644 index 0000000000..2944a889a1 Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-advanced-mode-with-custom-overlay-content-1-firefox-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-advanced-mode-with-custom-overlay-content-1-webkit-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-advanced-mode-with-custom-overlay-content-1-webkit-linux.png new file mode 100644 index 0000000000..0dc9bdfe6a Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-advanced-mode-with-custom-overlay-content-1-webkit-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-themes-1-chromium-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-themes-1-chromium-linux.png new file mode 100644 index 0000000000..34eeb2abad Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-themes-1-chromium-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-themes-1-firefox-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-themes-1-firefox-linux.png new file mode 100644 index 0000000000..da50c2cc6d Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-themes-1-firefox-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-themes-1-webkit-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-themes-1-webkit-linux.png new file mode 100644 index 0000000000..165b6a2227 Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-themes-1-webkit-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-backgrounds-with-themes-and-overlay-and-theme-1-chromium-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-backgrounds-with-themes-and-overlay-and-theme-1-chromium-linux.png deleted file mode 100644 index cfe1dfc4b4..0000000000 Binary files a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-backgrounds-with-themes-and-overlay-and-theme-1-chromium-linux.png and /dev/null differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-backgrounds-with-themes-and-overlay-and-theme-1-firefox-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-backgrounds-with-themes-and-overlay-and-theme-1-firefox-linux.png deleted file mode 100644 index 07e00e16e8..0000000000 Binary files a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-backgrounds-with-themes-and-overlay-and-theme-1-firefox-linux.png and /dev/null differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-backgrounds-with-themes-and-overlay-and-theme-1-webkit-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-backgrounds-with-themes-and-overlay-and-theme-1-webkit-linux.png deleted file mode 100644 index 0ce23eb752..0000000000 Binary files a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-backgrounds-with-themes-and-overlay-and-theme-1-webkit-linux.png and /dev/null differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-overlay-backgrounds-1-chromium-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-overlay-backgrounds-1-chromium-linux.png new file mode 100644 index 0000000000..0fcc89b408 Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-overlay-backgrounds-1-chromium-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-overlay-backgrounds-1-firefox-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-overlay-backgrounds-1-firefox-linux.png new file mode 100644 index 0000000000..fed5baf4fa Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-overlay-backgrounds-1-firefox-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-overlay-backgrounds-1-webkit-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-overlay-backgrounds-1-webkit-linux.png new file mode 100644 index 0000000000..3e8b250e18 Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-custom-overlay-backgrounds-1-webkit-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-default-theme-overlay-1-chromium-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-default-theme-overlay-1-chromium-linux.png new file mode 100644 index 0000000000..2524d46fb2 Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-default-theme-overlay-1-chromium-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-default-theme-overlay-1-firefox-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-default-theme-overlay-1-firefox-linux.png new file mode 100644 index 0000000000..44ead96f10 Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-default-theme-overlay-1-firefox-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-default-theme-overlay-1-webkit-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-default-theme-overlay-1-webkit-linux.png new file mode 100644 index 0000000000..711165074e Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-default-theme-overlay-1-webkit-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-invert-theme-overlay-on-inverted-background-1-chromium-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-invert-theme-overlay-on-inverted-background-1-chromium-linux.png new file mode 100644 index 0000000000..15ac99449a Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-invert-theme-overlay-on-inverted-background-1-chromium-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-invert-theme-overlay-on-inverted-background-1-firefox-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-invert-theme-overlay-on-inverted-background-1-firefox-linux.png new file mode 100644 index 0000000000..0e3f2f574b Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-invert-theme-overlay-on-inverted-background-1-firefox-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-invert-theme-overlay-on-inverted-background-1-webkit-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-invert-theme-overlay-on-inverted-background-1-webkit-linux.png new file mode 100644 index 0000000000..a9a2b155eb Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-invert-theme-overlay-on-inverted-background-1-webkit-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-overlay-is-not-rendered-when-loading-is-false-1-chromium-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-overlay-is-not-rendered-when-loading-is-false-1-chromium-linux.png new file mode 100644 index 0000000000..2daf3ed151 Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-overlay-is-not-rendered-when-loading-is-false-1-chromium-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-overlay-is-not-rendered-when-loading-is-false-1-firefox-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-overlay-is-not-rendered-when-loading-is-false-1-firefox-linux.png new file mode 100644 index 0000000000..d47e03553d Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-overlay-is-not-rendered-when-loading-is-false-1-firefox-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-overlay-is-not-rendered-when-loading-is-false-1-webkit-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-overlay-is-not-rendered-when-loading-is-false-1-webkit-linux.png new file mode 100644 index 0000000000..4093acca4a Binary files /dev/null and b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-overlay-is-not-rendered-when-loading-is-false-1-webkit-linux.png differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-sizes-and-theme-1-chromium-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-sizes-and-theme-1-chromium-linux.png deleted file mode 100644 index ab7b838c8c..0000000000 Binary files a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-sizes-and-theme-1-chromium-linux.png and /dev/null differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-sizes-and-theme-1-firefox-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-sizes-and-theme-1-firefox-linux.png deleted file mode 100644 index c63a6ae537..0000000000 Binary files a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-sizes-and-theme-1-firefox-linux.png and /dev/null differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-sizes-and-theme-1-webkit-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-sizes-and-theme-1-webkit-linux.png deleted file mode 100644 index 2c7848a94d..0000000000 Binary files a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-sizes-and-theme-1-webkit-linux.png and /dev/null differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-when-elements-and-spin-container-added-1-chromium-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-when-elements-and-spin-container-added-1-chromium-linux.png deleted file mode 100644 index 156725fb55..0000000000 Binary files a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-when-elements-and-spin-container-added-1-chromium-linux.png and /dev/null differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-when-elements-and-spin-container-added-1-firefox-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-when-elements-and-spin-container-added-1-firefox-linux.png deleted file mode 100644 index 2a5bd8a58b..0000000000 Binary files a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-when-elements-and-spin-container-added-1-firefox-linux.png and /dev/null differ diff --git a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-when-elements-and-spin-container-added-1-webkit-linux.png b/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-when-elements-and-spin-container-added-1-webkit-linux.png deleted file mode 100644 index 0d5fd8c41e..0000000000 Binary files a/semcore/spin-container/__tests__/spin-container.browser-test.tsx-snapshots/-visual-Verify-when-elements-and-spin-container-added-1-webkit-linux.png and /dev/null differ diff --git a/semcore/spin-container/src/SpinContainer.tsx b/semcore/spin-container/src/SpinContainer.tsx index e561d24108..4db7410f00 100644 --- a/semcore/spin-container/src/SpinContainer.tsx +++ b/semcore/spin-container/src/SpinContainer.tsx @@ -25,7 +25,7 @@ class SpinContainerRoot extends Component< static style = style; static defaultProps = { size: 'xxl', - theme: 'dark', + theme: 'default', duration: 200, } as const; diff --git a/semcore/spin-container/src/SpinContainer.type.ts b/semcore/spin-container/src/SpinContainer.type.ts index dbae3a514e..dc7d7a85cc 100644 --- a/semcore/spin-container/src/SpinContainer.type.ts +++ b/semcore/spin-container/src/SpinContainer.type.ts @@ -20,7 +20,7 @@ declare namespace NSSpinContainer { }; type DefaultProps = { size: 'xxl'; - theme: 'dark'; + theme: 'default'; duration: 200; }; type Ctx = { diff --git a/semcore/spin-container/src/style/spin-container.shadow.css b/semcore/spin-container/src/style/spin-container.shadow.css index 2b528f3fff..ac7b43ead2 100644 --- a/semcore/spin-container/src/style/spin-container.shadow.css +++ b/semcore/spin-container/src/style/spin-container.shadow.css @@ -23,10 +23,10 @@ SOverlay { } SOverlay[theme='invert'] { - background-color: var(--intergalactic-overlay-secondary, oklch(0.118 0.023 170.1 / 0.262)); + background-color: var(--intergalactic-overlay-primary, oklch(0.109 0.023 165.5 / 0.337)); } -SOverlay[theme='dark'] { +SOverlay[theme='default'], SOverlay[theme='dark'] { background-color: var(--intergalactic-overlay-limitation-secondary, oklch(1 0 0 / 0.85)); } diff --git a/semcore/spin/__tests__/spin.browser-test.tsx b/semcore/spin/__tests__/spin.browser-test.tsx index ca8335acbf..22b1904c5a 100644 --- a/semcore/spin/__tests__/spin.browser-test.tsx +++ b/semcore/spin/__tests__/spin.browser-test.tsx @@ -1,159 +1,234 @@ -import type { Page } from '@semcore/testing-utils/playwright'; +import type { Locator, Page } from '@semcore/testing-utils/playwright'; import { expect, test } from '@semcore/testing-utils/playwright'; import { loadPage } from '@semcore/testing-utils/shared/helpers'; import { TAG } from '@semcore/testing-utils/shared/tags'; +const ALL_SIZES_EXAMPLE = 'stories/components/spin/advanced/examples/all-sizes.tsx'; +const BASE_EXAMPLE = 'stories/components/spin/tests/examples/spin-base.tsx'; +const BASIC_EXAMPLE = 'stories/components/spin/docs/examples/basic_example.tsx'; + +/** size: [rendered box in px, stroke-width] */ +const SIZES = { + xs: [16, 2], + s: [20, 2.5], + m: [24, 3], + l: [32, 3.5], + xl: [48, 4], + xxl: [72, 5], +} as const; + export const locators = { spin: (page: Page, index?: number) => { const base = page.locator('svg[role="img"]'); return typeof index === 'number' ? base.nth(index) : base; }, + circle: (spin: Locator) => spin.locator('circle'), button: (page: Page, index?: number) => { const base = page.locator('[data-ui-name="Button"]'); return typeof index === 'number' ? base.nth(index) : base; }, + area: (page: Page, testId: string) => page.locator(`[data-testid="${testId}"]`), +}; + +const computed = (locator: Locator, property: string) => + locator.evaluate( + (el, prop) => getComputedStyle(el).getPropertyValue(prop), + property, + ); + +const expectStableSpinScreenshot = async (page: Page, locator: Locator) => { + await page.addStyleTag({ + content: ` + [data-ui-name="Spin"], + [data-ui-name="Spin"] circle { + animation-delay: -1s !important; + animation-play-state: paused !important; + } + `, + }); + await expect(locator).toHaveScreenshot(); }; /* ===================================================== @visual -Visual states, hover and focus styles, paddings, margins, and snapshots. +Visual states, paddings, margins, and snapshots. +Snapshots are always scoped to the spin area, never the whole page. ===================================================== */ test.describe(`${TAG.VISUAL}`, () => { - test('Verify spin with correct sizes and right text', { + test('Verify all sizes and stroke widths', { tag: [TAG.PRIORITY_HIGH, '@spin'], }, async ({ page }) => { - await loadPage(page, 'stories/components/spin/tests/examples/spin-sizes.tsx', 'en'); - - await test.step('Verify screenshot', async () => { - await expect(page).toHaveScreenshot(); - }); + await loadPage(page, ALL_SIZES_EXAMPLE, 'en'); - await test.step('Verify sizes', async () => { - const sizes = { - xs: '16px', - s: '20px', - m: '24px', - l: '32px', - xl: '48px', - xxl: '72px', - }; + const entries = Object.entries(SIZES); - for (const [size, expectedPx] of Object.entries(sizes)) { - const spinner = page.locator(`svg[class*="size_${size}"]`); + // the example renders the full size scale twice: default theme, then invert theme + for (const [themeIndex, themeName] of ['default', 'invert'].entries()) { + for (const [sizeIndex, [size, [expectedPx, expectedStroke]]] of entries.entries()) { + const spin = locators.spin(page, themeIndex * entries.length + sizeIndex); - await expect(spinner).toBeVisible(); + await test.step(`Verify size="${size}" (${themeName} theme)`, async () => { + await expect(spin).toBeVisible(); - const height = await spinner.evaluate((el) => getComputedStyle(el).height); - const width = await spinner.evaluate((el) => getComputedStyle(el).width); + expect(await computed(spin, 'width')).toBe(`${expectedPx}px`); + expect(await computed(spin, 'height')).toBe(`${expectedPx}px`); - expect(height).toBe(expectedPx); - expect(width).toBe(expectedPx); + // size is driven by SVG attributes now, not by CSS rules + await expect(spin).toHaveAttribute('width', String(expectedPx)); + await expect(spin).toHaveAttribute('height', String(expectedPx)); - const style = await spinner.getAttribute('style'); - expect(style).toContain('dark'); + const circle = locators.circle(spin); + await expect(circle).toHaveAttribute('stroke-width', String(expectedStroke)); + // the arc must stay inside the viewport: r = (size - strokeWidth) / 2 + await expect(circle).toHaveAttribute('r', String((expectedPx - expectedStroke) / 2)); + }); } + } + + await test.step('Verify screenshot', async () => { + await expectStableSpinScreenshot(page, locators.area(page, 'spin-all-sizes')); }); }); - test('Verify spin with bottom text', { + test('Verify default theme', { tag: [TAG.PRIORITY_HIGH, '@spin'], }, async ({ page }) => { - await loadPage(page, 'stories/components/spin/tests/examples/spin-sizes-bottom-text.tsx', 'en'); + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'default' }); - await expect(page).toHaveScreenshot(); + const spin = locators.spin(page, 0); + const style = await spin.getAttribute('style'); + expect(style).toContain('default'); + + await expectStableSpinScreenshot(page, locators.area(page, 'spin-default-bg')); }); - test('Verify themes and default sizes', { + test('Verify invert theme on inverted background', { tag: [TAG.PRIORITY_HIGH, '@spin'], }, async ({ page }) => { - await loadPage(page, 'stories/components/spin/tests/examples/spin-theme.tsx', 'en'); + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'invert' }); - await test.step('Verify theme styles', async () => { - const styleDark = await locators.spin(page, 0).getAttribute('style'); - expect(styleDark).toContain('dark'); + const spin = locators.spin(page, 1); + const style = await spin.getAttribute('style'); + expect(style).toContain('invert'); - const styleInvert = await locators.spin(page, 1).getAttribute('style'); - expect(styleInvert).toContain('invert'); - }); + await expectStableSpinScreenshot(page, locators.area(page, 'spin-invert-bg')); + }); - await test.step('Verify default size', async () => { - const height = await locators.spin(page, 1).evaluate((el) => getComputedStyle(el).height); - const width = await locators.spin(page, 1).evaluate((el) => getComputedStyle(el).width); + test('Verify custom color themes', { + tag: [TAG.PRIORITY_MEDIUM, '@spin'], + }, async ({ page }) => { + test.slow(); + + for (const [theme, expectedInStyle] of [ + ['blanchedalmond', 'blanchedalmond'], + ['#3eeb4c', '3eeb4c'], + ['dark-violet', '8649e1'], + ['blue-400', ''], + ] as const) { + await test.step(`Verify theme="${theme}"`, async () => { + await loadPage(page, BASE_EXAMPLE, 'en', { theme }); + + const spin = locators.spin(page, 0); + const style = await spin.getAttribute('style'); + + if (expectedInStyle) { + expect(style).toContain(expectedInStyle); + } + + // whatever the input format, the stroke must resolve to a real color + const stroke = await computed(locators.circle(spin), 'stroke'); + expect(stroke).not.toBe(''); + expect(stroke).not.toContain(theme); + }); + } + + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'blanchedalmond' }); + await expectStableSpinScreenshot(page, locators.area(page, 'spin-default-bg')); + }); - expect(height).toBe('24px'); - expect(width).toBe('24px'); - }); + test('Verify centered spin inside a flex parent', { + tag: [TAG.PRIORITY_MEDIUM, '@spin'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { centered: true, size: 'xl' }); - await test.step('Verify screenshot', async () => { - await expect(page).toHaveScreenshot(); - }); + const parent = locators.area(page, 'spin-centered-parent'); + const spin = locators.spin(page, 2); + + const parentBox = await parent.boundingBox(); + const spinBox = await spin.boundingBox(); + + expect(parentBox).not.toBeNull(); + expect(spinBox).not.toBeNull(); + + // margin: auto centers the spinner in both axes inside a flex parent + const parentCenterX = parentBox!.x + parentBox!.width / 2; + const spinCenterX = spinBox!.x + spinBox!.width / 2; + const parentCenterY = parentBox!.y + parentBox!.height / 2; + const spinCenterY = spinBox!.y + spinBox!.height / 2; + + expect(Math.abs(parentCenterX - spinCenterX)).toBeLessThanOrEqual(1); + expect(Math.abs(parentCenterY - spinCenterY)).toBeLessThanOrEqual(1); + + await expectStableSpinScreenshot(page, locators.area(page, 'spin-centered-parent')); }); +}); - test('Verify custom themes and default sizes', { +/* ===================================================== +@functional +Attributes, themes, locales - no snapshots here. +===================================================== */ +test.describe(`${TAG.FUNCTIONAL}`, () => { + test('Verify aria-label is localized', { tag: [TAG.PRIORITY_MEDIUM, '@spin'], }, async ({ page }) => { - await loadPage(page, 'stories/components/spin/tests/examples/spin-custom-theme.tsx', 'en'); + await loadPage(page, BASE_EXAMPLE, 'de', { locale: 'de' }); - await test.step('Verify custom theme colors', async () => { - const styleFirst = await locators.spin(page, 0).getAttribute('style'); - expect(styleFirst).toContain('blanchedalmond'); + await expect(locators.spin(page, 0)).toHaveAttribute('aria-label', 'Wird geladen …'); + }); - const styleSecond = await locators.spin(page, 1).getAttribute('style'); - expect(styleSecond).toContain('3eeb4c'); + test('Verify deprecated theme="dark" still renders as default', { + tag: [TAG.PRIORITY_HIGH, '@spin'], + }, async ({ page }) => { + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'default' }); + const defaultStroke = await computed(locators.circle(locators.spin(page, 0)), 'stroke'); - const styleThird = await locators.spin(page, 2).getAttribute('style'); - expect(styleThird).toContain('8649e1'); - }); + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'dark' }); + const darkStroke = await computed(locators.circle(locators.spin(page, 0)), 'stroke'); - await test.step('Verify screenshot', async () => { - await expect(page).toHaveScreenshot(); - }); + expect(darkStroke).toBe(defaultStroke); }); - test('Verify spin box props', { - tag: [TAG.PRIORITY_MEDIUM, '@spin'], + test('Verify invert theme resolves to a different color than default', { + tag: [TAG.PRIORITY_HIGH, '@spin'], }, async ({ page }) => { - await loadPage(page, 'stories/components/spin/tests/examples/spin-box-props.tsx', 'en'); + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'default' }); + const defaultStroke = await computed(locators.circle(locators.spin(page, 1)), 'stroke'); - await test.step('Verify custom width', async () => { - const customWidth = await locators.spin(page, 0).evaluate((el) => getComputedStyle(el).width); - expect(customWidth).toBe('50px'); - }); + await loadPage(page, BASE_EXAMPLE, 'en', { theme: 'invert' }); + const invertStroke = await computed(locators.circle(locators.spin(page, 1)), 'stroke'); - await test.step('Verify custom height', async () => { - const customHeight = await locators.spin(page, 1).evaluate((el) => getComputedStyle(el).height); - expect(customHeight).toBe('50px'); - }); + expect(invertStroke).not.toBe(''); + expect(invertStroke).not.toBe(defaultStroke); + }); - await test.step('Verify custom width and height together', async () => { - const customWidth = await locators.spin(page, 2).evaluate((el) => getComputedStyle(el).width); - const customHeight = await locators.spin(page, 2).evaluate((el) => getComputedStyle(el).height); - expect(customWidth).toBe('50px'); - expect(customHeight).toBe('50px'); - }); + test('Verify animations are disabled with prefers-reduced-motion', { + tag: [TAG.PRIORITY_MEDIUM, '@spin'], + }, async ({ page }) => { + await page.emulateMedia({ reducedMotion: 'reduce' }); + await loadPage(page, BASE_EXAMPLE, 'en'); - await test.step('Verify margin', async () => { - const margin = await locators.spin(page, 2).evaluate((el) => getComputedStyle(el).margin); - expect(margin).toBe('16px'); - }); + const spin = locators.spin(page, 0); - await test.step('Verify padding', async () => { - const padding = await locators.spin(page, 3).evaluate((el) => getComputedStyle(el).padding); - expect(padding).toBe('16px'); - }); + expect(await computed(spin, 'animation-name')).toBe('none'); + expect(await computed(locators.circle(spin), 'animation-name')).toBe('none'); + + await page.emulateMedia({ reducedMotion: null }); }); -}); -/* ===================================================== -@functional -Keyboard and mouse interactions - no snapshots here. -We verify states, visibility, and attributes. -===================================================== */ -test.describe(`${TAG.FUNCTIONAL}`, () => { test('Verify spin attributes inside table', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, '@spin'], }, async ({ page }) => { - await loadPage(page, 'stories/components/spin/docs/examples/basic_example.tsx', 'en'); + await loadPage(page, BASIC_EXAMPLE, 'en'); const div = page.locator('div[role="status"][aria-live="polite"]'); const svg = div.locator('svg'); @@ -163,7 +238,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { await expect(svg).toHaveAttribute('role', 'img'); await expect(svg).toHaveAttribute('aria-label', 'Loading…'); - await expect(svg).toHaveAttribute('viewBox', '0 0 24 24'); + // default size m: geometry comes from width/height attributes + await expect(svg).toHaveAttribute('width', '20'); + await expect(svg).toHaveAttribute('height', '20'); }); await test.step('Verify spin hides after button click', async () => { diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-stroke-widths-1-chromium-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-stroke-widths-1-chromium-linux.png new file mode 100644 index 0000000000..01b39476ac Binary files /dev/null and b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-stroke-widths-1-chromium-linux.png differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-stroke-widths-1-firefox-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-stroke-widths-1-firefox-linux.png new file mode 100644 index 0000000000..f4dd3c7307 Binary files /dev/null and b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-stroke-widths-1-firefox-linux.png differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-stroke-widths-1-webkit-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-stroke-widths-1-webkit-linux.png new file mode 100644 index 0000000000..6d3c06eeaf Binary files /dev/null and b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-all-sizes-and-stroke-widths-1-webkit-linux.png differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-centered-spin-inside-a-flex-parent-1-chromium-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-centered-spin-inside-a-flex-parent-1-chromium-linux.png new file mode 100644 index 0000000000..cb10793a48 Binary files /dev/null and b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-centered-spin-inside-a-flex-parent-1-chromium-linux.png differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-centered-spin-inside-a-flex-parent-1-firefox-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-centered-spin-inside-a-flex-parent-1-firefox-linux.png new file mode 100644 index 0000000000..bb26d68a6f Binary files /dev/null and b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-centered-spin-inside-a-flex-parent-1-firefox-linux.png differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-centered-spin-inside-a-flex-parent-1-webkit-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-centered-spin-inside-a-flex-parent-1-webkit-linux.png new file mode 100644 index 0000000000..c2bdc91018 Binary files /dev/null and b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-centered-spin-inside-a-flex-parent-1-webkit-linux.png differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-color-themes-1-chromium-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-color-themes-1-chromium-linux.png new file mode 100644 index 0000000000..9aa3daeb35 Binary files /dev/null and b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-color-themes-1-chromium-linux.png differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-color-themes-1-firefox-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-color-themes-1-firefox-linux.png new file mode 100644 index 0000000000..c1684c1ac3 Binary files /dev/null and b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-color-themes-1-firefox-linux.png differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-color-themes-1-webkit-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-color-themes-1-webkit-linux.png new file mode 100644 index 0000000000..2ac092a9cd Binary files /dev/null and b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-color-themes-1-webkit-linux.png differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-themes-and-default-sizes-1-chromium-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-themes-and-default-sizes-1-chromium-linux.png deleted file mode 100644 index 5287257e87..0000000000 Binary files a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-themes-and-default-sizes-1-chromium-linux.png and /dev/null differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-themes-and-default-sizes-1-firefox-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-themes-and-default-sizes-1-firefox-linux.png deleted file mode 100644 index a488aa47e5..0000000000 Binary files a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-themes-and-default-sizes-1-firefox-linux.png and /dev/null differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-themes-and-default-sizes-1-webkit-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-themes-and-default-sizes-1-webkit-linux.png deleted file mode 100644 index c6872d401a..0000000000 Binary files a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-custom-themes-and-default-sizes-1-webkit-linux.png and /dev/null differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-default-theme-1-chromium-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-default-theme-1-chromium-linux.png new file mode 100644 index 0000000000..8a9de86667 Binary files /dev/null and b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-default-theme-1-chromium-linux.png differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-default-theme-1-firefox-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-default-theme-1-firefox-linux.png new file mode 100644 index 0000000000..9683ca861e Binary files /dev/null and b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-default-theme-1-firefox-linux.png differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-default-theme-1-webkit-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-default-theme-1-webkit-linux.png new file mode 100644 index 0000000000..d88ef4c4d7 Binary files /dev/null and b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-default-theme-1-webkit-linux.png differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-invert-theme-on-inverted-background-1-chromium-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-invert-theme-on-inverted-background-1-chromium-linux.png new file mode 100644 index 0000000000..c15ec690a5 Binary files /dev/null and b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-invert-theme-on-inverted-background-1-chromium-linux.png differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-invert-theme-on-inverted-background-1-firefox-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-invert-theme-on-inverted-background-1-firefox-linux.png new file mode 100644 index 0000000000..2a3e8a2249 Binary files /dev/null and b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-invert-theme-on-inverted-background-1-firefox-linux.png differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-invert-theme-on-inverted-background-1-webkit-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-invert-theme-on-inverted-background-1-webkit-linux.png new file mode 100644 index 0000000000..0d8fc279a8 Binary files /dev/null and b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-invert-theme-on-inverted-background-1-webkit-linux.png differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-bottom-text-1-chromium-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-bottom-text-1-chromium-linux.png deleted file mode 100644 index ba0ab3f764..0000000000 Binary files a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-bottom-text-1-chromium-linux.png and /dev/null differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-bottom-text-1-firefox-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-bottom-text-1-firefox-linux.png deleted file mode 100644 index 73a0f70ce6..0000000000 Binary files a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-bottom-text-1-firefox-linux.png and /dev/null differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-bottom-text-1-webkit-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-bottom-text-1-webkit-linux.png deleted file mode 100644 index 39bbd11592..0000000000 Binary files a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-bottom-text-1-webkit-linux.png and /dev/null differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-correct-sizes-and-right-text-1-chromium-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-correct-sizes-and-right-text-1-chromium-linux.png deleted file mode 100644 index 28e8144707..0000000000 Binary files a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-correct-sizes-and-right-text-1-chromium-linux.png and /dev/null differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-correct-sizes-and-right-text-1-firefox-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-correct-sizes-and-right-text-1-firefox-linux.png deleted file mode 100644 index b35ba3b7f7..0000000000 Binary files a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-correct-sizes-and-right-text-1-firefox-linux.png and /dev/null differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-correct-sizes-and-right-text-1-webkit-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-correct-sizes-and-right-text-1-webkit-linux.png deleted file mode 100644 index 583838e09b..0000000000 Binary files a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-spin-with-correct-sizes-and-right-text-1-webkit-linux.png and /dev/null differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-themes-and-default-sizes-1-chromium-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-themes-and-default-sizes-1-chromium-linux.png deleted file mode 100644 index b1795599ff..0000000000 Binary files a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-themes-and-default-sizes-1-chromium-linux.png and /dev/null differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-themes-and-default-sizes-1-firefox-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-themes-and-default-sizes-1-firefox-linux.png deleted file mode 100644 index d2c38e46bd..0000000000 Binary files a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-themes-and-default-sizes-1-firefox-linux.png and /dev/null differ diff --git a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-themes-and-default-sizes-1-webkit-linux.png b/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-themes-and-default-sizes-1-webkit-linux.png deleted file mode 100644 index 98c0537c11..0000000000 Binary files a/semcore/spin/__tests__/spin.browser-test.tsx-snapshots/-visual-Verify-themes-and-default-sizes-1-webkit-linux.png and /dev/null differ diff --git a/semcore/spin/src/Spin.tsx b/semcore/spin/src/Spin.tsx index 78652ba27f..1b42ce599c 100644 --- a/semcore/spin/src/Spin.tsx +++ b/semcore/spin/src/Spin.tsx @@ -22,22 +22,63 @@ class RootSpin extends Component< static enhance = [resolveColorEnhance(), i18nEnhance(localizedMessages)] as const; static defaultProps = { size: 'm', - theme: 'dark', + theme: 'default', } as const; + get sizeAndStroke(): [number, number] { + const { size } = this.asProps; + + switch (size) { + case 'xs' : { + return [16, 2]; + } + case 's': { + return [20, 2.5]; + } + case 'm': { + return [24, 3]; + } + case 'l': { + return [32, 3.5]; + } + case 'xl': { + return [48, 4]; + } + case 'xxl': { + return [72, 5]; + } + default: { + const s: never = size; + throw new Error(`Handle size "${s}"`); + } + } + } + render() { const SSpin = Root; + const SCircle = 'circle'; const { Children, styles, theme, resolveColor, getI18nText } = this.asProps; + const [sizeNumber, strokeWidth] = this.sizeAndStroke; + const radius = (sizeNumber - strokeWidth) / 2; return sstyled(styles)( - + , ); diff --git a/semcore/spin/src/Spin.type.ts b/semcore/spin/src/Spin.type.ts index 0f56505ecf..5b7beddd42 100644 --- a/semcore/spin/src/Spin.type.ts +++ b/semcore/spin/src/Spin.type.ts @@ -2,16 +2,20 @@ import type { NSBox } from '@semcore/base-components'; import type { Intergalactic } from '@semcore/core'; declare namespace NSSpin { + /** + * @deprecated. Dark and custom themes are deprecated. Use default theme instead of dark. + */ + type DeprecatedTheme = 'dark' | string; type Size = 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl'; - type Props = NSBox.Props & { + type Props = Pick & { /** Spinner size * @default m **/ size?: NSSpin.Size; - /** Spinner theme. There are several default themes or you can use your own color - * @default dark + /** Spinner theme. Your own color is deprecated, use only `default` or `invert`. + * @default default **/ - theme?: 'dark' | 'invert' | string; + theme?: DeprecatedTheme | 'default' | 'invert'; /** Whether the spinner should be in the center of the parent. * This works for a nested spinner in flex, * otherwise only horizontal alignment will occur. @@ -22,7 +26,7 @@ declare namespace NSSpin { }; type DefaultProps = { size: 'm'; - theme: 'dark'; + theme: 'default'; }; type Component = Intergalactic.Component<'div', Props>; diff --git a/semcore/spin/src/style/spin.shadow.css b/semcore/spin/src/style/spin.shadow.css index 76c28f4640..ad5226d968 100644 --- a/semcore/spin/src/style/spin.shadow.css +++ b/semcore/spin/src/style/spin.shadow.css @@ -1,12 +1,26 @@ @keyframes spin-rotate { - from { - transform: rotate(0deg); - } to { transform: rotate(360deg); } } +@keyframes stretch { + 0% { + stroke-dasharray: 1 99; + stroke-dashoffset: 0; + } + + 50% { + stroke-dasharray: 90 10; + stroke-dashoffset: -5; + } + + 100% { + stroke-dasharray: 1 99; + stroke-dashoffset: -100; + } +} + SSpin { display: block; flex-shrink: 0; @@ -14,54 +28,35 @@ SSpin { animation-name: spin-rotate; animation-iteration-count: infinite; animation-timing-function: linear; - animation-duration: 0.75s; + animation-duration: 2s; fill: var(--theme); } -SSpin[theme='dark'] { - fill: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); -} - -SSpin[theme='invert'] { - fill: var(--intergalactic-border-primary-invert, oklch(0.995 0.008 147.4 / 0.391)); -} - -SSpin[centered] { - margin: auto; -} - -SSpin[size='xs'] { - width: 16px; - height: 16px; -} - -SSpin[size='s'] { - width: 20px; - height: 20px; +SCircle { + animation-name: stretch; + animation-duration: 2s; + animation-iteration-count: infinite; + animation-timing-function: linear; } -SSpin[size='m'] { - width: 24px; - height: 24px; +SSpin[theme] SCircle { + stroke: var(--theme); } -SSpin[size='l'] { - width: 32px; - height: 32px; +SSpin[theme='default'] SCircle, SSpin[theme='dark'] SCircle { + stroke: var(--intergalactic-spin-bg, oklch(0.118 0.023 170.1 / 0.262)); } -SSpin[size='xl'] { - width: 48px; - height: 48px; +SSpin[theme='invert'] { + stroke: var(--intergalactic-spin-bg-invert, oklch(0.998 0.003 173.3 / 0.808)); } -SSpin[size='xxl'] { - width: 72px; - height: 72px; +SSpin[centered] { + margin: auto; } @media (prefers-reduced-motion) { - SSpin { + SSpin, SCircle { animation-name: none; } } diff --git a/semcore/switch/__tests__/switch.browser-test.tsx b/semcore/switch/__tests__/switch.browser-test.tsx index 5b060a91e2..098b4f5eaa 100644 --- a/semcore/switch/__tests__/switch.browser-test.tsx +++ b/semcore/switch/__tests__/switch.browser-test.tsx @@ -211,7 +211,10 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify switch with external label changes state by mouse interactions', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@switch'], + '@switch', + '@base-components', + '@flex-box', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/switch/docs/examples/external_label.tsx', 'en'); diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-1-chromium-linux.png index 369f33a3ad..907c29e46b 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-1-firefox-linux.png index c44e945592..d1ba202d85 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-1-webkit-linux.png index 54e6a5119a..b255134fd3 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-2-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-2-chromium-linux.png index cbdb05d743..3914c7f687 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-2-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-2-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-2-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-2-firefox-linux.png index 0965e7f04d..600492d1b8 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-2-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-2-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-2-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-2-webkit-linux.png index f32300395a..8940e39395 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-2-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-l-theme-success-2-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-dark-violet-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-dark-violet-1-chromium-linux.png index d3325055dc..ccd50da2c7 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-dark-violet-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-dark-violet-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-dark-violet-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-dark-violet-1-firefox-linux.png index ec140d6a41..ad031abea8 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-dark-violet-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-dark-violet-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-dark-violet-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-dark-violet-1-webkit-linux.png index 7e698e45cc..689f84788c 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-dark-violet-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-dark-violet-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-info-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-info-1-chromium-linux.png index ae689b11d4..cced6088e7 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-info-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-info-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-info-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-info-1-firefox-linux.png index a8afdad2fe..9a8e5c475e 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-info-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-info-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-info-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-info-1-webkit-linux.png index 6ed98c2897..1e5fe995ed 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-info-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-icons-with-size-xl-theme-info-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-1-chromium-linux.png index 8a0623ff54..de0ca8cf0f 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-1-firefox-linux.png index e48a49ab94..390dcdc535 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-1-webkit-linux.png index 68269ef228..2176c4c54b 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-2-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-2-chromium-linux.png index c4900d42b2..7c0dd19024 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-2-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-2-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-2-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-2-firefox-linux.png index 637d6815f2..555e20a9b3 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-2-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-2-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-2-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-2-webkit-linux.png index 7d022ae3e0..21e2025917 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-2-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-l-theme-blanchedalmond-2-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-1-chromium-linux.png index fac8552c00..84fb4b990a 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-1-firefox-linux.png index e6a608f6c5..2c9149c51a 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-1-webkit-linux.png index 991a867a56..052f0fac84 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-2-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-2-chromium-linux.png index be0fb5330a..7b2ff32363 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-2-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-2-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-2-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-2-firefox-linux.png index 4ff2f82c64..b462a1c87f 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-2-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-2-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-2-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-2-webkit-linux.png index fbe1132ce9..2a137b1e51 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-2-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-m-theme-success-2-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-1-chromium-linux.png index 1d8e63c6a5..714d517e3d 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-1-firefox-linux.png index a01fc63c0e..3b4912c4ef 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-1-webkit-linux.png index dd00e2cf65..83f2661a50 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-2-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-2-chromium-linux.png index f34c85f06e..a93f65faef 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-2-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-2-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-2-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-2-firefox-linux.png index 3f38a334a0..921bc24f10 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-2-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-2-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-2-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-2-webkit-linux.png index 8510cf2241..5494909eb3 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-2-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Active-with-long-text-with-size-xl-theme-info-2-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-3c7e6-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-3c7e6-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png index a0bb70405d..599f08f231 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-3c7e6-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-3c7e6-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-3c7e6-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-3c7e6-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png index 12145fcf18..cadc655dcb 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-3c7e6-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-3c7e6-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-3c7e6-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-3c7e6-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png index 3b46af66b4..0e7cf448b6 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-3c7e6-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-3c7e6-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-75a09-hecked-undefined-and-defaultChecked-true-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-75a09-hecked-undefined-and-defaultChecked-true-1-chromium-linux.png index ffd7e28791..a3da75486b 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-75a09-hecked-undefined-and-defaultChecked-true-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-75a09-hecked-undefined-and-defaultChecked-true-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-75a09-hecked-undefined-and-defaultChecked-true-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-75a09-hecked-undefined-and-defaultChecked-true-1-firefox-linux.png index 96c90ef730..b36c42262e 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-75a09-hecked-undefined-and-defaultChecked-true-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-75a09-hecked-undefined-and-defaultChecked-true-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-75a09-hecked-undefined-and-defaultChecked-true-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-75a09-hecked-undefined-and-defaultChecked-true-1-webkit-linux.png index ebd9695b36..98d37dc8d5 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-75a09-hecked-undefined-and-defaultChecked-true-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-l-t-75a09-hecked-undefined-and-defaultChecked-true-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-09c10-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-09c10-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png index 35815ed77d..6c282c3b1c 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-09c10-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-09c10-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-09c10-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-09c10-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png index e05b12e3f9..410f398bf8 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-09c10-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-09c10-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-09c10-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-09c10-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png index 967bb26527..ba2f3f06f4 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-09c10-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-09c10-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-9d990-hecked-true-and-defaultChecked-undefined-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-9d990-hecked-true-and-defaultChecked-undefined-1-chromium-linux.png index a6685f5d34..3d029616b5 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-9d990-hecked-true-and-defaultChecked-undefined-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-9d990-hecked-true-and-defaultChecked-undefined-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-9d990-hecked-true-and-defaultChecked-undefined-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-9d990-hecked-true-and-defaultChecked-undefined-1-firefox-linux.png index e8ee9e6645..f3a1bb081e 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-9d990-hecked-true-and-defaultChecked-undefined-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-9d990-hecked-true-and-defaultChecked-undefined-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-9d990-hecked-true-and-defaultChecked-undefined-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-9d990-hecked-true-and-defaultChecked-undefined-1-webkit-linux.png index bce4c6cfc0..d018a73e34 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-9d990-hecked-true-and-defaultChecked-undefined-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-m-t-9d990-hecked-true-and-defaultChecked-undefined-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--2d3a6-hecked-true-and-defaultChecked-undefined-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--2d3a6-hecked-true-and-defaultChecked-undefined-1-chromium-linux.png index 258d4d3af6..4d796b0bc1 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--2d3a6-hecked-true-and-defaultChecked-undefined-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--2d3a6-hecked-true-and-defaultChecked-undefined-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--2d3a6-hecked-true-and-defaultChecked-undefined-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--2d3a6-hecked-true-and-defaultChecked-undefined-1-firefox-linux.png index 5106284a03..90f0d17b5b 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--2d3a6-hecked-true-and-defaultChecked-undefined-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--2d3a6-hecked-true-and-defaultChecked-undefined-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--2d3a6-hecked-true-and-defaultChecked-undefined-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--2d3a6-hecked-true-and-defaultChecked-undefined-1-webkit-linux.png index 20d70ca9cc..6056452625 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--2d3a6-hecked-true-and-defaultChecked-undefined-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--2d3a6-hecked-true-and-defaultChecked-undefined-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--4fc2c-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--4fc2c-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png index 91833b7d4c..cd12ecd323 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--4fc2c-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--4fc2c-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--4fc2c-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--4fc2c-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png index b39d822c61..9991a298f7 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--4fc2c-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--4fc2c-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--4fc2c-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--4fc2c-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png index 39248671a8..30ccc43e02 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--4fc2c-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-Switch-with-size-xl--4fc2c-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-l-theme-success-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-l-theme-success-1-chromium-linux.png index c6082e9b40..84228258ea 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-l-theme-success-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-l-theme-success-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-l-theme-success-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-l-theme-success-1-firefox-linux.png index 485413a50f..3ad44ae301 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-l-theme-success-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-l-theme-success-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-l-theme-success-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-l-theme-success-1-webkit-linux.png index c167c634b4..6b6e1ce243 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-l-theme-success-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-l-theme-success-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-xl-theme-info-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-xl-theme-info-1-chromium-linux.png index 21d0ae931b..71f2f5bca2 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-xl-theme-info-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-xl-theme-info-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-xl-theme-info-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-xl-theme-info-1-firefox-linux.png index ccd8ec810c..eea2e7620d 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-xl-theme-info-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-xl-theme-info-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-xl-theme-info-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-xl-theme-info-1-webkit-linux.png index 059e3c12c0..8c36fe7956 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-xl-theme-info-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-icons-with-size-xl-theme-info-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-1-chromium-linux.png index be1f130148..a3b107099a 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-1-firefox-linux.png index 93f253aca0..e7bd4ea2ee 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-1-webkit-linux.png index 340f1b6187..d21589b36c 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-2-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-2-chromium-linux.png index be1f130148..a3b107099a 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-2-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-2-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-2-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-2-firefox-linux.png index 93f253aca0..e7bd4ea2ee 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-2-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-2-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-2-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-2-webkit-linux.png index 340f1b6187..d21589b36c 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-2-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-l-theme-blanchedalmond-2-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-1-chromium-linux.png index 90540842fc..63462bd2b4 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-1-firefox-linux.png index 54164dd50a..5f6ea75a4d 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-1-webkit-linux.png index 349a573a36..7df0752e21 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-2-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-2-chromium-linux.png index 90540842fc..63462bd2b4 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-2-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-2-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-2-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-2-firefox-linux.png index 54164dd50a..5f6ea75a4d 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-2-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-2-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-2-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-2-webkit-linux.png index 349a573a36..7df0752e21 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-2-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-m-theme-success-2-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-1-chromium-linux.png index d77bcd8b0e..a97234905f 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-1-firefox-linux.png index 9b7982e064..ca28e16923 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-1-webkit-linux.png index 36e883833c..b8d00165b4 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-2-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-2-chromium-linux.png index d77bcd8b0e..a97234905f 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-2-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-2-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-2-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-2-firefox-linux.png index 9b7982e064..ca28e16923 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-2-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-2-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-2-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-2-webkit-linux.png index 36e883833c..b8d00165b4 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-2-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-Disabled-with-long-text-with-size-xl-theme-info-2-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-e0ee5-hecked-undefined-and-defaultChecked-true-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-e0ee5-hecked-undefined-and-defaultChecked-true-1-chromium-linux.png index 73014bdb15..f319f66e74 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-e0ee5-hecked-undefined-and-defaultChecked-true-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-e0ee5-hecked-undefined-and-defaultChecked-true-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-e0ee5-hecked-undefined-and-defaultChecked-true-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-e0ee5-hecked-undefined-and-defaultChecked-true-1-firefox-linux.png index 59a450a3f0..d2e6c3ed61 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-e0ee5-hecked-undefined-and-defaultChecked-true-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-e0ee5-hecked-undefined-and-defaultChecked-true-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-e0ee5-hecked-undefined-and-defaultChecked-true-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-e0ee5-hecked-undefined-and-defaultChecked-true-1-webkit-linux.png index 1cebbd809b..e9141b0010 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-e0ee5-hecked-undefined-and-defaultChecked-true-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-e0ee5-hecked-undefined-and-defaultChecked-true-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-f4675-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-f4675-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png index 71832f0068..cc69047d3b 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-f4675-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-f4675-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-f4675-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-f4675-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png index 47ed13e037..5a4f86ee47 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-f4675-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-f4675-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-f4675-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-f4675-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png index 70a1facafd..46b3b28d5f 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-f4675-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-l-the-f4675-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-e7925-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-e7925-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png index 6b32e56f49..ecca6845d5 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-e7925-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-e7925-ecked-false-and-defaultChecked-undefined-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-e7925-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-e7925-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png index 198d6eae2f..843c19aa33 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-e7925-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-e7925-ecked-false-and-defaultChecked-undefined-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-e7925-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-e7925-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png index ada79d5149..1e1e252db0 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-e7925-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-e7925-ecked-false-and-defaultChecked-undefined-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-f3997-hecked-true-and-defaultChecked-undefined-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-f3997-hecked-true-and-defaultChecked-undefined-1-chromium-linux.png index bf938ba87d..7f528a5f86 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-f3997-hecked-true-and-defaultChecked-undefined-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-f3997-hecked-true-and-defaultChecked-undefined-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-f3997-hecked-true-and-defaultChecked-undefined-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-f3997-hecked-true-and-defaultChecked-undefined-1-firefox-linux.png index 3007744084..1334007ab5 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-f3997-hecked-true-and-defaultChecked-undefined-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-f3997-hecked-true-and-defaultChecked-undefined-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-f3997-hecked-true-and-defaultChecked-undefined-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-f3997-hecked-true-and-defaultChecked-undefined-1-webkit-linux.png index c349310460..816275bea5 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-f3997-hecked-true-and-defaultChecked-undefined-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-m-the-f3997-hecked-true-and-defaultChecked-undefined-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-xl-th-f5373-hecked-true-and-defaultChecked-undefined-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-xl-th-f5373-hecked-true-and-defaultChecked-undefined-1-chromium-linux.png index bd0230bc83..9ec13875d9 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-xl-th-f5373-hecked-true-and-defaultChecked-undefined-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-xl-th-f5373-hecked-true-and-defaultChecked-undefined-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-xl-th-f5373-hecked-true-and-defaultChecked-undefined-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-xl-th-f5373-hecked-true-and-defaultChecked-undefined-1-firefox-linux.png index ae321a1c4a..fa99dd9d91 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-xl-th-f5373-hecked-true-and-defaultChecked-undefined-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-xl-th-f5373-hecked-true-and-defaultChecked-undefined-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-xl-th-f5373-hecked-true-and-defaultChecked-undefined-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-xl-th-f5373-hecked-true-and-defaultChecked-undefined-1-webkit-linux.png index b69fd2b78c..72f84bac7f 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-xl-th-f5373-hecked-true-and-defaultChecked-undefined-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-active-Switch-with-size-xl-th-f5373-hecked-true-and-defaultChecked-undefined-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-1-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-1-chromium-linux.png index 7a72dafbf9..4391129726 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-1-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-1-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-1-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-1-firefox-linux.png index d9b0b9a9cb..09b9d4f5dd 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-1-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-1-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-1-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-1-webkit-linux.png index 2383ee4b7b..fa277d26fa 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-1-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-1-webkit-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-2-chromium-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-2-chromium-linux.png index 3ae7afef82..2241437778 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-2-chromium-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-2-chromium-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-2-firefox-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-2-firefox-linux.png index b398e89a44..295584d7f4 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-2-firefox-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-2-firefox-linux.png differ diff --git a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-2-webkit-linux.png b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-2-webkit-linux.png index 248e6cbaf7..8bb664e997 100644 Binary files a/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-2-webkit-linux.png and b/semcore/switch/__tests__/switch.browser-test.tsx-snapshots/-visual-Verify-custom-addon-2-webkit-linux.png differ diff --git a/semcore/switch/src/Switch.tsx b/semcore/switch/src/Switch.tsx index 500594bafc..83c7321164 100644 --- a/semcore/switch/src/Switch.tsx +++ b/semcore/switch/src/Switch.tsx @@ -50,7 +50,7 @@ class SwitchRoot extends Component< }; getValueProps() { - const { theme, uid, disabled } = this.asProps; + const { theme, uid, disabled, size } = this.asProps; const { active } = this.state; return { @@ -60,6 +60,7 @@ class SwitchRoot extends Component< uid, active, disabled, + size, }; } @@ -172,6 +173,7 @@ class Value extends Component< { if (await m_size.count() > 0) { const tabLinesCount = await locators.tabLines(page).count(); for (let i = 0; i < tabLinesCount; i++) { - await expect(locators.tabLines(page).nth(i)).toHaveCSS('height', '28px'); + await expect(locators.tabLines(page).nth(i)).toHaveCSS('height', '32px'); } } else if (await l_size.count() > 0) { const tabLinesCount = await locators.tabLines(page).count(); for (let i = 0; i < tabLinesCount; i++) { - await expect(locators.tabLines(page).nth(i)).toHaveCSS('height', '40px'); + await expect(locators.tabLines(page).nth(i)).toHaveCSS('height', '44px'); } } }); diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-l-underlined-false-styles-1-chromium-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-l-underlined-false-styles-1-chromium-linux.png index 7b409def50..7b7b994387 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-l-underlined-false-styles-1-chromium-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-l-underlined-false-styles-1-chromium-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-l-underlined-false-styles-1-firefox-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-l-underlined-false-styles-1-firefox-linux.png index dad883e250..d0c43d2ed3 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-l-underlined-false-styles-1-firefox-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-l-underlined-false-styles-1-firefox-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-l-underlined-false-styles-1-webkit-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-l-underlined-false-styles-1-webkit-linux.png index 4c5d364baa..cd92cf8112 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-l-underlined-false-styles-1-webkit-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-l-underlined-false-styles-1-webkit-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-m-underlined-true-styles-1-chromium-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-m-underlined-true-styles-1-chromium-linux.png index e6dc8faf62..3fa5d91b5d 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-m-underlined-true-styles-1-chromium-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-m-underlined-true-styles-1-chromium-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-m-underlined-true-styles-1-firefox-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-m-underlined-true-styles-1-firefox-linux.png index cd2cb8fec9..79f2bf0073 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-m-underlined-true-styles-1-firefox-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-m-underlined-true-styles-1-firefox-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-m-underlined-true-styles-1-webkit-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-m-underlined-true-styles-1-webkit-linux.png index c525bf93b3..bca381301c 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-m-underlined-true-styles-1-webkit-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-active-Tab-lines-size-m-underlined-true-styles-1-webkit-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-l-underlined-false-styles-1-chromium-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-l-underlined-false-styles-1-chromium-linux.png index 76ab982f4b..870992ffca 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-l-underlined-false-styles-1-chromium-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-l-underlined-false-styles-1-chromium-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-l-underlined-false-styles-1-firefox-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-l-underlined-false-styles-1-firefox-linux.png index 1da43d0b82..3672c05d49 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-l-underlined-false-styles-1-firefox-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-l-underlined-false-styles-1-firefox-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-l-underlined-false-styles-1-webkit-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-l-underlined-false-styles-1-webkit-linux.png index f62bf0a56c..8a82790e4f 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-l-underlined-false-styles-1-webkit-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-l-underlined-false-styles-1-webkit-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-m-underlined-true-styles-1-chromium-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-m-underlined-true-styles-1-chromium-linux.png index c15d9ee70b..60dc8e408b 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-m-underlined-true-styles-1-chromium-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-m-underlined-true-styles-1-chromium-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-m-underlined-true-styles-1-firefox-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-m-underlined-true-styles-1-firefox-linux.png index 91ae90ef2a..ac31143100 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-m-underlined-true-styles-1-firefox-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-m-underlined-true-styles-1-firefox-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-m-underlined-true-styles-1-webkit-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-m-underlined-true-styles-1-webkit-linux.png index 243c855775..11989ef9c7 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-m-underlined-true-styles-1-webkit-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-lines-size-m-underlined-true-styles-1-webkit-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-tabLine-with-tooltip-1-chromium-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-tabLine-with-tooltip-1-chromium-linux.png index 9715d30f10..d34e7c5304 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-tabLine-with-tooltip-1-chromium-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-tabLine-with-tooltip-1-chromium-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-tabLine-with-tooltip-1-firefox-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-tabLine-with-tooltip-1-firefox-linux.png index fe07307a31..2d119f95cf 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-tabLine-with-tooltip-1-firefox-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-tabLine-with-tooltip-1-firefox-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-tabLine-with-tooltip-1-webkit-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-tabLine-with-tooltip-1-webkit-linux.png index ab1e612c30..17f72e859f 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-tabLine-with-tooltip-1-webkit-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-disabled-tabLine-with-tooltip-1-webkit-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-1df77-ize-m-ellipsis-cropPosition-middle-styles-1-chromium-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-1df77-ize-m-ellipsis-cropPosition-middle-styles-1-chromium-linux.png index c5ba3f6ac5..8aac0ed320 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-1df77-ize-m-ellipsis-cropPosition-middle-styles-1-chromium-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-1df77-ize-m-ellipsis-cropPosition-middle-styles-1-chromium-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-1df77-ize-m-ellipsis-cropPosition-middle-styles-1-firefox-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-1df77-ize-m-ellipsis-cropPosition-middle-styles-1-firefox-linux.png index 897a86d459..a0e8d5b3ea 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-1df77-ize-m-ellipsis-cropPosition-middle-styles-1-firefox-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-1df77-ize-m-ellipsis-cropPosition-middle-styles-1-firefox-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-1df77-ize-m-ellipsis-cropPosition-middle-styles-1-webkit-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-1df77-ize-m-ellipsis-cropPosition-middle-styles-1-webkit-linux.png index 7fdd6443c4..595710e3e2 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-1df77-ize-m-ellipsis-cropPosition-middle-styles-1-webkit-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-1df77-ize-m-ellipsis-cropPosition-middle-styles-1-webkit-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-25e42-ize-m-ellipsis-cropPosition-middle-styles-1-chromium-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-25e42-ize-m-ellipsis-cropPosition-middle-styles-1-chromium-linux.png index d61d9a29bc..a605320704 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-25e42-ize-m-ellipsis-cropPosition-middle-styles-1-chromium-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-25e42-ize-m-ellipsis-cropPosition-middle-styles-1-chromium-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-25e42-ize-m-ellipsis-cropPosition-middle-styles-1-firefox-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-25e42-ize-m-ellipsis-cropPosition-middle-styles-1-firefox-linux.png index 44c7a42b7a..0c931f4e73 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-25e42-ize-m-ellipsis-cropPosition-middle-styles-1-firefox-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-25e42-ize-m-ellipsis-cropPosition-middle-styles-1-firefox-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-25e42-ize-m-ellipsis-cropPosition-middle-styles-1-webkit-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-25e42-ize-m-ellipsis-cropPosition-middle-styles-1-webkit-linux.png index daeaea1c15..6a5caba580 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-25e42-ize-m-ellipsis-cropPosition-middle-styles-1-webkit-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-25e42-ize-m-ellipsis-cropPosition-middle-styles-1-webkit-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-auto-size-l-ellipsis-default-styles-1-chromium-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-auto-size-l-ellipsis-default-styles-1-chromium-linux.png index b2b3165dfe..ad3afe8362 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-auto-size-l-ellipsis-default-styles-1-chromium-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-auto-size-l-ellipsis-default-styles-1-chromium-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-auto-size-l-ellipsis-default-styles-1-firefox-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-auto-size-l-ellipsis-default-styles-1-firefox-linux.png index 4fce23831a..510a97045d 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-auto-size-l-ellipsis-default-styles-1-firefox-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-auto-size-l-ellipsis-default-styles-1-firefox-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-auto-size-l-ellipsis-default-styles-1-webkit-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-auto-size-l-ellipsis-default-styles-1-webkit-linux.png index bfc3998605..5df5feaa66 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-auto-size-l-ellipsis-default-styles-1-webkit-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-auto-size-l-ellipsis-default-styles-1-webkit-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-manual-size-l-ellipsis-default-styles-1-chromium-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-manual-size-l-ellipsis-default-styles-1-chromium-linux.png index f80979003c..0252d10d79 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-manual-size-l-ellipsis-default-styles-1-chromium-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-manual-size-l-ellipsis-default-styles-1-chromium-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-manual-size-l-ellipsis-default-styles-1-firefox-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-manual-size-l-ellipsis-default-styles-1-firefox-linux.png index 588602bf1c..1ea862dea3 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-manual-size-l-ellipsis-default-styles-1-firefox-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-manual-size-l-ellipsis-default-styles-1-firefox-linux.png differ diff --git a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-manual-size-l-ellipsis-default-styles-1-webkit-linux.png b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-manual-size-l-ellipsis-default-styles-1-webkit-linux.png index 10b03f42bb..3594b48269 100644 Binary files a/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-manual-size-l-ellipsis-default-styles-1-webkit-linux.png and b/semcore/tab-line/__tests__/tab-line.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-lines-behavior-manual-size-l-ellipsis-default-styles-1-webkit-linux.png differ diff --git a/semcore/tab-line/src/style/tab-line.shadow.css b/semcore/tab-line/src/style/tab-line.shadow.css index a32fbe69e6..b15b04f673 100644 --- a/semcore/tab-line/src/style/tab-line.shadow.css +++ b/semcore/tab-line/src/style/tab-line.shadow.css @@ -6,7 +6,7 @@ STabLine { } STabLine[underlined] { - border-bottom: 1px solid var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); + border-bottom: 1px solid var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); /* TODO: --intergalactic-control-tab-line-border */ } STabLineItem { @@ -61,12 +61,12 @@ STabLineItem { } &:hover::before { - background-color: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); + background-color: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); /* TODO: --intergalactic-control-tab-line-border-hover */ } &[selected]::after { transition-delay: calc(var(--intergalactic-duration-control, 200) * 1ms); - background-color: var(--intergalactic-border-info-active, oklch(0.7 0.131 275.2)); + background-color: var(--intergalactic-border-info-active, oklch(0.7 0.131 275.2)); /* TODO: --intergalactic-control-tab-line-border-active */ } & SText:not(:last-child) { @@ -82,7 +82,7 @@ SCaret { position: absolute; bottom: -1px; height: 3px; - background: var(--intergalactic-border-info-active, oklch(0.7 0.131 275.2)); + background: var(--intergalactic-border-info-active, oklch(0.7 0.131 275.2)); /* TODO: --intergalactic-control-tab-line-border-active */ transition: calc(var(--intergalactic-duration-control, 200) * 1ms) all ease-in-out; } @@ -104,12 +104,12 @@ SAddon { } STabLineItem[size='m'] { - height: 28px; + height: var(--intergalactic-form-control-m, 32px); min-width: 18px; } STabLineItem[size='l'] { - height: 40px; + height: var(--intergalactic-form-control-l, 44px); min-width: 26px; } diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx index 4cf35e147a..b1320958c6 100644 --- a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx +++ b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx @@ -16,6 +16,16 @@ export const locators = { tabpanel: (page: Page) => page.getByRole('tablist'), }; +const waitForHint = async (page: Page, text: string) => { + await page.locator('[data-ui-name="Hint"]').filter({ hasText: text }).waitFor({ state: 'visible' }); + await page.waitForFunction((text) => { + const hint = Array.from(document.querySelectorAll('[data-ui-name="Hint"]')) + .find((el) => el.textContent?.includes(text)); + + return hint && getComputedStyle(hint).opacity === '1'; + }, text); +}; + /* ===================================================== @visual Visual states, hover and focus styles, paddings, margins, and snapshots. @@ -105,8 +115,11 @@ test.describe(`${TAG.VISUAL} `, () => { '@counter', '@badge'], }, async ({ page }) => { + const focusedHintText = 'Facebook'; + const hoveredHintText = 'Instagram Instagram'; + await loadPage(page, 'stories/components/tab-panel/tests/examples/tab_panel_item_addons_and_props.tsx', 'en', item); - await page.waitForTimeout(100); + await page.waitForTimeout(200); await page.keyboard.press('Tab'); await page.waitForTimeout(100); @@ -114,18 +127,24 @@ test.describe(`${TAG.VISUAL} `, () => { await page.keyboard.press('ArrowLeft'); await page.waitForTimeout(100); - await page.locator('[data-ui-name="Hint"]').waitFor({ state: 'visible' }); - await page.waitForFunction(() => { - const el = document.querySelector('[data-ui-name="Hint"]'); - return el && getComputedStyle(el).opacity === '1'; - }); + const focusedTab = locators.tabPanels(page).first(); + const focusedText = locators.text(page).first(); + + await expect(focusedTab).toBeFocused(); + await expect.poll(async () => { + return focusedText.evaluate((el) => { + const element = el as HTMLElement; + + return element.scrollWidth > element.clientWidth || element.childNodes.length > 1; + }); + }).toBe(true); + + await focusedTab.evaluate((el) => (el as HTMLElement).blur()); + await focusedTab.focus(); + await waitForHint(page, focusedHintText); await locators.tabPanels(page).nth(1).hover(); - await page.locator('[data-ui-name="Hint"]').nth(1).waitFor({ state: 'visible' }); - await page.waitForFunction(() => { - const els = document.querySelectorAll('[data-ui-name="Hint"]'); - return els.length >= 2 && getComputedStyle(els[1]).opacity === '1'; - }); + await waitForHint(page, hoveredHintText); await expect(page.locator('[data-ui-name="Hint"]')).toHaveCount(2); await expect(page).toHaveScreenshot(); diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-1-chromium-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-1-chromium-linux.png index 2e6d8d079a..e9d580c1ca 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-1-chromium-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-1-chromium-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-1-firefox-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-1-firefox-linux.png index 308dff9f27..f3dd06da81 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-1-firefox-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-1-firefox-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-1-webkit-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-1-webkit-linux.png index e9771919e0..0188d83141 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-1-webkit-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-1-webkit-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-2-chromium-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-2-chromium-linux.png index 28760ee1a2..8f54bcc639 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-2-chromium-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-2-chromium-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-2-firefox-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-2-firefox-linux.png index 308dff9f27..f3dd06da81 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-2-firefox-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-2-firefox-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-2-webkit-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-2-webkit-linux.png index 8b51d1320f..12234a95a8 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-2-webkit-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-active-Tab-Panel-styles-2-webkit-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-styles-1-chromium-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-styles-1-chromium-linux.png index 7e6f4ec52e..1b6da98be4 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-styles-1-chromium-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-styles-1-chromium-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-styles-1-firefox-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-styles-1-firefox-linux.png index 23e80b3522..75c7f1ab57 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-styles-1-firefox-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-styles-1-firefox-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-styles-1-webkit-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-styles-1-webkit-linux.png index 93684a6324..37f1ae5576 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-styles-1-webkit-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-styles-1-webkit-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-with-tooltip-1-chromium-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-with-tooltip-1-chromium-linux.png index 201a69d9df..02c7211487 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-with-tooltip-1-chromium-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-with-tooltip-1-chromium-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-with-tooltip-1-firefox-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-with-tooltip-1-firefox-linux.png index 632b2429f1..dc67b61a0c 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-with-tooltip-1-firefox-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-with-tooltip-1-firefox-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-with-tooltip-1-webkit-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-with-tooltip-1-webkit-linux.png index 3640631012..16e45a3f97 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-with-tooltip-1-webkit-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-disabled-Tab-panel-with-tooltip-1-webkit-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-auto-styles-1-chromium-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-auto-styles-1-chromium-linux.png index 287b1eaa4d..311184e487 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-auto-styles-1-chromium-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-auto-styles-1-chromium-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-auto-styles-1-firefox-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-auto-styles-1-firefox-linux.png index 6487f9876b..46b4aa71e7 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-auto-styles-1-firefox-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-auto-styles-1-firefox-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-auto-styles-1-webkit-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-auto-styles-1-webkit-linux.png index b83d7987b5..0fdf9737ac 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-auto-styles-1-webkit-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-auto-styles-1-webkit-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-manual-styles-1-chromium-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-manual-styles-1-chromium-linux.png index 96922db128..2b4a0dcaca 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-manual-styles-1-chromium-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-manual-styles-1-chromium-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-manual-styles-1-firefox-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-manual-styles-1-firefox-linux.png index 931d082b6d..72fbb80786 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-manual-styles-1-firefox-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-manual-styles-1-firefox-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-manual-styles-1-webkit-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-manual-styles-1-webkit-linux.png index 90917983ee..a21da5d607 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-manual-styles-1-webkit-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-cropPosition-middle-behavior-manual-styles-1-webkit-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-auto-styles-1-chromium-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-auto-styles-1-chromium-linux.png index 694966a7ac..92102daf13 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-auto-styles-1-chromium-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-auto-styles-1-chromium-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-auto-styles-1-firefox-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-auto-styles-1-firefox-linux.png index b69c68e899..fdac271e03 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-auto-styles-1-firefox-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-auto-styles-1-firefox-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-auto-styles-1-webkit-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-auto-styles-1-webkit-linux.png index f4d4fe27eb..05f9c9fdf3 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-auto-styles-1-webkit-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-auto-styles-1-webkit-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-manual-styles-1-chromium-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-manual-styles-1-chromium-linux.png index 5c92cd40f1..7fb84d1e9e 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-manual-styles-1-chromium-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-manual-styles-1-chromium-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-manual-styles-1-firefox-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-manual-styles-1-firefox-linux.png index 4143bd0999..7338fadc4f 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-manual-styles-1-firefox-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-manual-styles-1-firefox-linux.png differ diff --git a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-manual-styles-1-webkit-linux.png b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-manual-styles-1-webkit-linux.png index b54136d357..0875cf2f4b 100644 Binary files a/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-manual-styles-1-webkit-linux.png and b/semcore/tab-panel/__tests__/tab-panel.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Tab-Panel-ellipsis-default-behavior-manual-styles-1-webkit-linux.png differ diff --git a/semcore/tab-panel/src/style/tab-panel.shadow.css b/semcore/tab-panel/src/style/tab-panel.shadow.css index 060f25144f..8241577de8 100644 --- a/semcore/tab-panel/src/style/tab-panel.shadow.css +++ b/semcore/tab-panel/src/style/tab-panel.shadow.css @@ -76,12 +76,12 @@ STabPanelItem[disabled] { } STabPanelItem[selected] { - color: var(--intergalactic-text-link, oklch(0.53 0.21 263)); + color: var(--intergalactic-text-link, oklch(0.1 0.03 137 / 0.899)); /* TODO: --intergalactic-text-link-primary */ border-color: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); flex-shrink: 0; &:hover { - color: var(--intergalactic-text-link-hover-active, oklch(0.51 0.202 263)); + color: var(--intergalactic-text-link-hover-active, oklch(0.1 0.03 137 / 0.899)); /* TODO: --intergalactic-text-link-primary-hover-active */ } &::after { diff --git a/semcore/tag/__tests__/tag.browser-test.tsx b/semcore/tag/__tests__/tag.browser-test.tsx index bdacd19320..3b786521fa 100644 --- a/semcore/tag/__tests__/tag.browser-test.tsx +++ b/semcore/tag/__tests__/tag.browser-test.tsx @@ -23,48 +23,59 @@ Visual states, hover and focus styles, paddings, margins, and snapshots. test.describe(`${TAG.VISUAL}`, () => { test.describe('Base states and styles', () => { const tagVariables = [ - // Base tags without addons (sizes m, l, xl) - pairwise with colors + // Base tags without addons (sizes m, l, xl). `color` is only supported by the primary theme. { size: 'm', theme: 'primary', color: 'gray-500', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, - { size: 'l', theme: 'secondary', color: 'blue-500', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, - { size: 'xl', theme: 'additional', color: 'green-500', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, + { size: 'l', theme: 'secondary', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, + { size: 'xl', theme: 'additional', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, - // Disabled state - pairwise with different theme/color - { size: 'm', theme: 'muted', color: 'salad-500', disabled: true, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, + // Disabled state - pairwise with theme/color + { size: 'm', theme: 'primary', color: 'salad-500', disabled: true, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, + { size: 'm', theme: 'additional', disabled: true, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, - // Interactive with addons - pairwise colors + // Invert on a dark background - all three themes, pairwise with sizes + { size: 'm', theme: 'primary', invert: true, color: 'blue-500', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, + { size: 'l', theme: 'secondary', invert: true, disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, + { size: 'xl', theme: 'additional', invert: true, disabled: false, interactive: false, showAddonLeft: true, showAddonRight: false, useTagContainer: false, showClose: false }, + + // Interactive with addons { size: 'm', theme: 'primary', color: 'orange-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: false, showClose: false }, - { size: 'm', theme: 'secondary', color: 'yellow-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: false, showClose: false }, - { size: 'm', theme: 'additional', color: 'red-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: false, showClose: false }, + { size: 'm', theme: 'secondary', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: false, showClose: false }, + { size: 'm', theme: 'additional', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: false, showClose: false }, - // TagContainer with close button - pairwise colors + // TagContainer with close button { size: 'm', theme: 'primary', color: 'pink-500', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: true, showClose: true }, - { size: 'm', theme: 'secondary', color: 'violet-500', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: true, showClose: true }, + { size: 'm', theme: 'secondary', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: true, showClose: true }, - // TagContainer with icon and close - pairwise colors + // TagContainer with icon and close { size: 'm', theme: 'primary', color: 'white-500', disabled: false, interactive: false, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, - { size: 'm', theme: 'secondary', color: 'gray-500', disabled: false, interactive: false, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, - // TagContainer disabled with icon - pairwise with invert theme - { size: 'm', theme: 'invert', color: 'blue-500', disabled: true, interactive: true, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, + // TagContainer disabled with icon and close + { size: 'm', theme: 'primary', color: 'blue-500', disabled: true, interactive: true, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, + + // TagContainer invert, interactive with icon and close - all three themes + { size: 'm', theme: 'primary', invert: true, color: 'violet-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, + { size: 'm', theme: 'secondary', invert: true, disabled: false, interactive: true, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, + { size: 'm', theme: 'additional', invert: true, disabled: false, interactive: true, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, - // TagContainer interactive with addons without close - pairwise colors + // TagContainer interactive with addons without close { size: 'm', theme: 'primary', color: 'green-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: true, showClose: false }, - { size: 'm', theme: 'secondary', color: 'salad-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: true, showClose: false }, - { size: 'm', theme: 'additional', color: 'orange-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: true, showClose: false }, + { size: 'm', theme: 'secondary', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: true, showClose: false }, + { size: 'm', theme: 'additional', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: true, showClose: false }, - // TagContainer interactive with addon and close - pairwise colors + // TagContainer interactive with addon and close { size: 'm', theme: 'primary', color: 'yellow-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, - { size: 'm', theme: 'secondary', color: 'red-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, - // TagContainer disabled with addon and close - pairwise colors - { size: 'm', theme: 'muted', color: 'pink-500', disabled: true, interactive: false, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, + // TagContainer disabled with addon and close - pairwise themes + { size: 'm', theme: 'secondary', disabled: true, interactive: false, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, - // TagContainer active with addon and close - pairwise colors - { size: 'm', theme: 'invert', color: 'violet-500', disabled: false, active: true, interactive: false, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, + // TagContainer active with addon and close - pairwise themes + { size: 'm', theme: 'primary', color: 'violet-500', disabled: false, active: true, interactive: false, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, + { size: 'm', theme: 'additional', invert: true, disabled: false, active: true, interactive: false, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, ]; tagVariables.forEach((item) => { const description = `Verify Tag size ${item.size}, theme ${item.theme}, ` + + `invert ${item.invert || false}, ` + `color ${item.color || 'default'}, ` + `disabled ${item.disabled}, active ${item.active || false}, ` + `interactive ${item.interactive}, ` + diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png new file mode 100644 index 0000000000..e7f05aac5e Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png new file mode 100644 index 0000000000..596174f948 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png new file mode 100644 index 0000000000..687ee08a41 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png new file mode 100644 index 0000000000..0c4485dd4f Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png new file mode 100644 index 0000000000..147470c152 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png new file mode 100644 index 0000000000..8d05139f80 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png new file mode 100644 index 0000000000..e050fb4a33 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png new file mode 100644 index 0000000000..d395369d57 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png new file mode 100644 index 0000000000..a330335cc9 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-40e23-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-08a74-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-40e23-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-08a74-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-40e23-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-08a74-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-40e23-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-08a74-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-40e23-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-08a74-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-40e23-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-08a74-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-chromium-linux.png new file mode 100644 index 0000000000..29e815aacb Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-firefox-linux.png new file mode 100644 index 0000000000..9d2137015e Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-webkit-linux.png new file mode 100644 index 0000000000..2fefba0c4b Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5bbd-s-L-false-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0991d-s-L-false-R-false-container-true-close-true-1-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5bbd-s-L-false-R-false-container-true-close-true-1-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0991d-s-L-false-R-false-container-true-close-true-1-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5bbd-s-L-false-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0991d-s-L-false-R-false-container-true-close-true-1-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5bbd-s-L-false-R-false-container-true-close-true-1-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0991d-s-L-false-R-false-container-true-close-true-1-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5bbd-s-L-false-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0991d-s-L-false-R-false-container-true-close-true-1-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5bbd-s-L-false-R-false-container-true-close-true-1-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0991d-s-L-false-R-false-container-true-close-true-1-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png new file mode 100644 index 0000000000..a517656fc8 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png new file mode 100644 index 0000000000..3ebbbb4cf9 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png new file mode 100644 index 0000000000..201df3ef92 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png new file mode 100644 index 0000000000..4b3bb61a4a Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png new file mode 100644 index 0000000000..62914794ca Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png new file mode 100644 index 0000000000..962e744ddc Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..5fce80ff60 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..e22e16ad62 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..af1f841f7a Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-chromium-linux.png deleted file mode 100644 index 4a8b6d85c7..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-firefox-linux.png deleted file mode 100644 index d15592f2d8..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-webkit-linux.png deleted file mode 100644 index 1678488459..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..dd9f429bed Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..05a1bcc0ba Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..f23e974d80 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cc5b-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-284a9-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cc5b-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-284a9-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cc5b-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-284a9-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cc5b-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-284a9-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cc5b-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-284a9-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cc5b-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-284a9-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d7bb8-s-L-true-R-true-container-false-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2c035-s-L-true-R-true-container-false-close-false-3-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d7bb8-s-L-true-R-true-container-false-close-false-3-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2c035-s-L-true-R-true-container-false-close-false-3-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d7bb8-s-L-true-R-true-container-false-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2c035-s-L-true-R-true-container-false-close-false-3-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d7bb8-s-L-true-R-true-container-false-close-false-3-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2c035-s-L-true-R-true-container-false-close-false-3-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d7bb8-s-L-true-R-true-container-false-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2c035-s-L-true-R-true-container-false-close-false-3-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d7bb8-s-L-true-R-true-container-false-close-false-3-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2c035-s-L-true-R-true-container-false-close-false-3-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-chromium-linux.png deleted file mode 100644 index a35621a9ac..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-firefox-linux.png deleted file mode 100644 index d325c1921c..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-webkit-linux.png deleted file mode 100644 index 0df4e2f783..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png deleted file mode 100644 index a42270dc37..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png deleted file mode 100644 index 6f09acd7c1..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png deleted file mode 100644 index c32f4387f1..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-chromium-linux.png new file mode 100644 index 0000000000..ea8dda96ea Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-firefox-linux.png new file mode 100644 index 0000000000..a03c9ede23 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-webkit-linux.png new file mode 100644 index 0000000000..c5ea0a79f8 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png new file mode 100644 index 0000000000..e050fb4a33 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png new file mode 100644 index 0000000000..c0dc003f40 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png new file mode 100644 index 0000000000..2af7204277 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png new file mode 100644 index 0000000000..a37de96b5f Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png new file mode 100644 index 0000000000..3029473c4b Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png new file mode 100644 index 0000000000..89e39d6ba9 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-chromium-linux.png deleted file mode 100644 index 4e2b95a67e..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-firefox-linux.png deleted file mode 100644 index 662031e719..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-webkit-linux.png deleted file mode 100644 index ea9e887431..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png new file mode 100644 index 0000000000..1d651f1a1a Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png new file mode 100644 index 0000000000..d395369d57 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png new file mode 100644 index 0000000000..a165c4f30b Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..8d470e4b64 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..6a0ee44e7f Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..cc5d5a0e46 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png new file mode 100644 index 0000000000..1ae20b682d Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png new file mode 100644 index 0000000000..5b81565fe7 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png new file mode 100644 index 0000000000..dcc7312a13 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-chromium-linux.png new file mode 100644 index 0000000000..f90b18f138 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-firefox-linux.png new file mode 100644 index 0000000000..6ac97ff27d Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-webkit-linux.png new file mode 100644 index 0000000000..2a56d06257 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png deleted file mode 100644 index eb48e4abe1..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png deleted file mode 100644 index 738fbfef0d..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png deleted file mode 100644 index e03a95da8a..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-chromium-linux.png deleted file mode 100644 index 5b5e1f81a2..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-firefox-linux.png deleted file mode 100644 index ef315b6de2..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-webkit-linux.png deleted file mode 100644 index dc4bcb38b9..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png deleted file mode 100644 index 157da82d41..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png deleted file mode 100644 index 9435b38bac..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png deleted file mode 100644 index 947910bf4d..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png deleted file mode 100644 index 68f6e76853..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png deleted file mode 100644 index 8823b6aa6b..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png deleted file mode 100644 index 645f91802e..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-chromium-linux.png deleted file mode 100644 index 1e2601f290..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-firefox-linux.png deleted file mode 100644 index 970431d5a4..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-webkit-linux.png deleted file mode 100644 index de87c522fb..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-697c5-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ba47-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-697c5-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ba47-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-697c5-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ba47-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-697c5-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ba47-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-697c5-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ba47-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-697c5-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ba47-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-dffe8-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7dea4-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-dffe8-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7dea4-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-dffe8-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7dea4-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-dffe8-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7dea4-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-dffe8-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7dea4-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-dffe8-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7dea4-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..70adbd2d6f Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..269480d9b2 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..63df956490 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png new file mode 100644 index 0000000000..f90b18f138 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png new file mode 100644 index 0000000000..6ac97ff27d Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png new file mode 100644 index 0000000000..2a56d06257 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..bbe1600868 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..c03b8c1347 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..5258cb0919 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png new file mode 100644 index 0000000000..e88ce2b0ed Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png new file mode 100644 index 0000000000..a009279140 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png new file mode 100644 index 0000000000..6ca6c27630 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png new file mode 100644 index 0000000000..45f2a31226 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png new file mode 100644 index 0000000000..8558554219 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png new file mode 100644 index 0000000000..c267a71118 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png deleted file mode 100644 index f356b7a077..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png deleted file mode 100644 index c480a504a7..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png deleted file mode 100644 index a60251e242..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png new file mode 100644 index 0000000000..875b540a9e Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png new file mode 100644 index 0000000000..29c1c89e23 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png new file mode 100644 index 0000000000..5699b6f971 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-chromium-linux.png new file mode 100644 index 0000000000..faa0dc54b2 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-firefox-linux.png new file mode 100644 index 0000000000..829adc8f26 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-webkit-linux.png new file mode 100644 index 0000000000..c1c77b2321 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-52bb7-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8b2f9-L-false-R-false-container-false-close-false-1-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-52bb7-L-false-R-false-container-false-close-false-1-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8b2f9-L-false-R-false-container-false-close-false-1-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-52bb7-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8b2f9-L-false-R-false-container-false-close-false-1-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-52bb7-L-false-R-false-container-false-close-false-1-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8b2f9-L-false-R-false-container-false-close-false-1-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-52bb7-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8b2f9-L-false-R-false-container-false-close-false-1-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-52bb7-L-false-R-false-container-false-close-false-1-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8b2f9-L-false-R-false-container-false-close-false-1-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..49c22a4560 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..1d24fbf75d Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..1205d1d472 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-04105-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-92288-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-04105-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-92288-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-04105-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-92288-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-04105-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-92288-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-04105-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-92288-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-04105-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-92288-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png new file mode 100644 index 0000000000..faa0dc54b2 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png new file mode 100644 index 0000000000..829adc8f26 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png new file mode 100644 index 0000000000..c1c77b2321 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..c7a6851434 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..829adc8f26 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..bf550101c0 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png deleted file mode 100644 index 9151e5bfa7..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png deleted file mode 100644 index 4331ea4ea3..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png deleted file mode 100644 index 88f77342d0..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png new file mode 100644 index 0000000000..a514ae069f Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png new file mode 100644 index 0000000000..e654880911 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png new file mode 100644 index 0000000000..a98594b9e9 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..463b56a351 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..9d2137015e Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..86abed854a Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png deleted file mode 100644 index 38eae7686a..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png deleted file mode 100644 index e10fb3927a..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png deleted file mode 100644 index 5fd696b9ed..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd3f4-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a25e9-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd3f4-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a25e9-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd3f4-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a25e9-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd3f4-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a25e9-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd3f4-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a25e9-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd3f4-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a25e9-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-chromium-linux.png deleted file mode 100644 index f28584bd87..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-firefox-linux.png deleted file mode 100644 index 0e8b107bf7..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-webkit-linux.png deleted file mode 100644 index 3e73e1b4b4..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png new file mode 100644 index 0000000000..e7b963c083 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png new file mode 100644 index 0000000000..147470c152 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png new file mode 100644 index 0000000000..abcb0c2c2d Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png new file mode 100644 index 0000000000..29e815aacb Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png new file mode 100644 index 0000000000..9d2137015e Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png new file mode 100644 index 0000000000..2fefba0c4b Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png deleted file mode 100644 index 90f852da87..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png deleted file mode 100644 index 1c98154458..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png deleted file mode 100644 index 2be4101fe9..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-chromium-linux.png deleted file mode 100644 index e7cee9df23..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-firefox-linux.png deleted file mode 100644 index ef315b6de2..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-webkit-linux.png deleted file mode 100644 index 56b51c6d37..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-chromium-linux.png deleted file mode 100644 index cb22b83105..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-firefox-linux.png deleted file mode 100644 index f1da8c0205..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-webkit-linux.png deleted file mode 100644 index e2acfaa9df..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..c7a6851434 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..829adc8f26 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..bf550101c0 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d36c6-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-c0cea-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d36c6-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-c0cea-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d36c6-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-c0cea-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d36c6-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-c0cea-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d36c6-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-c0cea-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d36c6-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-c0cea-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-953b8-s-L-true-R-true-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d51d8-s-L-true-R-true-container-false-close-false-1-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-953b8-s-L-true-R-true-container-false-close-false-1-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d51d8-s-L-true-R-true-container-false-close-false-1-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-953b8-s-L-true-R-true-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d51d8-s-L-true-R-true-container-false-close-false-1-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-953b8-s-L-true-R-true-container-false-close-false-1-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d51d8-s-L-true-R-true-container-false-close-false-1-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-953b8-s-L-true-R-true-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d51d8-s-L-true-R-true-container-false-close-false-1-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-953b8-s-L-true-R-true-container-false-close-false-1-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d51d8-s-L-true-R-true-container-false-close-false-1-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png new file mode 100644 index 0000000000..114d6fa998 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png new file mode 100644 index 0000000000..309b81ec1d Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png new file mode 100644 index 0000000000..cfb92543df Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png deleted file mode 100644 index 2cc0854b1a..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png deleted file mode 100644 index 0f972f7308..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png deleted file mode 100644 index 016dbe6842..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png deleted file mode 100644 index 4d03ff9d92..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png deleted file mode 100644 index 46c8a802c0..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png deleted file mode 100644 index a9fff2ed73..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png new file mode 100644 index 0000000000..36122b83a2 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png new file mode 100644 index 0000000000..29c1c89e23 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png new file mode 100644 index 0000000000..da41a86e85 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png new file mode 100644 index 0000000000..6dd9e21cb9 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png new file mode 100644 index 0000000000..6d741a6c76 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png new file mode 100644 index 0000000000..7ef39c9f7a Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e8889-s-L-true-R-true-container-false-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e6bdb-s-L-true-R-true-container-false-close-false-2-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e8889-s-L-true-R-true-container-false-close-false-2-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e6bdb-s-L-true-R-true-container-false-close-false-2-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e8889-s-L-true-R-true-container-false-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e6bdb-s-L-true-R-true-container-false-close-false-2-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e8889-s-L-true-R-true-container-false-close-false-2-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e6bdb-s-L-true-R-true-container-false-close-false-2-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e8889-s-L-true-R-true-container-false-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e6bdb-s-L-true-R-true-container-false-close-false-2-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e8889-s-L-true-R-true-container-false-close-false-2-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e6bdb-s-L-true-R-true-container-false-close-false-2-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png deleted file mode 100644 index 82a706b3d3..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png deleted file mode 100644 index e10fb3927a..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png deleted file mode 100644 index 7719f20aed..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85ae9-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7aa5-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85ae9-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7aa5-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85ae9-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7aa5-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85ae9-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7aa5-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85ae9-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7aa5-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85ae9-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7aa5-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png deleted file mode 100644 index 981e584bb1..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png deleted file mode 100644 index 1c98154458..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png deleted file mode 100644 index 8c6388b6ab..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-chromium-linux.png new file mode 100644 index 0000000000..e88ce2b0ed Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-firefox-linux.png new file mode 100644 index 0000000000..a009279140 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-webkit-linux.png new file mode 100644 index 0000000000..6ca6c27630 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-chromium-linux.png deleted file mode 100644 index 58f7a0eb3a..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-firefox-linux.png deleted file mode 100644 index 0e8b107bf7..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-webkit-linux.png deleted file mode 100644 index 6f44044753..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..c85ad9ce4a Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..dcbee94622 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..8cff9ac909 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..463b56a351 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..9d2137015e Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..86abed854a Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-chromium-linux.png deleted file mode 100644 index 7c2a3354aa..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-firefox-linux.png deleted file mode 100644 index b4bcae53c8..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-webkit-linux.png deleted file mode 100644 index bc546a9c16..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png deleted file mode 100644 index 3474aaa36d..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png deleted file mode 100644 index 8823b6aa6b..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png deleted file mode 100644 index 324fd600d7..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png deleted file mode 100644 index b300948c78..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png deleted file mode 100644 index 6343841f78..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png deleted file mode 100644 index 0815a806f1..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Verify-tag-with-ellipsis-visual-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Verify-tag-with-ellipsis-visual-1-webkit-linux.png index 135a5938cf..cf99888287 100644 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Verify-tag-with-ellipsis-visual-1-webkit-linux.png and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Verify-tag-with-ellipsis-visual-1-webkit-linux.png differ diff --git a/semcore/tag/src/Tag.tsx b/semcore/tag/src/Tag.tsx index 6f36e64f70..b9e28fdf50 100644 --- a/semcore/tag/src/Tag.tsx +++ b/semcore/tag/src/Tag.tsx @@ -69,6 +69,16 @@ class RootTag extends Component< } }; + resolvedTheme() { + const { theme, invert } = this.asProps; + + if (invert === true) { + return `${theme}-invert`; + } + + return theme; + } + render() { const STag = Root; const { @@ -82,6 +92,7 @@ class RootTag extends Component< resolveColor, id: outerId, uid, + theme, } = this.asProps; const id = outerId || `igc-${uid}-tag`; const isInteractiveView = !disabled && interactive; @@ -93,7 +104,8 @@ class RootTag extends Component< id={id} use:interactive={isInteractive} use:interactiveView={isInteractiveView} - tag-color={resolveColor(color)} + use:theme={this.resolvedTheme()} + tag-color={theme === 'primary' ? resolveColor(color) : undefined} onKeyDown={this.handleKeyDown} use:tabIndex={isInteractive ? 0 : -1} role={isInteractive ? 'button' : undefined} @@ -153,6 +165,7 @@ class RootTagContainer extends Component< addonLeft, addonRight, active, + invert, } = this.asProps; const id = outerId || `igc-${uid}-tag`; @@ -168,6 +181,7 @@ class RootTagContainer extends Component< addonLeft, addonRight, active, + invert, }; } @@ -198,7 +212,7 @@ class RootTagContainer extends Component< return { disabled, size, - theme, + 'theme': this.resolvedTheme(), color, 'id': `${id}-clear`, 'aria-labelledby': `${id}-clear ${id}-text`, @@ -207,6 +221,16 @@ class RootTagContainer extends Component< }; } + resolvedTheme() { + const { theme, invert } = this.asProps; + + if (invert === true) { + return `${theme}-invert`; + } + + return theme; + } + render() { const STagContainer = Root; const { styles, Children, forcedAdvancedMode } = this.asProps; diff --git a/semcore/tag/src/Tag.type.ts b/semcore/tag/src/Tag.type.ts index d928d2d486..32a2fdbd83 100644 --- a/semcore/tag/src/Tag.type.ts +++ b/semcore/tag/src/Tag.type.ts @@ -27,8 +27,10 @@ declare namespace NSTag { * @default primary */ theme?: NSTag.Theme; - /** Tag color text */ - color?: string; + /** + * Flag for invert the tag to display in a dark theme or on a dark background. + */ + invert?: boolean; /** Tag size * @default m */ @@ -39,7 +41,15 @@ declare namespace NSTag { addonRight?: React.ElementType; /** Specifies the locale for i18n support */ locale?: string; - }; + } & ({ + theme?: 'primary'; + /** Tag color text */ + color?: string; + } | { + theme?: 'secondary' | 'additional'; + /** Tag color text */ + color?: never; + }); type DefaultProps = { theme: 'primary'; color: 'gray-500'; diff --git a/semcore/tag/src/style/tag.shadow.css b/semcore/tag/src/style/tag.shadow.css index 396d05d0de..4c8c8541d5 100644 --- a/semcore/tag/src/style/tag.shadow.css +++ b/semcore/tag/src/style/tag.shadow.css @@ -45,12 +45,12 @@ STagContainerClose { align-items: center; justify-content: center; vertical-align: middle; - border: 1px solid var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); + border: 1px solid var(--intergalactic-tag-primary-border, oklch(1 0 0)); box-sizing: border-box; - background-color: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); + background-color: var(--intergalactic-tag-primary-bg-normal, oklch(1 0 0)); border-radius: var(--intergalactic-tag-rounded, 24px); - padding-left: var(--intergalactic-spacing-1x, 4px); - padding-right: var(--intergalactic-spacing-1x, 4px); + padding-left: var(--intergalactic-spacing-content-gap-small, 4px); + padding-right: var(--intergalactic-spacing-content-gap-small, 4px); font-family: inherit; font-weight: var(--intergalactic-medium, 500); color: var(--tag-color); @@ -135,7 +135,7 @@ STag[size="xl"], STagContainerClose[size="xl"] { height: 40px; min-width: 40px; - padding: 0 var(--intergalactic-spacing-2x, 8px); + padding: 0 var(--intergalactic-spacing-content-gap-large, 8px); & SText { font-size: var(--intergalactic-fs-300, 16px); @@ -167,61 +167,96 @@ STagContainer[theme="primary"] SAddon { } STag[theme="secondary"], -STagContainerClose[theme="secondary"], -STag[theme="additional"], -STagContainerClose[theme="additional"] { - &::before { - opacity: 0.01; +STagContainerClose[theme="secondary"] { + color: var(--intergalactic-tag-secondary-text, #6a6c6a); + background-color: var(--intergalactic-tag-secondary-bg-normal, #ffffff); + border-color: var(--intergalactic-tag-secondary-border, oklch(0.95 0.002 180)); + + &::before, + &::after { + display: none; } &[interactiveView]:hover, &[interactiveView]:active, &[active] { - &:before { - opacity: 0.1; - } + background-color: var(--intergalactic-tag-secondary-bg-hover-active, #f4f5f5); } } -STag[theme="secondary"], -STagContainerClose[theme="secondary"], STag[theme="additional"], -STagContainerClose[theme="additional"], -STag[theme="secondary-invert"], -STagContainerClose[theme="secondary-invert"], -STag[theme="additional-invert"], -STagContainerClose[theme="additional-invert"] { +STagContainerClose[theme="additional"] { + color: var(--intergalactic-tag-additional-text, #6a6c6a); + background-color: var(--intergalactic-tag-additional-bg-normal, oklch(1 0 0)); + border-color: var(--intergalactic-tag-additional-border, oklch(0.95 0.002 180)); + border-style: dashed; + + &::before, &::after { - opacity: 0.5; + display: none; + } + + &[interactiveView]:hover, + &[interactiveView]:active, + &[active] { + background-color: var(--intergalactic-tag-additional-bg-hover-active, oklch(0.97 0.001 180)); } } STag[theme="primary-invert"], STagContainerClose[theme="primary-invert"] { - background-color: var( - --intergalactic-tag-primary-white-normal, - rgba(255, 255, 255, 0.15) - ); - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + background-color: var(--intergalactic-tag-primary-bg-invert-normal, oklch(0.969 0.057 140 / 0.118)); + color: var(--intergalactic-tag-primary-text-invert, #ffffff); + border-color: transparent; + + &[interactiveView]:hover, + &[interactiveView]:active, + &[active] { + background-color: var(--intergalactic-tag-primary-bg-invert-hover-active, oklch(0.99 0.017 140 / 0.242)); + } } STag[theme="secondary-invert"], -STagContainerClose[theme="secondary-invert"], +STagContainerClose[theme="secondary-invert"] { + background-color: var(--intergalactic-tag-secondary-bg-invert-normal, transparent); + color: var(--intergalactic-tag-secondary-text-invert, oklch(0.997 0.004 165.9 / 0.684)); + border-color: var(--intergalactic-tag-secondary-border-invert, oklch(0.989 0.019 140 / 0.232)); + + &::before, + &::after { + display: none; + } + + &[interactiveView]:hover, + &[interactiveView]:active, + &[active] { + background-color: var(--intergalactic-tag-secondary-bg-invert-hover-active, oklch(0.98 0.036 140 / 0.164)); + } +} + STag[theme="additional-invert"], STagContainerClose[theme="additional-invert"] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); -} + background-color: var(--intergalactic-tag-additional-bg-invert-normal, transparent); + color: var(--intergalactic-tag-additional-text-invert, oklch(0.997 0.004 165.9 / 0.684)); + border-color: var(--intergalactic-tag-additional-border-invert, oklch(0.995 0.009 144.4 / 0.347)); + border-style: dashed; -STag[theme="additional"] { + &::before, &::after { - border-style: dashed; + display: none; + } + + &[interactiveView]:hover, + &[interactiveView]:active, + &[active] { + background-color: var(--intergalactic-tag-additional-bg-invert-hover-active, oklch(0.98 0.036 140 / 0.164)); } } SText { display: flex; - padding-left: var(--intergalactic-spacing-1x, 4px); - padding-right: var(--intergalactic-spacing-1x, 4px); + padding-left: var(--intergalactic-spacing-content-gap-small, 4px); + padding-right: var(--intergalactic-spacing-content-gap-small, 4px); position: relative; } @@ -257,6 +292,20 @@ STagContainer { align-items: center; justify-content: center; + STag[theme="secondary"]:not(:last-child), + STag[theme="additional"]:not(:last-child), + STag[theme="secondary-invert"]:not(:last-child), + STag[theme="additional-invert"]:not(:last-child) { + border-right: 0; + } + + STagContainerClose[theme="secondary"], + STagContainerClose[theme="additional"], + STagContainerClose[theme="secondary-invert"], + STagContainerClose[theme="additional-invert"] { + border-left: 0; + } + STag, SAddon { &:not(:last-child) { @@ -318,7 +367,7 @@ STagContainer { svg { padding-left: 0; - padding-right: var(--intergalactic-spacing-1x, 4px); + padding-right: var(--intergalactic-spacing-content-gap-small, 4px); } svg path { @@ -332,8 +381,8 @@ STagContainer { STagContainerClose[size="xl"] { svg { - padding-left: var(--intergalactic-spacing-1x, 4px); - padding-right: var(--intergalactic-spacing-2x, 8px); + padding-left: var(--intergalactic-spacing-content-gap-small, 4px); + padding-right: var(--intergalactic-spacing-content-gap-large, 8px); } } } diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--1947f-undefined-and-placeholder-Type-something-2-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--1947f-undefined-and-placeholder-Type-something-2-chromium-linux.png index a27c35321e..eaa5b4a6a9 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--1947f-undefined-and-placeholder-Type-something-2-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--1947f-undefined-and-placeholder-Type-something-2-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--1947f-undefined-and-placeholder-Type-something-2-firefox-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--1947f-undefined-and-placeholder-Type-something-2-firefox-linux.png index 7e0ff458a1..5dd9b36f13 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--1947f-undefined-and-placeholder-Type-something-2-firefox-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--1947f-undefined-and-placeholder-Type-something-2-firefox-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--1947f-undefined-and-placeholder-Type-something-2-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--1947f-undefined-and-placeholder-Type-something-2-webkit-linux.png index 52f25f688e..854f87857f 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--1947f-undefined-and-placeholder-Type-something-2-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--1947f-undefined-and-placeholder-Type-something-2-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--44241-e-Default-Value-and-placeholder-undefined-1-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--44241-e-Default-Value-and-placeholder-undefined-1-chromium-linux.png index 7d8789494a..54a4884671 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--44241-e-Default-Value-and-placeholder-undefined-1-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--44241-e-Default-Value-and-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--4e1fc-Value-undefined-and-placeholder-undefined-2-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--4e1fc-Value-undefined-and-placeholder-undefined-2-chromium-linux.png index 0fd4c2f321..a9c6c1a572 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--4e1fc-Value-undefined-and-placeholder-undefined-2-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--4e1fc-Value-undefined-and-placeholder-undefined-2-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--543ee-Value-undefined-and-placeholder-undefined-1-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--543ee-Value-undefined-and-placeholder-undefined-1-chromium-linux.png index 8b8aa496d7..a341f7c3ba 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--543ee-Value-undefined-and-placeholder-undefined-1-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--543ee-Value-undefined-and-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--6a25c-undefined-and-placeholder-Type-something-2-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--6a25c-undefined-and-placeholder-Type-something-2-chromium-linux.png index 15f3db5440..d7b61b95cc 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--6a25c-undefined-and-placeholder-Type-something-2-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--6a25c-undefined-and-placeholder-Type-something-2-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--86388-Value-undefined-and-placeholder-undefined-1-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--86388-Value-undefined-and-placeholder-undefined-1-chromium-linux.png index 92ae2cf8fc..c2a660f7fd 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--86388-Value-undefined-and-placeholder-undefined-1-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--86388-Value-undefined-and-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--86388-Value-undefined-and-placeholder-undefined-1-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--86388-Value-undefined-and-placeholder-undefined-1-webkit-linux.png index d7cd079727..523220fd55 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--86388-Value-undefined-and-placeholder-undefined-1-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--86388-Value-undefined-and-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--87a0c-undefined-and-placeholder-Type-something-1-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--87a0c-undefined-and-placeholder-Type-something-1-chromium-linux.png index 613827b620..441320e749 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--87a0c-undefined-and-placeholder-Type-something-1-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--87a0c-undefined-and-placeholder-Type-something-1-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--88fc6-Value-undefined-and-placeholder-undefined-1-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--88fc6-Value-undefined-and-placeholder-undefined-1-chromium-linux.png index ef9b63aeda..afe1f2020b 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--88fc6-Value-undefined-and-placeholder-undefined-1-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--88fc6-Value-undefined-and-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--99d7d-undefined-and-placeholder-Type-something-1-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--99d7d-undefined-and-placeholder-Type-something-1-chromium-linux.png index 744f812017..f6dc9b53d8 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--99d7d-undefined-and-placeholder-Type-something-1-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--99d7d-undefined-and-placeholder-Type-something-1-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--99d7d-undefined-and-placeholder-Type-something-1-firefox-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--99d7d-undefined-and-placeholder-Type-something-1-firefox-linux.png index 38bd870561..7068b3e6bc 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--99d7d-undefined-and-placeholder-Type-something-1-firefox-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--99d7d-undefined-and-placeholder-Type-something-1-firefox-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--99d7d-undefined-and-placeholder-Type-something-1-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--99d7d-undefined-and-placeholder-Type-something-1-webkit-linux.png index 38df67d2d0..f5cc614c8d 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--99d7d-undefined-and-placeholder-Type-something-1-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--99d7d-undefined-and-placeholder-Type-something-1-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--bb150-e-Default-Value-and-placeholder-undefined-2-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--bb150-e-Default-Value-and-placeholder-undefined-2-chromium-linux.png index 54a63f19a7..e2bd51989c 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--bb150-e-Default-Value-and-placeholder-undefined-2-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--bb150-e-Default-Value-and-placeholder-undefined-2-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--d96c3-Value-undefined-and-placeholder-undefined-2-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--d96c3-Value-undefined-and-placeholder-undefined-2-chromium-linux.png index 1729dd70f9..0d0be777ce 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--d96c3-Value-undefined-and-placeholder-undefined-2-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--d96c3-Value-undefined-and-placeholder-undefined-2-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--d96c3-Value-undefined-and-placeholder-undefined-2-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--d96c3-Value-undefined-and-placeholder-undefined-2-webkit-linux.png index bf5cd9bdde..e7698551cb 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--d96c3-Value-undefined-and-placeholder-undefined-2-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-l-state--d96c3-Value-undefined-and-placeholder-undefined-2-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--01874-Value-undefined-and-placeholder-undefined-2-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--01874-Value-undefined-and-placeholder-undefined-2-chromium-linux.png index 493c9dfbdc..be93bd1c61 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--01874-Value-undefined-and-placeholder-undefined-2-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--01874-Value-undefined-and-placeholder-undefined-2-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--01874-Value-undefined-and-placeholder-undefined-2-firefox-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--01874-Value-undefined-and-placeholder-undefined-2-firefox-linux.png index a5cba693d4..3186c66f68 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--01874-Value-undefined-and-placeholder-undefined-2-firefox-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--01874-Value-undefined-and-placeholder-undefined-2-firefox-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--01874-Value-undefined-and-placeholder-undefined-2-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--01874-Value-undefined-and-placeholder-undefined-2-webkit-linux.png index 1b6a3252ce..558063ada8 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--01874-Value-undefined-and-placeholder-undefined-2-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--01874-Value-undefined-and-placeholder-undefined-2-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--08bc1-e-Default-Value-and-placeholder-undefined-2-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--08bc1-e-Default-Value-and-placeholder-undefined-2-chromium-linux.png index 833cace74b..b855583fca 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--08bc1-e-Default-Value-and-placeholder-undefined-2-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--08bc1-e-Default-Value-and-placeholder-undefined-2-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--08bc1-e-Default-Value-and-placeholder-undefined-2-firefox-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--08bc1-e-Default-Value-and-placeholder-undefined-2-firefox-linux.png index f2efe50234..d385a4058c 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--08bc1-e-Default-Value-and-placeholder-undefined-2-firefox-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--08bc1-e-Default-Value-and-placeholder-undefined-2-firefox-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--08bc1-e-Default-Value-and-placeholder-undefined-2-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--08bc1-e-Default-Value-and-placeholder-undefined-2-webkit-linux.png index 1702ee4fa5..3c41fc6343 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--08bc1-e-Default-Value-and-placeholder-undefined-2-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--08bc1-e-Default-Value-and-placeholder-undefined-2-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2c6ed-ult-Value-and-placeholder-Type-something-1-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2c6ed-ult-Value-and-placeholder-Type-something-1-chromium-linux.png index 30d574a224..289ad4340e 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2c6ed-ult-Value-and-placeholder-Type-something-1-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2c6ed-ult-Value-and-placeholder-Type-something-1-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2c6ed-ult-Value-and-placeholder-Type-something-1-firefox-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2c6ed-ult-Value-and-placeholder-Type-something-1-firefox-linux.png index 690d53b923..7a2f4a5170 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2c6ed-ult-Value-and-placeholder-Type-something-1-firefox-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2c6ed-ult-Value-and-placeholder-Type-something-1-firefox-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2c6ed-ult-Value-and-placeholder-Type-something-1-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2c6ed-ult-Value-and-placeholder-Type-something-1-webkit-linux.png index 370843a767..11e6ea7377 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2c6ed-ult-Value-and-placeholder-Type-something-1-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2c6ed-ult-Value-and-placeholder-Type-something-1-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2f15c-undefined-and-placeholder-Type-something-1-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2f15c-undefined-and-placeholder-Type-something-1-chromium-linux.png index 57efe7d18e..12e2a37ea8 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2f15c-undefined-and-placeholder-Type-something-1-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2f15c-undefined-and-placeholder-Type-something-1-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2f15c-undefined-and-placeholder-Type-something-1-firefox-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2f15c-undefined-and-placeholder-Type-something-1-firefox-linux.png index 9dbb46dd28..34706c5b58 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2f15c-undefined-and-placeholder-Type-something-1-firefox-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2f15c-undefined-and-placeholder-Type-something-1-firefox-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2f15c-undefined-and-placeholder-Type-something-1-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2f15c-undefined-and-placeholder-Type-something-1-webkit-linux.png index 530803e475..bc8dd459fb 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2f15c-undefined-and-placeholder-Type-something-1-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--2f15c-undefined-and-placeholder-Type-something-1-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--44d9f-undefined-and-placeholder-Type-something-2-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--44d9f-undefined-and-placeholder-Type-something-2-chromium-linux.png index 818382fdf1..806df41ea6 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--44d9f-undefined-and-placeholder-Type-something-2-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--44d9f-undefined-and-placeholder-Type-something-2-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--44d9f-undefined-and-placeholder-Type-something-2-firefox-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--44d9f-undefined-and-placeholder-Type-something-2-firefox-linux.png index 3a167f0e74..fea3c1de3a 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--44d9f-undefined-and-placeholder-Type-something-2-firefox-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--44d9f-undefined-and-placeholder-Type-something-2-firefox-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--44d9f-undefined-and-placeholder-Type-something-2-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--44d9f-undefined-and-placeholder-Type-something-2-webkit-linux.png index 1702ee4fa5..3c41fc6343 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--44d9f-undefined-and-placeholder-Type-something-2-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--44d9f-undefined-and-placeholder-Type-something-2-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--47e6c-undefined-and-placeholder-Type-something-2-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--47e6c-undefined-and-placeholder-Type-something-2-chromium-linux.png index cd054a8003..8d5bfb18c2 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--47e6c-undefined-and-placeholder-Type-something-2-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--47e6c-undefined-and-placeholder-Type-something-2-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--47e6c-undefined-and-placeholder-Type-something-2-firefox-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--47e6c-undefined-and-placeholder-Type-something-2-firefox-linux.png index f92ee8a5c3..881744ca36 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--47e6c-undefined-and-placeholder-Type-something-2-firefox-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--47e6c-undefined-and-placeholder-Type-something-2-firefox-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--47e6c-undefined-and-placeholder-Type-something-2-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--47e6c-undefined-and-placeholder-Type-something-2-webkit-linux.png index f6707eee29..864171bc82 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--47e6c-undefined-and-placeholder-Type-something-2-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--47e6c-undefined-and-placeholder-Type-something-2-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--4e9ac-ult-Value-and-placeholder-Type-something-2-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--4e9ac-ult-Value-and-placeholder-Type-something-2-chromium-linux.png index 30d574a224..289ad4340e 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--4e9ac-ult-Value-and-placeholder-Type-something-2-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--4e9ac-ult-Value-and-placeholder-Type-something-2-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--4e9ac-ult-Value-and-placeholder-Type-something-2-firefox-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--4e9ac-ult-Value-and-placeholder-Type-something-2-firefox-linux.png index 690d53b923..7a2f4a5170 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--4e9ac-ult-Value-and-placeholder-Type-something-2-firefox-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--4e9ac-ult-Value-and-placeholder-Type-something-2-firefox-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--4e9ac-ult-Value-and-placeholder-Type-something-2-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--4e9ac-ult-Value-and-placeholder-Type-something-2-webkit-linux.png index 370843a767..11e6ea7377 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--4e9ac-ult-Value-and-placeholder-Type-something-2-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--4e9ac-ult-Value-and-placeholder-Type-something-2-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--77a03-e-Default-Value-and-placeholder-undefined-1-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--77a03-e-Default-Value-and-placeholder-undefined-1-chromium-linux.png index f371d3b14d..eaf9e563b5 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--77a03-e-Default-Value-and-placeholder-undefined-1-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--77a03-e-Default-Value-and-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--77a03-e-Default-Value-and-placeholder-undefined-1-firefox-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--77a03-e-Default-Value-and-placeholder-undefined-1-firefox-linux.png index 60f91800fd..96c1cf236c 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--77a03-e-Default-Value-and-placeholder-undefined-1-firefox-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--77a03-e-Default-Value-and-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--77a03-e-Default-Value-and-placeholder-undefined-1-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--77a03-e-Default-Value-and-placeholder-undefined-1-webkit-linux.png index 56e0eb4f44..246e2a26b6 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--77a03-e-Default-Value-and-placeholder-undefined-1-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--77a03-e-Default-Value-and-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--78b04-undefined-and-placeholder-Type-something-1-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--78b04-undefined-and-placeholder-Type-something-1-chromium-linux.png index 0434b17c71..552a85b674 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--78b04-undefined-and-placeholder-Type-something-1-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--78b04-undefined-and-placeholder-Type-something-1-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--78b04-undefined-and-placeholder-Type-something-1-firefox-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--78b04-undefined-and-placeholder-Type-something-1-firefox-linux.png index cf1a3e63ce..9402932f6e 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--78b04-undefined-and-placeholder-Type-something-1-firefox-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--78b04-undefined-and-placeholder-Type-something-1-firefox-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--78b04-undefined-and-placeholder-Type-something-1-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--78b04-undefined-and-placeholder-Type-something-1-webkit-linux.png index 99ae8c5473..80508df044 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--78b04-undefined-and-placeholder-Type-something-1-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--78b04-undefined-and-placeholder-Type-something-1-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--80cd8-e-Default-Value-and-placeholder-undefined-1-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--80cd8-e-Default-Value-and-placeholder-undefined-1-chromium-linux.png index 83c61a3ffe..b1fa05a455 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--80cd8-e-Default-Value-and-placeholder-undefined-1-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--80cd8-e-Default-Value-and-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--80cd8-e-Default-Value-and-placeholder-undefined-1-firefox-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--80cd8-e-Default-Value-and-placeholder-undefined-1-firefox-linux.png index 3d630916fb..566743d5db 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--80cd8-e-Default-Value-and-placeholder-undefined-1-firefox-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--80cd8-e-Default-Value-and-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--80cd8-e-Default-Value-and-placeholder-undefined-1-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--80cd8-e-Default-Value-and-placeholder-undefined-1-webkit-linux.png index d7ce5f1f1c..f0ddd24476 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--80cd8-e-Default-Value-and-placeholder-undefined-1-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--80cd8-e-Default-Value-and-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--97df0-undefined-and-placeholder-Type-something-2-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--97df0-undefined-and-placeholder-Type-something-2-chromium-linux.png index 57efe7d18e..12e2a37ea8 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--97df0-undefined-and-placeholder-Type-something-2-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--97df0-undefined-and-placeholder-Type-something-2-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--97df0-undefined-and-placeholder-Type-something-2-firefox-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--97df0-undefined-and-placeholder-Type-something-2-firefox-linux.png index 9dbb46dd28..34706c5b58 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--97df0-undefined-and-placeholder-Type-something-2-firefox-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--97df0-undefined-and-placeholder-Type-something-2-firefox-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--97df0-undefined-and-placeholder-Type-something-2-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--97df0-undefined-and-placeholder-Type-something-2-webkit-linux.png index 530803e475..bc8dd459fb 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--97df0-undefined-and-placeholder-Type-something-2-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--97df0-undefined-and-placeholder-Type-something-2-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--eb650-undefined-and-placeholder-Type-something-1-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--eb650-undefined-and-placeholder-Type-something-1-chromium-linux.png index 464cb9eff0..f6e812db19 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--eb650-undefined-and-placeholder-Type-something-1-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--eb650-undefined-and-placeholder-Type-something-1-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--eb650-undefined-and-placeholder-Type-something-1-firefox-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--eb650-undefined-and-placeholder-Type-something-1-firefox-linux.png index 12686e2119..c635f4c2ba 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--eb650-undefined-and-placeholder-Type-something-1-firefox-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--eb650-undefined-and-placeholder-Type-something-1-firefox-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--eb650-undefined-and-placeholder-Type-something-1-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--eb650-undefined-and-placeholder-Type-something-1-webkit-linux.png index 49745f43ed..21df884216 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--eb650-undefined-and-placeholder-Type-something-1-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--eb650-undefined-and-placeholder-Type-something-1-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--f20e5-undefined-and-placeholder-Type-something-1-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--f20e5-undefined-and-placeholder-Type-something-1-chromium-linux.png index c4b5793536..f57c484094 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--f20e5-undefined-and-placeholder-Type-something-1-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--f20e5-undefined-and-placeholder-Type-something-1-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--f20e5-undefined-and-placeholder-Type-something-1-firefox-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--f20e5-undefined-and-placeholder-Type-something-1-firefox-linux.png index 91cf31197b..6609add243 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--f20e5-undefined-and-placeholder-Type-something-1-firefox-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--f20e5-undefined-and-placeholder-Type-something-1-firefox-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--f20e5-undefined-and-placeholder-Type-something-1-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--f20e5-undefined-and-placeholder-Type-something-1-webkit-linux.png index aad956e17e..3135261045 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--f20e5-undefined-and-placeholder-Type-something-1-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--f20e5-undefined-and-placeholder-Type-something-1-webkit-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--fa375-Value-undefined-and-placeholder-undefined-1-chromium-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--fa375-Value-undefined-and-placeholder-undefined-1-chromium-linux.png index 1d91b0bfeb..493f9013bf 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--fa375-Value-undefined-and-placeholder-undefined-1-chromium-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--fa375-Value-undefined-and-placeholder-undefined-1-chromium-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--fa375-Value-undefined-and-placeholder-undefined-1-firefox-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--fa375-Value-undefined-and-placeholder-undefined-1-firefox-linux.png index cea7271e34..2ed949e6e3 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--fa375-Value-undefined-and-placeholder-undefined-1-firefox-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--fa375-Value-undefined-and-placeholder-undefined-1-firefox-linux.png differ diff --git a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--fa375-Value-undefined-and-placeholder-undefined-1-webkit-linux.png b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--fa375-Value-undefined-and-placeholder-undefined-1-webkit-linux.png index 1cc1478c3f..768b5cceb1 100644 Binary files a/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--fa375-Value-undefined-and-placeholder-undefined-1-webkit-linux.png and b/semcore/textarea/__tests__/textarea.browser-test.tsx-snapshots/-visual-Verify-Textarea-with-size-m-state--fa375-Value-undefined-and-placeholder-undefined-1-webkit-linux.png differ diff --git a/semcore/textarea/src/style/textarea.shadow.css b/semcore/textarea/src/style/textarea.shadow.css index 309681631a..7d76a8e5ec 100644 --- a/semcore/textarea/src/style/textarea.shadow.css +++ b/semcore/textarea/src/style/textarea.shadow.css @@ -23,13 +23,15 @@ STextarea { } STextarea[size='m'] { - padding: var(--intergalactic-spacing-1x, 4px) var(--intergalactic-spacing-2x, 8px); + min-height: var(--intergalactic-form-control-m, 32px); + padding: var(--intergalactic-spacing-1x, 4px) var(--intergalactic-spacing-content-padding-medium, 12px); font-size: var(--intergalactic-fs-200, 14px); line-height: var(--intergalactic-lh-200, 142%); } STextarea[size='l'] { - padding: var(--intergalactic-spacing-2x, 8px) var(--intergalactic-spacing-2x, 8px) var(--intergalactic-spacing-2x, 8px) var(--intergalactic-spacing-3x, 12px); + min-height: var(--intergalactic-form-control-l, 44px); + padding: var(--intergalactic-spacing-2x, 8px) var(--intergalactic-spacing-content-padding-medium, 12px); font-size: var(--intergalactic-fs-300, 16px); line-height: var(--intergalactic-lh-300, 150%); } diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx b/semcore/time-picker/__tests__/time-picker.browser-test.tsx index 11e8f4b702..6d7e0b513f 100644 --- a/semcore/time-picker/__tests__/time-picker.browser-test.tsx +++ b/semcore/time-picker/__tests__/time-picker.browser-test.tsx @@ -29,7 +29,7 @@ test.describe(`${TAG.VISUAL} `, () => { variablesStatesAndSizes.forEach((item) => { test(`Verify TimePicker with is12Hour=${item.is12Hour} state= ${item.state} size= ${item.size}`, { tag: [TAG.PRIORITY_HIGH, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/time-picker/tests/examples/different_cases.tsx', 'en', item); @@ -40,13 +40,13 @@ test.describe(`${TAG.VISUAL} `, () => { if (classAttr?.includes('_size_m_')) { for (let i = 0; i < 2; i++) { - await expect(locators.timeBoxes(page).nth(i)).toHaveCSS('margin-left', '8px'); - await expect(locators.timeBoxes(page).nth(i)).toHaveCSS('margin-right', '8px'); + await expect(locators.timeBoxes(page).nth(i)).toHaveCSS('margin-left', '12px'); + await expect(locators.timeBoxes(page).nth(i)).toHaveCSS('margin-right', '12px'); } } else if (classAttr?.includes('_size_l_')) { await expect(locators.timeBoxes(page).nth(0)).toHaveCSS('margin-left', '12px'); - await expect(locators.timeBoxes(page).nth(0)).toHaveCSS('margin-right', '8px'); - await expect(locators.timeBoxes(page).nth(1)).toHaveCSS('margin-left', '8px'); + await expect(locators.timeBoxes(page).nth(0)).toHaveCSS('margin-right', '12px'); + await expect(locators.timeBoxes(page).nth(1)).toHaveCSS('margin-left', '12px'); await expect(locators.timeBoxes(page).nth(1)).toHaveCSS('margin-right', '12px'); } }, @@ -90,7 +90,7 @@ test.describe(`${TAG.VISUAL} `, () => { variablesDisabledStatesSizes.forEach((item) => { test(`Verify disabled TimePicker with state= ${item.state} size= ${item.size} is12Hour=${item.is12Hour}`, { tag: [TAG.PRIORITY_HIGH, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/time-picker/tests/examples/different_cases.tsx', 'en', item); await expect(page).toHaveScreenshot(); @@ -106,7 +106,7 @@ test.describe(`${TAG.VISUAL} `, () => { variablesValueandDefaultValue.forEach((item) => { test(`Verify TimePicker with value= ${item.value} defaultValue= ${item.defaultValue} is12Hour=${item.is12Hour}`, { tag: [TAG.PRIORITY_HIGH, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/time-picker/tests/examples/different_cases.tsx', 'en', item); await expect(page).toHaveScreenshot(); @@ -115,7 +115,7 @@ test.describe(`${TAG.VISUAL} `, () => { test('Verify hours and minutes listboxes with and without step ', { tag: [TAG.PRIORITY_HIGH, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/time-picker/tests/examples/different_cases.tsx', 'en'); @@ -164,7 +164,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify expanded Time Picker with format keyboard interactions', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/time-picker/docs/examples/expanded_access_to_all_the_components.tsx', 'en'); @@ -268,7 +268,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify Time Picker inputs has correct aria-invalid value for invalid state', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/time-picker/tests/examples/different_cases.tsx', 'en', { state: 'invalid' }); @@ -279,7 +279,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify Time Picker expanded with format mouse interactions', { tag: [TAG.PRIORITY_HIGH, TAG.MOUSE, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/time-picker/docs/examples/expanded_access_to_all_the_components.tsx', 'en'); @@ -332,7 +332,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify Time Picker base with format keyboard interactions', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/time-picker/tests/examples/different_cases.tsx', 'en', { is12Hour: true }); @@ -468,7 +468,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify Time Picker base without format keyboard interactions', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/time-picker/tests/examples/different_cases.tsx', 'en', { is12Hour: false }); @@ -535,7 +535,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify Format changing when value empty', { tag: [TAG.PRIORITY_HIGH, TAG.KEYBOARD, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/time-picker/docs/examples/expanded_access_to_all_the_components.tsx', 'en'); const formatButton = page.locator('[data-ui-name="TimePicker.Format"] span'); @@ -561,7 +561,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify valid time is logged to console when selecting from list or entering manually', { tag: [TAG.PRIORITY_HIGH, TAG.FUNCTIONAL, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@button', '@typography'], }, async ({ page }) => { const consoleMessages: string[] = []; @@ -658,7 +658,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify 24-hour mode returns 12 when entering noon manually', { tag: [TAG.PRIORITY_HIGH, TAG.FUNCTIONAL, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@button', '@typography'], }, async ({ page }) => { const consoleMessages: string[] = []; @@ -689,7 +689,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify custom format does not convert values in 24-hour mode', { tag: [TAG.PRIORITY_HIGH, TAG.FUNCTIONAL, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/time-picker/tests/examples/different_cases.tsx', 'en', { defaultValue: '14:44', @@ -711,7 +711,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify locale prop localizes time field labels', { tag: [TAG.PRIORITY_MEDIUM, TAG.FUNCTIONAL, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/time-picker/tests/examples/different_cases.tsx', 'fr', { locale: 'fr', @@ -728,7 +728,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify item-level step, placeholder and autoFocus props', { tag: [TAG.PRIORITY_MEDIUM, TAG.FUNCTIONAL, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/time-picker/tests/examples/different_cases.tsx', 'en', { autoFocus: true, @@ -759,7 +759,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify 12-hour mode should infer PM from a controlled 24-hour value', { tag: [TAG.PRIORITY_HIGH, TAG.FUNCTIONAL, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@button', '@typography'], }, async ({ page }) => { const consoleMessages: string[] = []; @@ -792,7 +792,7 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { test('Verify 12-hour mode should infer PM after external controlled value updates', { tag: [TAG.PRIORITY_HIGH, TAG.FUNCTIONAL, - '@time-picker'], + '@time-picker', '@base-components', '@flex-box', '@button', '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/time-picker/tests/examples/interactive_examples.tsx', 'en', { showOnChange: true, diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-1-chromium-linux.png index 0d25854366..9a32cadd41 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-1-firefox-linux.png index c265c24c01..9b3dfac7e9 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-1-webkit-linux.png index d859a71623..1b6593191d 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-2-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-2-chromium-linux.png index 0d0dee69f8..25164403fa 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-2-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-2-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-2-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-2-firefox-linux.png index c2c30489ca..b67203e9c6 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-2-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-2-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-2-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-2-webkit-linux.png index 1b76e34f01..bb92a63381 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-2-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-2-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-3-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-3-chromium-linux.png index bcf8551662..c379cfefd4 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-3-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-3-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-3-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-3-firefox-linux.png index 4da0d9f6e7..6d2ca31f5b 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-3-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-3-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-3-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-3-webkit-linux.png index 49490c81e2..c16b981f62 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-3-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-3-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-4-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-4-chromium-linux.png index 2da6380c47..562dc5cae6 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-4-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-4-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-4-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-4-firefox-linux.png index f2d03e8665..627408d498 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-4-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-4-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-4-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-4-webkit-linux.png index d66f848f9c..282f0ccf94 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-4-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-invalid-size-l-4-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-1-chromium-linux.png index 5441890558..2cdeb73a6e 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-1-firefox-linux.png index c50c0cb195..f68e99ed88 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-1-webkit-linux.png index c148b9533a..2ad5732cf7 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-2-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-2-chromium-linux.png index 73225f1ff2..4a86ce5ad3 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-2-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-2-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-2-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-2-firefox-linux.png index 36e77dd0fc..23468685f4 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-2-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-2-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-2-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-2-webkit-linux.png index a055f8b417..478ff8622f 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-2-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-2-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-3-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-3-chromium-linux.png index a60f00fac1..4e83484fc4 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-3-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-3-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-3-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-3-firefox-linux.png index bd79b567c1..7f88b0db80 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-3-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-3-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-3-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-3-webkit-linux.png index d60331f712..800ca9d698 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-3-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-3-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-4-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-4-chromium-linux.png index ab712ce0dc..aa6c61f775 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-4-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-4-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-4-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-4-firefox-linux.png index ad91caa769..c1f1ca2fe9 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-4-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-4-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-4-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-4-webkit-linux.png index dadbecde22..0f3fa012b8 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-4-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-normal-size-l-4-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-1-chromium-linux.png index 3e1765ed4a..e17c416cf0 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-1-firefox-linux.png index 3830052ceb..42124fdc12 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-1-webkit-linux.png index 60f9439291..325c08480f 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-2-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-2-chromium-linux.png index 8309aa1793..edc2f798a1 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-2-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-2-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-2-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-2-firefox-linux.png index 859fb38107..8b47e894eb 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-2-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-2-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-2-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-2-webkit-linux.png index 2b01fda164..e575e894bc 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-2-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-2-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-3-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-3-chromium-linux.png index 81fa7d0eb9..92ad16ffc1 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-3-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-3-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-3-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-3-firefox-linux.png index 33e5bb8a8e..50fbde3813 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-3-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-3-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-3-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-3-webkit-linux.png index 3733b26051..e108094a1c 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-3-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-3-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-4-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-4-chromium-linux.png index fb4384c880..e2ead58ed9 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-4-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-4-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-4-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-4-firefox-linux.png index e5e1fac84a..11163dc264 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-4-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-4-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-4-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-4-webkit-linux.png index 22776201a0..696bda7a9e 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-4-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-false-state-valid-size-m-4-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-1-chromium-linux.png index 25212b3008..9a153e00c8 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-1-firefox-linux.png index 5cf527904c..12d247520b 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-1-webkit-linux.png index 5f1e4a8271..58e28e0c5d 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-2-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-2-chromium-linux.png index 23195dbf4a..767554d2b2 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-2-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-2-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-2-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-2-firefox-linux.png index 4642e192b6..0725682f57 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-2-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-2-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-2-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-2-webkit-linux.png index 030f19f1c0..89d5bcad68 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-2-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-2-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-3-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-3-chromium-linux.png index 62c3ee62ff..d9870e89ff 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-3-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-3-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-3-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-3-firefox-linux.png index 42fec26738..642780baff 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-3-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-3-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-3-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-3-webkit-linux.png index 3950712812..c56a754dce 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-3-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-3-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-4-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-4-chromium-linux.png index 8c17fac31c..03ccda6d5f 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-4-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-4-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-4-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-4-firefox-linux.png index 4cc7984498..f9550930c6 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-4-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-4-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-4-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-4-webkit-linux.png index 3a224b7a0f..eed6d331b2 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-4-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-invalid-size-m-4-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-1-chromium-linux.png index 92cf54328d..d4575c3018 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-1-firefox-linux.png index e35816f521..f1ed37e08f 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-1-webkit-linux.png index 53423a10f9..0afc40a15a 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-2-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-2-chromium-linux.png index da995d5b0d..bf383965b4 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-2-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-2-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-2-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-2-firefox-linux.png index 8bd6fc8e0e..65810a4b10 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-2-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-2-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-2-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-2-webkit-linux.png index 6b40e41b12..69ff5d9ecc 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-2-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-2-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-3-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-3-chromium-linux.png index ee140b5e2c..3016286d7b 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-3-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-3-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-3-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-3-firefox-linux.png index d1017b20c0..be221f13de 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-3-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-3-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-3-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-3-webkit-linux.png index 44d06a4a58..1d33d6d5bf 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-3-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-3-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-4-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-4-chromium-linux.png index 97299b9f79..07c1c3378e 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-4-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-4-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-4-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-4-firefox-linux.png index 0c367bf857..6e5d8ad73b 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-4-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-4-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-4-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-4-webkit-linux.png index 3d3e5c17e9..a148746b7b 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-4-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-normal-size-m-4-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-1-chromium-linux.png index 92683e09b0..1101f61ab4 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-1-firefox-linux.png index 7962bebc95..efa1608590 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-1-webkit-linux.png index 206354e4a8..8807574f1e 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-2-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-2-chromium-linux.png index 46a357bd4f..00e60ea019 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-2-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-2-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-2-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-2-firefox-linux.png index af58da8db5..029f0b6183 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-2-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-2-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-2-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-2-webkit-linux.png index 7742e8b54f..5945a3461b 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-2-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-2-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-3-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-3-chromium-linux.png index 45ea585633..6e9b19789b 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-3-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-3-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-3-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-3-firefox-linux.png index 91382f96e0..ffcc084670 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-3-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-3-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-3-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-3-webkit-linux.png index d2dd0f0acb..fa280a735c 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-3-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-3-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-4-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-4-chromium-linux.png index 851fbee007..09a89017cd 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-4-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-4-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-4-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-4-firefox-linux.png index 90208b42c4..8bc24ac14b 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-4-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-4-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-4-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-4-webkit-linux.png index 648a940ba2..238695145e 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-4-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-is12Hour-true-state-valid-size-l-4-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-32-defaultValue-undefined-is12Hour-true-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-32-defaultValue-undefined-is12Hour-true-1-chromium-linux.png index b4650a172c..e921cfeea5 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-32-defaultValue-undefined-is12Hour-true-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-32-defaultValue-undefined-is12Hour-true-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-32-defaultValue-undefined-is12Hour-true-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-32-defaultValue-undefined-is12Hour-true-1-firefox-linux.png index 21a087cc00..8e8cc7e611 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-32-defaultValue-undefined-is12Hour-true-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-32-defaultValue-undefined-is12Hour-true-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-32-defaultValue-undefined-is12Hour-true-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-32-defaultValue-undefined-is12Hour-true-1-webkit-linux.png index 16ab2f9377..b169840fba 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-32-defaultValue-undefined-is12Hour-true-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-32-defaultValue-undefined-is12Hour-true-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-44-defaultValue-undefined-is12Hour-false-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-44-defaultValue-undefined-is12Hour-false-1-chromium-linux.png index 4b1bacd124..8121ad675e 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-44-defaultValue-undefined-is12Hour-false-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-44-defaultValue-undefined-is12Hour-false-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-44-defaultValue-undefined-is12Hour-false-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-44-defaultValue-undefined-is12Hour-false-1-firefox-linux.png index 19c195dd8d..36be301c55 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-44-defaultValue-undefined-is12Hour-false-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-44-defaultValue-undefined-is12Hour-false-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-44-defaultValue-undefined-is12Hour-false-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-44-defaultValue-undefined-is12Hour-false-1-webkit-linux.png index 49d55cea9f..bae2b3134a 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-44-defaultValue-undefined-is12Hour-false-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-12-44-defaultValue-undefined-is12Hour-false-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-08-19-is12Hour-true-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-08-19-is12Hour-true-1-chromium-linux.png index 3cabc6c4ab..452ad535c4 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-08-19-is12Hour-true-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-08-19-is12Hour-true-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-08-19-is12Hour-true-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-08-19-is12Hour-true-1-firefox-linux.png index 2e55f3ef71..1312a4740a 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-08-19-is12Hour-true-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-08-19-is12Hour-true-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-08-19-is12Hour-true-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-08-19-is12Hour-true-1-webkit-linux.png index 5ced831e3c..fae09bafe8 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-08-19-is12Hour-true-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-08-19-is12Hour-true-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-23-59-is12Hour-false-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-23-59-is12Hour-false-1-chromium-linux.png index 8864593bc4..fd650b10f7 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-23-59-is12Hour-false-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-23-59-is12Hour-false-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-23-59-is12Hour-false-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-23-59-is12Hour-false-1-firefox-linux.png index a8aa761c15..14fb4e108c 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-23-59-is12Hour-false-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-23-59-is12Hour-false-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-23-59-is12Hour-false-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-23-59-is12Hour-false-1-webkit-linux.png index cbcda0b74f..43021752b6 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-23-59-is12Hour-false-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-TimePicker-with-value-undefined-defaultValue-23-59-is12Hour-false-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-l-is12Hour-false-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-l-is12Hour-false-1-chromium-linux.png index 4bba77e6db..e517213cfd 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-l-is12Hour-false-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-l-is12Hour-false-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-l-is12Hour-false-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-l-is12Hour-false-1-firefox-linux.png index 1a2ab064f7..f5c33196d0 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-l-is12Hour-false-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-l-is12Hour-false-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-l-is12Hour-false-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-l-is12Hour-false-1-webkit-linux.png index 7409a9f16d..6ce7e62d9a 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-l-is12Hour-false-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-l-is12Hour-false-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-m-is12Hour-true-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-m-is12Hour-true-1-chromium-linux.png index d82d0ecf7b..f41c07c9d7 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-m-is12Hour-true-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-m-is12Hour-true-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-m-is12Hour-true-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-m-is12Hour-true-1-firefox-linux.png index c89bc10cb7..7378ec50eb 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-m-is12Hour-true-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-m-is12Hour-true-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-m-is12Hour-true-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-m-is12Hour-true-1-webkit-linux.png index 790085ca9a..99309ac882 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-m-is12Hour-true-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-invalid-size-m-is12Hour-true-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-l-is12Hour-false-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-l-is12Hour-false-1-chromium-linux.png index efd2ef2a39..2f9e004c42 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-l-is12Hour-false-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-l-is12Hour-false-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-l-is12Hour-false-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-l-is12Hour-false-1-firefox-linux.png index 812f9396ee..f39ec3f93c 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-l-is12Hour-false-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-l-is12Hour-false-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-l-is12Hour-false-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-l-is12Hour-false-1-webkit-linux.png index f59268476b..2515fe8a89 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-l-is12Hour-false-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-l-is12Hour-false-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-m-is12Hour-true-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-m-is12Hour-true-1-chromium-linux.png index 40e35f134e..894dec0476 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-m-is12Hour-true-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-m-is12Hour-true-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-m-is12Hour-true-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-m-is12Hour-true-1-firefox-linux.png index 1f79e93864..f66d47889e 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-m-is12Hour-true-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-m-is12Hour-true-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-m-is12Hour-true-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-m-is12Hour-true-1-webkit-linux.png index c2da428c7e..8372da6019 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-m-is12Hour-true-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-normal-size-m-is12Hour-true-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-l-is12Hour-true-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-l-is12Hour-true-1-chromium-linux.png index b68229b6c8..f3f7fe7b8e 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-l-is12Hour-true-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-l-is12Hour-true-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-l-is12Hour-true-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-l-is12Hour-true-1-firefox-linux.png index 0ab6a3f328..099ef8433a 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-l-is12Hour-true-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-l-is12Hour-true-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-l-is12Hour-true-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-l-is12Hour-true-1-webkit-linux.png index 257d091841..5e4d84f162 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-l-is12Hour-true-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-l-is12Hour-true-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-m-is12Hour-false-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-m-is12Hour-false-1-chromium-linux.png index 4a65274469..1d9a4ea657 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-m-is12Hour-false-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-m-is12Hour-false-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-m-is12Hour-false-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-m-is12Hour-false-1-firefox-linux.png index 393900cb29..24ef183110 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-m-is12Hour-false-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-m-is12Hour-false-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-m-is12Hour-false-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-m-is12Hour-false-1-webkit-linux.png index ee77b52b0d..8448d49ca4 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-m-is12Hour-false-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-disabled-TimePicker-with-state-valid-size-m-is12Hour-false-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-1-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-1-chromium-linux.png index 4e5f7f3038..e44303fb46 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-1-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-1-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-1-firefox-linux.png index 6e55a565ab..a61f0bfb8c 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-1-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-1-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-1-webkit-linux.png index 43c06524d3..95c4522577 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-1-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-2-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-2-chromium-linux.png index 1628975a6b..09a5c398d6 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-2-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-2-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-2-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-2-firefox-linux.png index 0ba64dd7db..3455c9f39c 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-2-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-2-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-2-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-2-webkit-linux.png index 55a5a9466f..cfb9d571cb 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-2-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-2-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-3-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-3-chromium-linux.png index a861826583..1f382997ff 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-3-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-3-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-3-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-3-firefox-linux.png index cf751efae1..259ebcf879 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-3-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-3-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-3-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-3-webkit-linux.png index 28a20ef3bb..9e4f615ae3 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-3-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-3-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-4-chromium-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-4-chromium-linux.png index d11acbd47b..a793ba533d 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-4-chromium-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-4-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-4-firefox-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-4-firefox-linux.png index 8da3f4b10a..590da5fa4f 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-4-firefox-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-4-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-4-webkit-linux.png b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-4-webkit-linux.png index e7c4a4e44e..c004480f94 100644 Binary files a/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-4-webkit-linux.png and b/semcore/time-picker/__tests__/time-picker.browser-test.tsx-snapshots/-visual-Verify-hours-and-minutes-listboxes-with-and-without-step-4-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx b/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx index c285331476..13f0a142fc 100644 --- a/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx +++ b/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx @@ -21,7 +21,10 @@ test.describe(`${TAG.VISUAL} `, () => { '@time-picker', '@checkbox', '@date-picker', - '@button'], + '@button', + '@base-components', + '@flex-box', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/form/docs/examples/datepicker-and-timepicker.tsx', 'en'); @@ -55,7 +58,10 @@ test.describe(`${TAG.FUNCTIONAL} `, () => { '@checkbox', '@date-picker', - '@button'], + '@button', + '@base-components', + '@flex-box', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/patterns/ux-patterns/form/docs/examples/datepicker-and-timepicker.tsx', 'en'); diff --git a/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-1-chromium-linux.png b/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-1-chromium-linux.png index e1c1693001..b908c4897e 100644 Binary files a/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-1-chromium-linux.png and b/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-1-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-1-firefox-linux.png b/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-1-firefox-linux.png index b22498f138..e6a18c4971 100644 Binary files a/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-1-firefox-linux.png and b/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-1-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-1-webkit-linux.png b/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-1-webkit-linux.png index 3c67be2042..7259c10988 100644 Binary files a/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-1-webkit-linux.png and b/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-1-webkit-linux.png differ diff --git a/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-2-chromium-linux.png b/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-2-chromium-linux.png index 8de3188574..7e429b4415 100644 Binary files a/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-2-chromium-linux.png and b/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-2-chromium-linux.png differ diff --git a/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-2-firefox-linux.png b/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-2-firefox-linux.png index a6f0622c32..57d2bf0a29 100644 Binary files a/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-2-firefox-linux.png and b/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-2-firefox-linux.png differ diff --git a/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-2-webkit-linux.png b/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-2-webkit-linux.png index 0f19206005..6487be9cf0 100644 Binary files a/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-2-webkit-linux.png and b/semcore/time-picker/__tests__/ux-patterns-with-date-picker/time-date-picker.browser-test.tsx-snapshots/-visual-Verify-pattern-with-Time-Picker-and-Date-picker-2-webkit-linux.png differ diff --git a/semcore/time-picker/src/component/PickerFormat/picker-format.shadow.css b/semcore/time-picker/src/component/PickerFormat/picker-format.shadow.css index 1b4ffb1a7c..36473780b0 100644 --- a/semcore/time-picker/src/component/PickerFormat/picker-format.shadow.css +++ b/semcore/time-picker/src/component/PickerFormat/picker-format.shadow.css @@ -9,53 +9,69 @@ SPickerFormat { line-height: normal; text-decoration: none; align-items: center; - border: 1px solid var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); - border-radius: 0 var(--intergalactic-control-rounded, 6px) - var(--intergalactic-control-rounded, 6px) 0; + justify-content: center; + border: none; + border-radius: 0 calc(var(--intergalactic-control-rounded, 6px) - 1px) + calc(var(--intergalactic-control-rounded, 6px) - 1px) 0; /* For smooth input and button border alignment */ box-shadow: none; - cursor: pointer; box-sizing: border-box; overflow: visible; user-select: none; touch-action: manipulation; -webkit-tap-highlight-color: transparent; color: var(--intergalactic-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); - background-color: var(--intergalactic-bg-secondary-neutral, oklch(0.98 0.001 180)); + background-color: var(--intergalactic-control-tertiary-neutral, transparent); + + &::before { + content: ''; + position: absolute; + left: 0; + top: 50%; + transform: translateY(-50%); + width: 1px; + background-color: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); + transition: height calc(var(--intergalactic-duration-extra-fast, 100) * 1ms) ease-out; /* TODO: Sync with animationin FilterTrigger */ + } &:hover { + cursor: pointer; color: var(--intergalactic-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); - background-color: var(--intergalactic-bg-secondary-neutral-hover, oklch(0.96 0.001 180)); + background-color: var(--intergalactic-control-tertiary-neutral-hover, oklch(0.177 0.033 175.6 / 0.042)); } &:active, &[active] { color: var(--intergalactic-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); - background-color: var(--intergalactic-bg-secondary-neutral-active, oklch(0.94 0.002 180)); + background-color: var(--intergalactic-control-tertiary-neutral-active, oklch(0.176 0.033 175.6 / 0.056)); } } SPickerFormat[size='m'] { - height: var(--intergalactic-form-control-m, 28px); + width: 46px; + height: calc(var(--intergalactic-form-control-m, 32px) - 2px); font-size: var(--intergalactic-fs-200, 14px); - /* disable-tokens-validator */ - margin: 0 -1px 0 0; - & SPickerFormatText { - margin: 0 var(--intergalactic-spacing-2x, 8px); + + &::before { + height: 18px; } } SPickerFormat[size='l'] { - height: var(--intergalactic-form-control-l, 40px); + width: 49px; + height: calc(var(--intergalactic-form-control-l, 44px) - 2px); font-size: var(--intergalactic-fs-300, 16px); - margin: 0 -1px 0 0; - & SPickerFormatText { - margin: 0 var(--intergalactic-spacing-3x, 12px); + + &::before { + height: 28px; } } +SPickerFormat:hover::before, +SPickerFormat:active::before, +SPickerFormat[active]::before { + height: 100%; +} + SPickerFormat[disabled] { opacity: var(--intergalactic-disabled-opacity, 0.4); - cursor: default; - pointer-events: none; - border-color: transparent transparent transparent var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); -} \ No newline at end of file +} diff --git a/semcore/time-picker/src/component/PickerInput/picker-input.shadow.css b/semcore/time-picker/src/component/PickerInput/picker-input.shadow.css index 6d2ff7be75..2b8ce4b076 100644 --- a/semcore/time-picker/src/component/PickerInput/picker-input.shadow.css +++ b/semcore/time-picker/src/component/PickerInput/picker-input.shadow.css @@ -1,11 +1,11 @@ SPickerInput[size='m'] { width: 19px; - margin: 0 var(--intergalactic-spacing-2x, 8px); + margin: 0 var(--intergalactic-spacing-content-padding-medium, 12px); padding: 0; } SPickerInput[size='l'] { width: 21px; - margin: 0 var(--intergalactic-spacing-2x, 8px); + margin: 0 var(--intergalactic-spacing-content-padding-medium, 12px); padding: 0; } \ No newline at end of file diff --git a/semcore/time-picker/src/component/TimePicker/time-picker.shadow.css b/semcore/time-picker/src/component/TimePicker/time-picker.shadow.css index e252c8ab60..ccf1238bb7 100644 --- a/semcore/time-picker/src/component/TimePicker/time-picker.shadow.css +++ b/semcore/time-picker/src/component/TimePicker/time-picker.shadow.css @@ -14,7 +14,7 @@ STimePicker { } &:focus { outline: none; - background-color: var(--intergalactic-bg-highlight-focus, oklch(0.524 0.266 263.1 / 0.116)); + background-color: var(--intergalactic-bg-highlight-focus, oklch(0.525 0.265 263 / 0.077)); } } } @@ -22,6 +22,7 @@ STimePicker { STimePicker[disabled] { color: var(--intergalactic-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); cursor: default; + pointer-events: none; } STimePickerSeparator { @@ -30,5 +31,4 @@ STimePickerSeparator { STimePickerSeparator[disabled] { opacity: var(--intergalactic-disabled-opacity, 0.4); - pointer-events: none; -} \ No newline at end of file +} diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Base-example-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Base-example-1-chromium-linux.png index fa132103b2..43505efdd0 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Base-example-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Base-example-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Base-example-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Base-example-1-firefox-linux.png index cee5adc0cc..604d5583d4 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Base-example-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Base-example-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Base-example-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Base-example-1-webkit-linux.png index c8d3e74ad2..bab3bba02a 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Base-example-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Base-example-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-1-chromium-linux.png index 641e65a427..7eab532412 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-1-firefox-linux.png index 4179bbea6a..cb0c5f978e 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-1-webkit-linux.png index c45549cc82..b4bf28c283 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-2-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-2-chromium-linux.png index b37e8b6fa6..05c18d505f 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-2-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-2-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-2-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-2-firefox-linux.png index 0b07060747..16244d6cf0 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-2-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-2-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-2-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-2-webkit-linux.png index ac67f56a25..4c14223d44 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-2-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-2-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-3-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-3-chromium-linux.png index 7661ccc5fb..d61747a0ec 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-3-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-3-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-3-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-3-firefox-linux.png index 2b85b77e59..7cca63ecca 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-3-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-3-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-3-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-3-webkit-linux.png index 3ccb7639c2..340e82e35e 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-3-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-Informer-3-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-default-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-default-1-chromium-linux.png index f9fb931627..a543216850 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-default-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-default-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-default-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-default-1-firefox-linux.png index 1f10e49a88..d1643bbbb1 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-default-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-default-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-default-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-default-1-webkit-linux.png index 0e6b00d947..02eedfc7bc 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-default-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-default-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-chromium-linux.png index 0778aa833b..16f1c17950 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-firefox-linux.png index c6bb3c5bbb..e2e851f3ba 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-webkit-linux.png index b96f1422a2..22f7a15cff 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-warning-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-warning-1-chromium-linux.png index 0c170b2db1..8c396edc0b 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-warning-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-warning-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-warning-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-warning-1-firefox-linux.png index 53e519128d..2d5f59bbc7 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-warning-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-warning-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-warning-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-warning-1-webkit-linux.png index 79e52126da..b90fc543c8 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-warning-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-warning-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-default-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-default-1-chromium-linux.png index 8b1f286ae2..87a32b1a5b 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-default-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-default-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-default-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-default-1-firefox-linux.png index 314bffc458..b486d0d057 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-default-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-default-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-default-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-default-1-webkit-linux.png index 407c835f29..d3c5f36964 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-default-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-default-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-chromium-linux.png index cdf186d36c..d1707acb11 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-firefox-linux.png index 20e42120ea..fc1a5dd46e 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-webkit-linux.png index d6c60b9126..324f15833c 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Base-example-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Base-example-1-chromium-linux.png index 933849d830..9d33c01768 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Base-example-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Base-example-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Base-example-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Base-example-1-firefox-linux.png index 369ea761e5..e8df6e9a27 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Base-example-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Base-example-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Base-example-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Base-example-1-webkit-linux.png index 27c50aeae0..1cade5fa36 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Base-example-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Base-example-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Nested-trigger-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Nested-trigger-1-chromium-linux.png index 732e0593ac..5651558e85 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Nested-trigger-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Nested-trigger-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Nested-trigger-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Nested-trigger-1-firefox-linux.png index 885c52c07b..ca7cb758fa 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Nested-trigger-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Nested-trigger-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Nested-trigger-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Nested-trigger-1-webkit-linux.png index b071ba0a36..7463aff21e 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Nested-trigger-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Nested-trigger-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Singleton-tooltip-shown-by-keyboard-interactions-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Singleton-tooltip-shown-by-keyboard-interactions-1-chromium-linux.png index 566ad3e328..2e6df1d0ee 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Singleton-tooltip-shown-by-keyboard-interactions-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Singleton-tooltip-shown-by-keyboard-interactions-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Singleton-tooltip-shown-by-keyboard-interactions-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Singleton-tooltip-shown-by-keyboard-interactions-1-firefox-linux.png index 6e49266737..305d3e1ffa 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Singleton-tooltip-shown-by-keyboard-interactions-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Singleton-tooltip-shown-by-keyboard-interactions-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Singleton-tooltip-shown-by-keyboard-interactions-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Singleton-tooltip-shown-by-keyboard-interactions-1-webkit-linux.png index 2d65bde3e7..917113cb4d 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Singleton-tooltip-shown-by-keyboard-interactions-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-Singleton-tooltip-shown-by-keyboard-interactions-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-1-chromium-linux.png index d97e340545..adc9ca7f0e 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-1-firefox-linux.png index c43780a664..5fa7479193 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-1-webkit-linux.png index ad0772a33c..e1e5cc3af2 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-2-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-2-chromium-linux.png index c5fc81286a..0adce2d5a8 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-2-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-2-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-2-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-2-firefox-linux.png index ed47ab2801..2e42f9cdcc 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-2-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-2-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-2-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-2-webkit-linux.png index 5588f55688..c1effcf3ea 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-2-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-ignore-portal-stacking-2-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-bottom-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-bottom-1-chromium-linux.png index 464c713061..6aeb99c388 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-bottom-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-bottom-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-bottom-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-bottom-1-firefox-linux.png index 6472e98837..31887e3970 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-bottom-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-bottom-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-bottom-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-bottom-1-webkit-linux.png index b43e0ade5d..d7ec3f8214 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-bottom-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-bottom-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-right-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-right-1-chromium-linux.png index 7b11378561..ce16a112bf 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-right-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-right-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-right-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-right-1-firefox-linux.png index beda0802c4..c10994c919 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-right-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-right-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-right-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-right-1-webkit-linux.png index 0ac3ecd1e9..3e7a3d77be 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-right-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-placement-right-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-default-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-default-1-chromium-linux.png index 464c713061..6aeb99c388 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-default-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-default-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-default-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-default-1-firefox-linux.png index 6472e98837..31887e3970 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-default-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-default-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-default-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-default-1-webkit-linux.png index b43e0ade5d..d7ec3f8214 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-default-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-default-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-chromium-linux.png index 79433bc584..38c3aff469 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-firefox-linux.png index 635cc462d8..18331d9676 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-webkit-linux.png index 59e890fbf1..9da0f9119a 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-warning-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-warning-1-chromium-linux.png index 94de09d783..f731830387 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-warning-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-warning-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-warning-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-warning-1-firefox-linux.png index 17c495ead7..ee74f70496 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-warning-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-warning-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-warning-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-warning-1-webkit-linux.png index 46638695fd..36a33b5cbe 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-warning-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-warning-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-1-chromium-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-1-chromium-linux.png index dfd088257c..a89254a2f4 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-1-chromium-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-1-firefox-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-1-firefox-linux.png index 4d11e5538c..75239b2044 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-1-firefox-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-1-webkit-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-1-webkit-linux.png index 198182a973..432ef58c92 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-1-webkit-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-2-chromium-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-2-chromium-linux.png index 933d56ba4f..1823a3e67d 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-2-chromium-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-2-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-2-firefox-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-2-firefox-linux.png index 5a58e5a151..0f30d68adf 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-2-firefox-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-2-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-2-webkit-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-2-webkit-linux.png index e07cf67728..6063402460 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-2-webkit-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-2-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-3-chromium-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-3-chromium-linux.png index a9c738233c..f0d184931d 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-3-chromium-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-3-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-3-firefox-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-3-firefox-linux.png index fa35e71e6e..671e52bbd4 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-3-firefox-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-3-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-3-webkit-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-3-webkit-linux.png index b55c8dea88..0faf4c7e79 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-3-webkit-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Default-summary-3-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-1-chromium-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-1-chromium-linux.png index 709d40fab2..3d87c66db0 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-1-chromium-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-1-firefox-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-1-firefox-linux.png index 21ba72e280..85b4c5ac40 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-1-firefox-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-1-webkit-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-1-webkit-linux.png index 58d94d4bd9..da8ff409ac 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-1-webkit-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-2-chromium-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-2-chromium-linux.png index 5adf486a20..dc7b9bd1b0 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-2-chromium-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-2-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-2-firefox-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-2-firefox-linux.png index ac1fe13350..44bdcbcf91 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-2-firefox-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-2-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-2-webkit-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-2-webkit-linux.png index a6e3b0f708..37f682a752 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-2-webkit-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-2-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-1-chromium-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-1-chromium-linux.png index 1c10fb8d4e..a13d241c7b 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-1-chromium-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-1-firefox-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-1-firefox-linux.png index 073d98d0ee..38f7c85fd6 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-1-firefox-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-1-webkit-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-1-webkit-linux.png index 55330eb50a..96b490b0bc 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-1-webkit-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-2-chromium-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-2-chromium-linux.png index 972856655a..554b5e4032 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-2-chromium-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-2-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-2-webkit-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-2-webkit-linux.png index 261ff065ac..8cd550340c 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-2-webkit-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-minitrends-2-webkit-linux.png differ diff --git a/semcore/tooltip/src/style/tooltip.shadow.css b/semcore/tooltip/src/style/tooltip.shadow.css index 83e233902a..ae1b7b9452 100644 --- a/semcore/tooltip/src/style/tooltip.shadow.css +++ b/semcore/tooltip/src/style/tooltip.shadow.css @@ -1,9 +1,9 @@ STooltip { position: relative; - padding: var(--intergalactic-spacing-3x, 12px); + padding: var(--intergalactic-spacing-content-padding-medium, 12px); border-radius: var(--intergalactic-popper-rounded, 6px); box-sizing: border-box; - color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); + color: var(--intergalactic-tooltip-text, oklch(0.1 0.03 137 / 0.899)); font-size: var(--intergalactic-fs-200, 14px); line-height: var(--intergalactic-lh-200, 142%); word-wrap: break-word; @@ -15,18 +15,18 @@ STooltip { /* stylelint-disable-next-line no-duplicate-selectors */ STooltip { - background-color: var(--intergalactic-tooltip-default, oklch(1 0 0)); + background-color: var(--intergalactic-tooltip-bg-default, oklch(1 0 0)); border: 1px solid var(--intergalactic-border-secondary, oklch(0.176 0.033 175.7 / 0.07)); } STooltip[theme='invert'] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - background-color: var(--intergalactic-tooltip-invert, oklch(0.23 0.01 140)); - border: 1px solid var(--intergalactic-border-tooltip-invert, oklch(0.995 0.008 145.9 / 0.369)); + color: var(--intergalactic-tooltip-text-invert, oklch(0.999 0.001 180 / 0.949)); + background-color: var(--intergalactic-tooltip-bg-invert, oklch(0.23 0.01 140)); + border: 1px solid var(--intergalactic-tooltip-border-invert, oklch(0.35 0.006 140)); } STooltip[theme='warning'] { - background-color: var(--intergalactic-tooltip-warning, oklch(0.958 0.029 5.7)); + background-color: var(--intergalactic-tooltip-bg-warning, oklch(0.958 0.029 5.7)); border: 1px solid var(--intergalactic-border-critical-active, oklch(0.7 0.21 23)); } @@ -47,15 +47,15 @@ SArrow { /* stylelint-disable-next-line no-duplicate-selectors */ &:before { - border-color: var(--intergalactic-tooltip-default, oklch(1 0 0)); + border-color: var(--intergalactic-tooltip-bg-default, oklch(1 0 0)); } } SArrow[theme='invert'] { - border-color: var(--intergalactic-border-tooltip-invert, oklch(0.995 0.008 145.9 / 0.369)); + border-color: var(--intergalactic-tooltip-border-invert, oklch(0.35 0.006 140)); &::before { - border-color: var(--intergalactic-tooltip-invert, oklch(0.23 0.01 140)); + border-color: var(--intergalactic-tooltip-bg-invert, oklch(0.23 0.01 140)); } } @@ -63,7 +63,7 @@ SArrow[theme='warning'] { border-color: var(--intergalactic-border-critical-active, oklch(0.7 0.21 23)); &::before { - border-color: var(--intergalactic-tooltip-warning, oklch(0.958 0.029 5.7)); + border-color: var(--intergalactic-tooltip-bg-warning, oklch(0.958 0.029 5.7)); } } diff --git a/semcore/typography/__tests__/typography.browser-test.tsx b/semcore/typography/__tests__/typography.browser-test.tsx index b6e591d481..b50a0d24dd 100644 --- a/semcore/typography/__tests__/typography.browser-test.tsx +++ b/semcore/typography/__tests__/typography.browser-test.tsx @@ -154,6 +154,7 @@ test.describe(`${TAG.VISUAL}`, () => { // main coverage { bold: true, italic: false, size: 200, use: 'primary' }, { bold: false, italic: true, size: 300 }, + { size: 350 }, { semibold: true, lowercase: true, size: 400 }, { semibold: false, medium: true, size: 500 }, { underline: true, lineThrough: false, size: 600 }, diff --git a/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Native-typography-tags-with-formatTags-true-1-chromium-linux.png b/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Native-typography-tags-with-formatTags-true-1-chromium-linux.png index d07f2cd9e4..c2d2b76a26 100644 Binary files a/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Native-typography-tags-with-formatTags-true-1-chromium-linux.png and b/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Native-typography-tags-with-formatTags-true-1-chromium-linux.png differ diff --git a/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Native-typography-tags-with-formatTags-true-1-firefox-linux.png b/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Native-typography-tags-with-formatTags-true-1-firefox-linux.png index f02b069d99..a441edc12f 100644 Binary files a/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Native-typography-tags-with-formatTags-true-1-firefox-linux.png and b/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Native-typography-tags-with-formatTags-true-1-firefox-linux.png differ diff --git a/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Native-typography-tags-with-formatTags-true-1-webkit-linux.png b/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Native-typography-tags-with-formatTags-true-1-webkit-linux.png index e159bfc619..5c2f328b6c 100644 Binary files a/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Native-typography-tags-with-formatTags-true-1-webkit-linux.png and b/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Native-typography-tags-with-formatTags-true-1-webkit-linux.png differ diff --git a/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Text-with-size-350-1-chromium-linux.png b/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Text-with-size-350-1-chromium-linux.png new file mode 100644 index 0000000000..cf09d4981c Binary files /dev/null and b/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Text-with-size-350-1-chromium-linux.png differ diff --git a/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Text-with-size-350-1-firefox-linux.png b/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Text-with-size-350-1-firefox-linux.png new file mode 100644 index 0000000000..533cfefa9e Binary files /dev/null and b/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Text-with-size-350-1-firefox-linux.png differ diff --git a/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Text-with-size-350-1-webkit-linux.png b/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Text-with-size-350-1-webkit-linux.png new file mode 100644 index 0000000000..2f7fb2d460 Binary files /dev/null and b/semcore/typography/__tests__/typography.browser-test.tsx-snapshots/-visual-Verify-Text-with-size-350-1-webkit-linux.png differ diff --git a/semcore/typography/src/components/Text/Text.type.ts b/semcore/typography/src/components/Text/Text.type.ts index 9a2cb75f66..d0d47cbef6 100644 --- a/semcore/typography/src/components/Text/Text.type.ts +++ b/semcore/typography/src/components/Text/Text.type.ts @@ -10,7 +10,7 @@ import type { Property } from 'csstype'; declare namespace NSText { type BaseProps = { /** Font size and line-heights */ - size?: 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800; + size?: 100 | 200 | 300 | 350 | 400 | 500 | 600 | 700 | 800; /** * The text will not be wrapped on a new line and will be cut off with ellipsis * @deprecated use ellipsis prop instead diff --git a/semcore/typography/src/style/text.shadow.css b/semcore/typography/src/style/text.shadow.css index 83b321bfcf..a21fc7782f 100644 --- a/semcore/typography/src/style/text.shadow.css +++ b/semcore/typography/src/style/text.shadow.css @@ -22,7 +22,7 @@ SText { background: none; outline: none; text-decoration: none; - color: var(--intergalactic-text-link, oklch(0.53 0.21 263)); + color: var(--intergalactic-text-link, oklch(0.1 0.03 137 / 0.899)); /* TODO: --intergalactic-text-link-primary */ border-bottom-width: 1px; border-bottom-style: solid; border-color: transparent; @@ -31,8 +31,8 @@ SText { &:hover { outline: none; text-decoration: none; - color: var(--intergalactic-text-link-hover-active, oklch(0.51 0.202 263)); - border-color: var(--intergalactic-text-link-hover-active, oklch(0.51 0.202 263)); + color: var(--intergalactic-text-link-hover-active, oklch(0.1 0.03 137 / 0.899)); /* TODO: --intergalactic-text-link-primary-hover-active */ + border-color: var(--intergalactic-text-link-hover-active, oklch(0.1 0.03 137 / 0.899)); /* TODO: --intergalactic-text-link-primary-hover-active */ } &:focus { @@ -58,7 +58,7 @@ SText { display: inline-block; position: absolute; left: 0; - color: var(--intergalactic-icon-secondary-neutral, oklch(0.104 0.023 162.3 / 0.385)); + color: var(--intergalactic-icon-secondary-neutral, oklch(0.118 0.023 170.1 / 0.262)); font-family: Georgia, Times, 'Times New Roman', serif; } @@ -376,6 +376,11 @@ SText[size='300'] { } } +SText[size='350'] { + font-size: var(--intergalactic-fs-350, 18px); + line-height: var(--intergalactic-lh-350, 150%); +} + SText[size='400'] { font-size: var(--intergalactic-fs-400, 20px); line-height: var(--intergalactic-lh-400, 120%); diff --git a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetEmpty-with-actions-1-chromium-linux.png b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetEmpty-with-actions-1-chromium-linux.png index 5a1681129b..f699214fbe 100644 Binary files a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetEmpty-with-actions-1-chromium-linux.png and b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetEmpty-with-actions-1-chromium-linux.png differ diff --git a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetEmpty-with-actions-1-firefox-linux.png b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetEmpty-with-actions-1-firefox-linux.png index 904ad03743..474f3a309d 100644 Binary files a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetEmpty-with-actions-1-firefox-linux.png and b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetEmpty-with-actions-1-firefox-linux.png differ diff --git a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetEmpty-with-actions-1-webkit-linux.png b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetEmpty-with-actions-1-webkit-linux.png index 10517c42ea..829d7c73e6 100644 Binary files a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetEmpty-with-actions-1-webkit-linux.png and b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetEmpty-with-actions-1-webkit-linux.png differ diff --git a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetError-with-i18n-1-chromium-linux.png b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetError-with-i18n-1-chromium-linux.png index 6122ccb8a8..475988d8ba 100644 Binary files a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetError-with-i18n-1-chromium-linux.png and b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetError-with-i18n-1-chromium-linux.png differ diff --git a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetError-with-i18n-1-firefox-linux.png b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetError-with-i18n-1-firefox-linux.png index bfbaf603bb..706ef9bdb4 100644 Binary files a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetError-with-i18n-1-firefox-linux.png and b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetError-with-i18n-1-firefox-linux.png differ diff --git a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetError-with-i18n-1-webkit-linux.png b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetError-with-i18n-1-webkit-linux.png index 90820c3150..acdbf71389 100644 Binary files a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetError-with-i18n-1-webkit-linux.png and b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetError-with-i18n-1-webkit-linux.png differ diff --git a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetNoData-with-i18n-1-chromium-linux.png b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetNoData-with-i18n-1-chromium-linux.png index 5aaa791a5e..ed2cb29728 100644 Binary files a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetNoData-with-i18n-1-chromium-linux.png and b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetNoData-with-i18n-1-chromium-linux.png differ diff --git a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetNoData-with-i18n-1-firefox-linux.png b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetNoData-with-i18n-1-firefox-linux.png index bbc8d76797..452e29a6fe 100644 Binary files a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetNoData-with-i18n-1-firefox-linux.png and b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetNoData-with-i18n-1-firefox-linux.png differ diff --git a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetNoData-with-i18n-1-webkit-linux.png b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetNoData-with-i18n-1-webkit-linux.png index 9bdaefb6a6..050c52149a 100644 Binary files a/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetNoData-with-i18n-1-webkit-linux.png and b/semcore/widget-empty/__tests__/widget-empty.browser-test.tsx-snapshots/-visual-Verify-WidgetNoData-with-i18n-1-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/__snapshots__/index.test.tsx.snap b/semcore/wizard/__tests__/__snapshots__/index.test.tsx.snap index 5dbbe63fad..172a8544ab 100644 --- a/semcore/wizard/__tests__/__snapshots__/index.test.tsx.snap +++ b/semcore/wizard/__tests__/__snapshots__/index.test.tsx.snap @@ -33,7 +33,7 @@ exports[`Wizard > Verify data-ui-name 1`] = ` }, { "children": [], - "uiName": null, + "uiName": "Flex", }, ], "uiName": "Wizard.Stepper", diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx b/semcore/wizard/__tests__/wizard.browser-test.tsx index c3d228c7ea..366c9ee224 100644 --- a/semcore/wizard/__tests__/wizard.browser-test.tsx +++ b/semcore/wizard/__tests__/wizard.browser-test.tsx @@ -54,7 +54,9 @@ test.describe(`${TAG.VISUAL}`, () => { '@wizard', '@button', '@input', - '@base-components'], + '@base-components', + '@flex-box', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/wizard/docs/examples/custom_step.tsx', 'en'); @@ -76,7 +78,9 @@ test.describe(`${TAG.VISUAL}`, () => { '@wizard', '@button', '@typography', - '@base-components'], + '@base-components', + '@flex-box', + '@radio'], }, async ({ page }) => { await loadPage(page, 'stories/components/wizard/tests/examples/steps_and_buttons_states.tsx', 'en'); @@ -148,7 +152,9 @@ test.describe(`${TAG.VISUAL}`, () => { '@wizard', '@button', '@typography', - '@base-components'], + '@base-components', + '@flex-box', + '@radio'], }, async ({ page }) => { await loadPage(page, 'stories/components/wizard/tests/examples/steps_and_buttons_states.tsx', 'en'); @@ -232,7 +238,10 @@ test.describe(`${TAG.VISUAL}`, () => { TAG.PRIORITY_HIGH, '@wizard', '@typography', - '@base-components'], + '@base-components', + '@flex-box', + '@button', + '@radio'], }, async ({ page }) => { const firstStepTitle = 'PersonalInfovfdnvmdfnbmvfdnbnnmdlymmvdvd'.repeat(3); @@ -264,7 +273,9 @@ test.describe(`${TAG.VISUAL}`, () => { '@button', '@input', '@radio', - '@base-components'], + '@base-components', + '@flex-box', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/wizard/tests/examples/sidebar-as-component.tsx', 'en'); @@ -307,7 +318,9 @@ test.describe(`${TAG.VISUAL}`, () => { '@button', '@input', '@radio', - '@base-components'], + '@base-components', + '@flex-box', + '@typography'], }, async ({ page, browserName }) => { await loadPage(page, 'stories/components/wizard/docs/examples/custom_step.tsx', 'en'); @@ -336,7 +349,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { TAG.MOUSE, '@wizard', '@button', - '@base-components'], + '@base-components', + '@flex-box', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/wizard/docs/examples/basic_example.tsx', 'en'); @@ -452,7 +467,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { TAG.KEYBOARD, '@wizard', '@button', - '@base-components'], + '@base-components', + '@flex-box', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/wizard/docs/examples/basic_example.tsx', 'en'); @@ -601,7 +618,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@wizard', '@button', '@input', - '@base-components'], + '@base-components', + '@flex-box', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/wizard/docs/examples/custom_step.tsx', 'en'); @@ -664,7 +683,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@wizard', '@button', '@input', - '@base-components'], + '@base-components', + '@flex-box', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/wizard/docs/examples/custom_step.tsx', 'en'); @@ -722,7 +743,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@wizard', '@button', '@radio', - '@base-components'], + '@base-components', + '@flex-box', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/wizard/tests/examples/steps_and_buttons_states.tsx', 'en'); @@ -759,7 +782,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@wizard', '@button', '@radio', - '@base-components'], + '@base-components', + '@flex-box', + '@typography'], }, async ({ page }) => { await loadPage(page, 'stories/components/wizard/tests/examples/steps_and_buttons_states.tsx', 'en'); @@ -791,7 +816,8 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { '@button', '@typography', '@radio', - '@base-components'], + '@base-components', + '@flex-box'], }, async ({ page }) => { await loadPage(page, 'stories/components/wizard/tests/examples/focus-next-prev.tsx', 'en'); diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-1-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-1-chromium-linux.png index 7cd05b72d1..563f5410e8 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-1-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-1-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-1-firefox-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-1-firefox-linux.png index 020705e414..0d3c6b975d 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-1-firefox-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-1-firefox-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-1-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-1-webkit-linux.png index 9e2d373be4..8f73e12969 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-1-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-1-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-2-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-2-chromium-linux.png index 03db8fb99b..0a79688ef6 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-2-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-2-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-2-firefox-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-2-firefox-linux.png index 020705e414..0d3c6b975d 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-2-firefox-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-2-firefox-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-2-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-2-webkit-linux.png index 2b575ee819..1339974571 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-2-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-2-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-3-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-3-chromium-linux.png index dca3eeabb2..7387051734 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-3-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-3-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-3-firefox-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-3-firefox-linux.png index 020705e414..0d3c6b975d 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-3-firefox-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-3-firefox-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-3-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-3-webkit-linux.png index 542b00d553..904633fa5c 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-3-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-3-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-4-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-4-chromium-linux.png index 94e950de71..bca1088859 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-4-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-4-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-4-firefox-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-4-firefox-linux.png index 020705e414..0d3c6b975d 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-4-firefox-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-4-firefox-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-4-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-4-webkit-linux.png index 66de11d032..f3b689305f 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-4-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-4-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-5-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-5-chromium-linux.png index 225e4f66b7..494a6556f6 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-5-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-5-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-5-firefox-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-5-firefox-linux.png index 7a5b240acd..2e6bdb1194 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-5-firefox-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-5-firefox-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-5-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-5-webkit-linux.png index 44a1774639..25fe973a0c 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-5-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-5-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-6-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-6-chromium-linux.png index 67e3f5370b..cdb5e0fd2b 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-6-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-6-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-6-firefox-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-6-firefox-linux.png index 18d8e818d9..164778fe82 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-6-firefox-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-6-firefox-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-6-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-6-webkit-linux.png index bd821ad685..0a088931c0 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-6-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-6-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-7-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-7-chromium-linux.png index 370dbd20fe..36bd1d20a2 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-7-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-7-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-7-firefox-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-7-firefox-linux.png index bb9730ff1e..839dd93d78 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-7-firefox-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-7-firefox-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-7-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-7-webkit-linux.png index 606ced9258..06927df42b 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-7-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-7-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-8-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-8-chromium-linux.png index 5fb47ac091..52ab1f6346 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-8-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-8-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-8-firefox-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-8-firefox-linux.png index 3cb7de7faf..9a711224c9 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-8-firefox-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-8-firefox-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-8-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-8-webkit-linux.png index 7f062c130d..d06e59db2a 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-8-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Steps-on-hover-and-focus---small-state-8-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-1-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-1-chromium-linux.png index 29990b3aaf..fa06e88c4d 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-1-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-1-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-1-firefox-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-1-firefox-linux.png index 6327f6807f..431cecfa68 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-1-firefox-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-1-firefox-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-1-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-1-webkit-linux.png index 437dc8a2a2..77a1e23678 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-1-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-1-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-2-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-2-chromium-linux.png index fa751a00df..d7960f80f9 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-2-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-2-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-2-firefox-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-2-firefox-linux.png index 6327f6807f..431cecfa68 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-2-firefox-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-2-firefox-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-2-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-2-webkit-linux.png index a0fac3e926..ccd0bc4008 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-2-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-2-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-3-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-3-chromium-linux.png index c43d732722..0bc811f016 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-3-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-3-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-3-firefox-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-3-firefox-linux.png index 6327f6807f..431cecfa68 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-3-firefox-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-3-firefox-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-3-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-3-webkit-linux.png index f72b353e7a..6b510a7be4 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-3-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-3-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-4-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-4-chromium-linux.png index a494abace5..400b560e74 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-4-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-4-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-4-firefox-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-4-firefox-linux.png index 82c1bad89c..133b6eebe0 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-4-firefox-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-4-firefox-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-4-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-4-webkit-linux.png index f2a0d83281..e678378b5c 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-4-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-4-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-5-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-5-chromium-linux.png index 32d37a0912..dcb0703f0c 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-5-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-5-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-5-firefox-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-5-firefox-linux.png index feab963c9f..836b36ee57 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-5-firefox-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-5-firefox-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-5-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-5-webkit-linux.png index 7a1f70c609..1170c56e91 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-5-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-5-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-6-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-6-chromium-linux.png index 05afc6626c..289d3e68be 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-6-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-6-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-6-firefox-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-6-firefox-linux.png index b730e5c702..42abab0e2c 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-6-firefox-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-6-firefox-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-6-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-6-webkit-linux.png index d5ec9ef354..f27bf4d5b6 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-6-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-6-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-7-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-7-chromium-linux.png index f90334cfee..eb018345df 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-7-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-7-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-7-firefox-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-7-firefox-linux.png index 326f234029..233bac5b53 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-7-firefox-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-7-firefox-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-7-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-7-webkit-linux.png index f76fbe795a..123d55d16e 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-7-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Steps-and-buttons-states-Verify-Steps-on-hover-and-focus---expanded-state-7-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-Custom-step-example-1-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-Custom-step-example-1-chromium-linux.png index 51d7125308..af3d579391 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-Custom-step-example-1-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-Custom-step-example-1-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-Custom-step-example-1-firefox-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-Custom-step-example-1-firefox-linux.png index f7b99d4a1f..ceb990e641 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-Custom-step-example-1-firefox-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-Custom-step-example-1-firefox-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-Custom-step-example-1-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-Custom-step-example-1-webkit-linux.png index dff480b92b..588737dc21 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-Custom-step-example-1-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-Custom-step-example-1-webkit-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-z-index-in-content-1-chromium-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-z-index-in-content-1-chromium-linux.png index 39f5372fb0..130bcd0507 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-z-index-in-content-1-chromium-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-z-index-in-content-1-chromium-linux.png differ diff --git a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-z-index-in-content-1-webkit-linux.png b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-z-index-in-content-1-webkit-linux.png index 67108a3eb4..ed4cf18dbb 100644 Binary files a/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-z-index-in-content-1-webkit-linux.png and b/semcore/wizard/__tests__/wizard.browser-test.tsx-snapshots/-visual-Verify-z-index-in-content-1-webkit-linux.png differ diff --git a/semcore/wizard/src/Wizard.tsx b/semcore/wizard/src/Wizard.tsx index 57216b25eb..c49cacdd53 100644 --- a/semcore/wizard/src/Wizard.tsx +++ b/semcore/wizard/src/Wizard.tsx @@ -1,4 +1,4 @@ -import { ScreenReaderOnly, Box } from '@semcore/base-components'; +import { ScreenReaderOnly, Box, Flex } from '@semcore/base-components'; import Button from '@semcore/button'; import { createComponent, Component, Root, sstyled } from '@semcore/core'; import type { Intergalactic } from '@semcore/core'; @@ -247,8 +247,8 @@ function Stepper( } = props; const SStepper = Root; const SStepNumber = 'span'; - const SStepDescription = 'span'; - const SCompleted = CheckM; + const SStepDescription = Flex; + const SCompleteIcon = CheckM; const handlerClick = React.useCallback( (e: React.SyntheticEvent) => { @@ -277,7 +277,7 @@ function Stepper( return sstyled(styles)( {completed && {getI18nText('completedStep')}} - + @@ -318,6 +318,7 @@ function StepBack( { return ( - - + + - { borderRadius='surface-rounded' > - - - - - - + + + + + + + + + + + + + + ); }; diff --git a/stories/components/badge/tests/badge.stories.tsx b/stories/components/badge/tests/badge.stories.tsx index fc29e21c6f..4fed4f6cca 100644 --- a/stories/components/badge/tests/badge.stories.tsx +++ b/stories/components/badge/tests/badge.stories.tsx @@ -1,7 +1,6 @@ import Badge from '@semcore/ui/badge'; import type { Meta, StoryObj } from '@storybook/react-vite'; -import BadgeBgExample, { defaultExampleBadgeProps } from './examples/badge-bg-colors'; import BadgeI18nExample from './examples/badge_i18n_example'; const meta: Meta = { @@ -12,36 +11,6 @@ const meta: Meta = { export default meta; type Story = StoryObj; -export const BadgeBg: StoryObj = { - render: BadgeBgExample, - argTypes: { - type: { control: 'select', options: ['admin', 'alpha', 'beta', 'new', 'soon', 'unavailable'] }, - inverted: { control: 'boolean' }, - bg: { - control: { type: 'select' }, - options: ['mist', 'cyan', 'red', 'orange', 'green', 'white', 'violet-400'], - }, - color: { - control: { type: 'select' }, - options: ['white', 'gray20', 'green', 'text-primary', 'text-primary-invert'], - }, - pt: { - control: { type: 'number' }, - }, - w: { - control: { type: 'number' }, - }, - h: { - control: { type: 'number' }, - }, - m: { - control: { type: 'number' }, - }, - - }, - args: defaultExampleBadgeProps, -}; - export const BadgeI18nInteractive: Story = { render: BadgeI18nExample, }; diff --git a/stories/components/badge/tests/examples/badge-bg-colors.tsx b/stories/components/badge/tests/examples/badge-bg-colors.tsx deleted file mode 100644 index f478d87e35..0000000000 --- a/stories/components/badge/tests/examples/badge-bg-colors.tsx +++ /dev/null @@ -1,44 +0,0 @@ -import Badge from '@semcore/ui/badge'; -import type { NSBadge } from '@semcore/ui/badge'; -import type { NSBox } from '@semcore/ui/base-components'; -import { Flex } from '@semcore/ui/base-components'; -import React from 'react'; - -type ExampleBadgeProps = NSBadge.Props & NSBox.Props; - -const Demo = (props: ExampleBadgeProps) => { - return ( - - - Badge Test - - - ); -}; - -export const defaultExampleBadgeProps: ExampleBadgeProps = { - type: undefined, - bg: undefined, - color: undefined, - w: undefined, - h: undefined, - pt: undefined, - m: undefined, - inverted: undefined, -}; - -Demo.defaultProps = defaultExampleBadgeProps; -export default Demo; diff --git a/stories/components/badge/tests/examples/badge_i18n_example.tsx b/stories/components/badge/tests/examples/badge_i18n_example.tsx index 6ffa436886..d3d112af9d 100644 --- a/stories/components/badge/tests/examples/badge_i18n_example.tsx +++ b/stories/components/badge/tests/examples/badge_i18n_example.tsx @@ -46,15 +46,22 @@ const Demo = () => { - - - - - - - + + + + + + + + + + + + + + diff --git a/stories/components/base-components/ellipsis/tests/ellipsis.stories.tsx b/stories/components/base-components/ellipsis/tests/ellipsis.stories.tsx index 0c4785aa07..81bcfe1fb4 100644 --- a/stories/components/base-components/ellipsis/tests/ellipsis.stories.tsx +++ b/stories/components/base-components/ellipsis/tests/ellipsis.stories.tsx @@ -49,11 +49,11 @@ const commonArgTypes = { }, size: { control: { type: 'select' }, - options: [undefined, 100, 200, 300, 400, 500, 600, 700, 800], + options: [undefined, 100, 200, 300, 350, 400, 500, 600, 700, 800], }, } as const; -export const TableLink: StoryObj = { +export const TableLink = { render: TableLinkExample, }; diff --git a/stories/components/base-components/ellipsis/tests/examples/in_table_with_link.tsx b/stories/components/base-components/ellipsis/tests/examples/in_table_with_link.tsx index 33128b57aa..5c17a26e30 100644 --- a/stories/components/base-components/ellipsis/tests/examples/in_table_with_link.tsx +++ b/stories/components/base-components/ellipsis/tests/examples/in_table_with_link.tsx @@ -1,6 +1,7 @@ -import LinkExternalM from '@semcore/icon/LinkExternal/m'; +import ButtonLink from '@semcore/ui/button'; import type { CellRenderProps } from '@semcore/ui/data-table'; -import { DataTable } from '@semcore/ui/data-table'; +import { LinkAction, DataTable } from '@semcore/ui/data-table'; +import IconM from '@semcore/ui/icon/Cards/m'; import Link from '@semcore/ui/link'; import Pagination from '@semcore/ui/pagination'; import React from 'react'; @@ -27,6 +28,11 @@ const data = [{ kd: '-', cpc: '$0', url: 'n/a', +}, { + keyword: 'ebay buy no url', + kd: '-', + cpc: '$0', + url: undefined, }, { keyword: 'ebay buy', kd: '75.89', @@ -40,9 +46,13 @@ const data = [{ }]; const pageLimit = 10; -const recalculateContainerWidth = (width: number) => width - 20; +const recalculateContainerWidth = (width: number) => width - 35; + +type TableLinkProps = { + size?: 100 | 200 | 300 | 350 | 400 | 500 | 600 | 700 | 800; +}; -export default function Demo() { +export default function Demo(props: TableLinkProps) { const [currentPage, setCurrentPage] = React.useState(0); const urlRef = React.useRef(null); @@ -78,27 +88,29 @@ export default function Demo() { const renderCell = React.useMemo(() => (props: CellRenderProps) => { if (props.columnName === 'url' && Boolean(columnElement)) { - const pageUrl = props.value?.toString?.() ?? ''; + const url = props.row.url as string | null | undefined; + + if (!url) { + return null; + } + + if (!url.startsWith('http')) { + return url; + } + return ( - - - {removeProtocol(pageUrl)} - - - - - + + + + {removeProtocol(url)} + + + + ); } return props.defaultRender(); @@ -113,7 +125,7 @@ export default function Demo() { return { ...item, keyword: `${index} ${item.keyword}`, - url: `${item.url}#${index}`, + url: item.url == null ? item.url : `${item.url}#${index}`, }; })); } diff --git a/stories/components/base-trigger/tests/examples/link-trigger/base.tsx b/stories/components/base-trigger/tests/examples/link-trigger/base.tsx index 94226d0e07..584d6f7a67 100644 --- a/stories/components/base-trigger/tests/examples/link-trigger/base.tsx +++ b/stories/components/base-trigger/tests/examples/link-trigger/base.tsx @@ -36,6 +36,8 @@ const Demo = (props: BasicLinktriggerProps) => { loading, hintProps, active, + empty, + placeholder, size = 300, w, ellipsis, @@ -98,6 +100,8 @@ const Demo = (props: BasicLinktriggerProps) => { disabled={disabled} active={active} loading={loading} + empty={empty} + placeholder={placeholder} color={props.color} display={displayValue} mr={4} @@ -120,6 +124,8 @@ const Demo = (props: BasicLinktriggerProps) => { loading={loading} disabled={disabled} active={active} + empty={empty} + placeholder={placeholder} color={props.color} > {renderAddon(showAddonLeft, addonLeftType)} diff --git a/stories/components/base-trigger/tests/examples/link-trigger/link-trigger-different-sizes.tsx b/stories/components/base-trigger/tests/examples/link-trigger/link-trigger-different-sizes.tsx index c4bd956d8e..c56f14bef8 100644 --- a/stories/components/base-trigger/tests/examples/link-trigger/link-trigger-different-sizes.tsx +++ b/stories/components/base-trigger/tests/examples/link-trigger/link-trigger-different-sizes.tsx @@ -16,6 +16,7 @@ const Demo = (props: LinkTriggerSizesProps) => { 600, 500, 400, + 350, 300, 200, 100, diff --git a/stories/components/base-trigger/tests/link-trigger.stories.tsx b/stories/components/base-trigger/tests/link-trigger.stories.tsx index 04c76a090b..79747fe80d 100644 --- a/stories/components/base-trigger/tests/link-trigger.stories.tsx +++ b/stories/components/base-trigger/tests/link-trigger.stories.tsx @@ -7,14 +7,13 @@ import SelectExample, { linkTriggerSelectExampleProps } from './examples/link-tr const sharedArgTypes = { size: { control: { type: 'select' }, - options: [100, 200, 300, 400, 500, 600, 700, 800, undefined], + options: [100, 200, 300, 350, 400, 500, 600, 700, 800, undefined], }, active: { control: { type: 'boolean' } }, empty: { control: { type: 'boolean' } }, placeholder: { control: { type: 'text' } }, disabled: { control: { type: 'boolean' } }, loading: { control: { type: 'boolean' } }, - chevron: { control: { type: 'boolean' } }, color: { control: { type: 'select' }, options: ['violet', 'blue', 'text-success', undefined], diff --git a/stories/components/button/advanced/examples/all-buttons.tsx b/stories/components/button/advanced/examples/all-buttons.tsx index 687839d779..6fa3a71627 100644 --- a/stories/components/button/advanced/examples/all-buttons.tsx +++ b/stories/components/button/advanced/examples/all-buttons.tsx @@ -33,10 +33,10 @@ function ButtonLinkRow({ use = 'primary', size = 300 }: ButtonLinkRowProps) { return ( - Default + Default link - Disabled + Disabled link ); diff --git a/stories/components/button/tests/button-link.stories.tsx b/stories/components/button/tests/button-link.stories.tsx index 97ee1bc751..ee6a7ab36f 100644 --- a/stories/components/button/tests/button-link.stories.tsx +++ b/stories/components/button/tests/button-link.stories.tsx @@ -44,7 +44,7 @@ export const ButtonLinkBase: StoryObj = { }, size: { control: { type: 'select' }, - options: [100, 200, 300, 400, 500, 600, 700, 800], + options: [100, 200, 300, 350, 400, 500, 600, 700, 800], }, showAddonLeft: { control: { type: 'boolean' }, diff --git a/stories/components/button/tests/examples/button-icon-only.tsx b/stories/components/button/tests/examples/button-icon-only.tsx index b7fd477e66..fb8e785eb3 100644 --- a/stories/components/button/tests/examples/button-icon-only.tsx +++ b/stories/components/button/tests/examples/button-icon-only.tsx @@ -13,7 +13,7 @@ const Demo = (props: ExampleProps) => { return ( - + - - + + diff --git a/stories/components/dropdown-menu/docs/examples/dropdown-menu.tsx b/stories/components/dropdown-menu/docs/examples/dropdown-menu.tsx index 4fb272c579..c5b7289a88 100644 --- a/stories/components/dropdown-menu/docs/examples/dropdown-menu.tsx +++ b/stories/components/dropdown-menu/docs/examples/dropdown-menu.tsx @@ -2,7 +2,6 @@ import FileExportM from '@semcore/icon/FileExport/m'; import Button from '@semcore/ui/button'; import DropdownMenu from '@semcore/ui/dropdown-menu'; import Link from '@semcore/ui/link'; -import Notice from '@semcore/ui/notice'; import SpinContainer from '@semcore/ui/spin-container'; import { Text } from '@semcore/ui/typography'; import React from 'react'; @@ -37,30 +36,24 @@ const Demo = () => { CSV CSV Semicolon - - + Export failed If the problem persists, please contact us at {' '} - + feedback@semrush.com - - + + diff --git a/stories/components/dropdown-menu/docs/examples/item_actions.tsx b/stories/components/dropdown-menu/docs/examples/item_actions.tsx index 100ae946be..0e741c018a 100644 --- a/stories/components/dropdown-menu/docs/examples/item_actions.tsx +++ b/stories/components/dropdown-menu/docs/examples/item_actions.tsx @@ -20,7 +20,7 @@ const Demo = () => { Menu item 3 - + @@ -32,7 +32,7 @@ const Demo = () => { placement='right-start' interaction={DropdownMenu.nestedMenuInteraction} timeout={[0, 300]} - offset={[-11, 12]} + offset={[-11, 17]} > Menu item 4 diff --git a/stories/components/dropdown-menu/docs/examples/multiselect_items.tsx b/stories/components/dropdown-menu/docs/examples/multiselect_items.tsx index 964e948404..e05a652e9c 100644 --- a/stories/components/dropdown-menu/docs/examples/multiselect_items.tsx +++ b/stories/components/dropdown-menu/docs/examples/multiselect_items.tsx @@ -10,7 +10,7 @@ const Demo = () => { return ( Explore menu items - + {menuItems.map((_, index) => ( { + const nestedOffset: DropdownMenuProps['offset'] = [-11, 17]; + const nestedTimeout: DropdownMenuProps['timeout'] = [0, 300]; + return ( Explore nested menus @@ -15,8 +18,8 @@ const Demo = () => { Item 4 @@ -27,8 +30,8 @@ const Demo = () => { Item 4.1 @@ -48,8 +51,8 @@ const Demo = () => { Item 4.2 @@ -63,8 +66,8 @@ const Demo = () => { Item 4.2.1 diff --git a/stories/components/dropdown-menu/docs/examples/nested_with_focusable.tsx b/stories/components/dropdown-menu/docs/examples/nested_with_focusable.tsx index e7e9399eba..99304aa703 100644 --- a/stories/components/dropdown-menu/docs/examples/nested_with_focusable.tsx +++ b/stories/components/dropdown-menu/docs/examples/nested_with_focusable.tsx @@ -22,7 +22,7 @@ const Demo = () => { placement='right-start' interaction={DropdownMenu.nestedMenuInteraction} timeout={[0, 300]} - offset={[-11, 12]} + offset={[-11, 17]} > {item} @@ -35,7 +35,7 @@ const Demo = () => { Item 4.1.3 - + diff --git a/stories/components/dropdown-menu/tests/Dropdown-menu.stories.tsx b/stories/components/dropdown-menu/tests/Dropdown-menu.stories.tsx index cea3f76a63..9eab1c8b7a 100644 --- a/stories/components/dropdown-menu/tests/Dropdown-menu.stories.tsx +++ b/stories/components/dropdown-menu/tests/Dropdown-menu.stories.tsx @@ -41,7 +41,8 @@ const commonArgTypes = { locale: { control: { type: 'select' }, options: ['ko', 'pl'], - }, disabledAll: { + }, + disabledAll: { control: { type: 'boolean' }, }, showSearch: { @@ -59,6 +60,47 @@ const commonArgTypes = { }, } as const; +const noticeArgTypes = { + showNotice: { + control: { type: 'boolean' }, + description: 'Render DropdownMenu.Notice below the list', + table: { category: 'Notice' }, + }, + noticeTheme: { + control: { type: 'select' }, + options: ['info', 'muted', 'warning', 'danger', 'success'], + table: { category: 'Notice props' }, + }, + noticeHidden: { + control: { type: 'boolean' }, + table: { category: 'Notice props' }, + }, + showNoticeLabel: { + control: { type: 'boolean' }, + table: { category: 'Notice content' }, + }, + noticeTitle: { + control: { type: 'text' }, + table: { category: 'Notice content' }, + }, + noticeText: { + control: { type: 'text' }, + table: { category: 'Notice content' }, + }, + showNoticeActions: { + control: { type: 'boolean' }, + table: { category: 'Notice content' }, + }, + noticeActionText: { + control: { type: 'text' }, + table: { category: 'Notice content' }, + }, + showNoticeClose: { + control: { type: 'boolean' }, + table: { category: 'Notice content' }, + }, +} as const; + export const WithFocusableTrigger: Story = { render: WithFocusableTriggerExample, }; @@ -96,10 +138,10 @@ export const MultiselectProps: StoryObj = { render: DropdownBasePropsExample, argTypes: { ...commonArgTypes, + ...noticeArgTypes, disabledSave: { control: { type: 'boolean' }, diff --git a/stories/components/dropdown-menu/tests/examples/dropdown-base-props.tsx b/stories/components/dropdown-menu/tests/examples/dropdown-base-props.tsx index 01a9a4879e..dca57356f7 100644 --- a/stories/components/dropdown-menu/tests/examples/dropdown-base-props.tsx +++ b/stories/components/dropdown-menu/tests/examples/dropdown-base-props.tsx @@ -1,9 +1,11 @@ +import InfoM from '@semcore/icon/Info/m'; import { Flex } from '@semcore/ui/base-components'; import Button from '@semcore/ui/button'; import Divider from '@semcore/ui/divider'; import type { StatusItemState } from '@semcore/ui/dropdown'; import DropdownMenu from '@semcore/ui/dropdown-menu'; import type { DropdownMenuProps, DropdownMenuListProps } from '@semcore/ui/dropdown-menu'; +import type { NSNotice } from '@semcore/ui/notice'; import Select from '@semcore/ui/select'; import React from 'react'; @@ -22,6 +24,17 @@ type DropDownPropsExample = DropdownMenuProps & DropdownMenuListProps & { showSearch?: boolean; state?: StatusItemState; customChildren?: string; + + // Notice functionality + showNotice?: boolean; + noticeTheme?: NSNotice.Theme; + noticeHidden?: boolean; + showNoticeLabel?: boolean; + noticeTitle?: string; + noticeText?: string; + showNoticeActions?: boolean; + noticeActionText?: string; + showNoticeClose?: boolean; }; const Demo = (props: DropDownPropsExample) => { const { @@ -41,6 +54,15 @@ const Demo = (props: DropDownPropsExample) => { showSearch, state = 'default', customChildren, + showNotice, + noticeTheme, + noticeHidden, + showNoticeLabel, + noticeTitle, + noticeText, + showNoticeActions, + noticeActionText, + showNoticeClose, } = props; const [search, setSearch] = React.useState(''); @@ -56,6 +78,35 @@ const Demo = (props: DropDownPropsExample) => { item.label.toLowerCase().includes(search.toLowerCase()), ); + const renderNotice = () => { + if (!showNotice) return null; + + return ( + + ); + }; + if (showSearch) { return ( { > {customChildren || undefined} + {renderNotice()} ); @@ -98,24 +150,34 @@ const Demo = (props: DropDownPropsExample) => { return ( - Trigger - - Save - Rename - Download - Delete - + + Trigger + + + + Save + Rename + Download + Delete + + {renderNotice()} + - Trigger - - Save - - Rename - Download - Delete - + + Trigger + + + + Save + + Rename + Download + Delete + + {renderNotice()} + @@ -139,6 +201,15 @@ export const defaultDropDownPropsExample: DropDownPropsExample = { showSearch: false, state: 'default', customChildren: '', + showNotice: false, + noticeTheme: 'info', + noticeHidden: false, + showNoticeLabel: false, + noticeTitle: 'Notice title', + noticeText: 'Additional information related to the available actions.', + showNoticeActions: true, + noticeActionText: 'Action', + showNoticeClose: false, }; Demo.defaultProps = defaultDropDownPropsExample; diff --git a/stories/components/dropdown-menu/tests/examples/multiselect-props.tsx b/stories/components/dropdown-menu/tests/examples/multiselect-props.tsx index b3cf8c7a55..5765036cc6 100644 --- a/stories/components/dropdown-menu/tests/examples/multiselect-props.tsx +++ b/stories/components/dropdown-menu/tests/examples/multiselect-props.tsx @@ -1,8 +1,10 @@ +import InfoM from '@semcore/icon/Info/m'; import { Flex } from '@semcore/ui/base-components'; import Button from '@semcore/ui/button'; import type { StatusItemState } from '@semcore/ui/dropdown'; import DropdownMenu from '@semcore/ui/dropdown-menu'; import type { DropdownMenuProps, DropdownMenuListProps } from '@semcore/ui/dropdown-menu'; +import type { NSNotice } from '@semcore/ui/notice'; import Select from '@semcore/ui/select'; import React from 'react'; const menuItems: null[] = new Array(10).fill(null); @@ -15,6 +17,17 @@ type DropDownPropsExample = DropdownMenuProps & DropdownMenuListProps & { showSearch?: boolean; state?: StatusItemState; customChildren?: string; + + // Notice functionality + showNotice?: boolean; + noticeTheme?: NSNotice.Theme; + noticeHidden?: boolean; + showNoticeLabel?: boolean; + noticeTitle?: string; + noticeText?: string; + showNoticeActions?: boolean; + noticeActionText?: string; + showNoticeClose?: boolean; }; const Demo = (props: DropDownPropsExample) => { const [selected, setSelected] = React.useState([0, 1]); @@ -25,6 +38,37 @@ const Demo = (props: DropDownPropsExample) => { .map((_, index) => ({ index, label: `Menu item ${index + 1}` })) .filter(({ label }) => label.toLowerCase().includes(search.toLowerCase())); + const renderNotice = () => { + if (!props.showNotice) return null; + + return ( + + ); + }; + if (props.showSearch) { return ( { {props.customChildren || undefined} + {renderNotice()} ); @@ -82,30 +127,35 @@ const Demo = (props: DropDownPropsExample) => { - Multiselect - - - {menuItems.map((_, index) => ( - { - if (!selected.includes(index)) { - setSelected([...selected, index]); - } else { - setSelected(selected.filter((i) => i !== index)); - } - }} - > - Menu item - {' '} - {index + 1} - - ))} - - + + Multiselect + + + + + {menuItems.map((_, index) => ( + { + if (!selected.includes(index)) { + setSelected([...selected, index]); + } else { + setSelected(selected.filter((i) => i !== index)); + } + }} + > + Menu item + {' '} + {index + 1} + + ))} + + + {renderNotice()} + ); @@ -121,6 +171,15 @@ export const defaultDropDownMultiselectPropsExample: DropDownPropsExample = { showSearch: false, state: 'default', customChildren: '', + showNotice: false, + noticeTheme: 'info', + noticeHidden: false, + showNoticeLabel: false, + noticeTitle: 'Notice title', + noticeText: 'Additional information related to the available actions.', + showNoticeActions: true, + noticeActionText: 'Action', + showNoticeClose: false, }; Demo.defaultProps = defaultDropDownMultiselectPropsExample; diff --git a/stories/components/dropdown/tests/dropdown.stories.tsx b/stories/components/dropdown/tests/dropdown.stories.tsx index 70e3ce217b..4aa84538a9 100644 --- a/stories/components/dropdown/tests/dropdown.stories.tsx +++ b/stories/components/dropdown/tests/dropdown.stories.tsx @@ -77,6 +77,43 @@ export const ExampleWithProps: StoryObj = { control: { type: 'select' }, options: [true, false, undefined], }, + showNotice: { + control: { type: 'boolean' }, + table: { category: 'Notice' }, + }, + noticeTheme: { + control: { type: 'select' }, + options: ['info', 'muted', 'warning', 'danger', 'success'], + table: { category: 'Notice props' }, + }, + noticeHidden: { + control: { type: 'boolean' }, + table: { category: 'Notice props' }, + }, + showNoticeLabel: { + control: { type: 'boolean' }, + table: { category: 'Notice content' }, + }, + noticeTitle: { + control: { type: 'text' }, + table: { category: 'Notice content' }, + }, + noticeText: { + control: { type: 'text' }, + table: { category: 'Notice content' }, + }, + showNoticeActions: { + control: { type: 'boolean' }, + table: { category: 'Notice content' }, + }, + noticeActionText: { + control: { type: 'text' }, + table: { category: 'Notice content' }, + }, + showNoticeClose: { + control: { type: 'boolean' }, + table: { category: 'Notice content' }, + }, }, args: defaultDropdownExampleProps, }; diff --git a/stories/components/dropdown/tests/examples/example-with-props.tsx b/stories/components/dropdown/tests/examples/example-with-props.tsx index f5376915bb..822a57ec2e 100644 --- a/stories/components/dropdown/tests/examples/example-with-props.tsx +++ b/stories/components/dropdown/tests/examples/example-with-props.tsx @@ -1,9 +1,11 @@ import FileExportM from '@semcore/icon/FileExport/m'; +import InfoM from '@semcore/icon/Info/m'; import type { NSPopper } from '@semcore/ui/base-components'; -import { Flex } from '@semcore/ui/base-components'; +import { Box, Flex } from '@semcore/ui/base-components'; import Button from '@semcore/ui/button'; import Dropdown from '@semcore/ui/dropdown'; import type { DropdownProps } from '@semcore/ui/dropdown'; +import type { NSNotice } from '@semcore/ui/notice'; import Tooltip from '@semcore/ui/tooltip'; import { Text } from '@semcore/ui/typography'; import React from 'react'; @@ -13,8 +15,18 @@ type DropdownExampleProps = & NSPopper.Trigger.Props & NSPopper.Props & DropdownProps - & { autofocus?: boolean }; - + & { + autofocus?: boolean; + showNotice?: boolean; + noticeTheme?: NSNotice.Theme; + noticeHidden?: boolean; + showNoticeLabel?: boolean; + noticeTitle?: string; + noticeText?: string; + showNoticeActions?: boolean; + noticeActionText?: string; + showNoticeClose?: boolean; + }; const Demo = (props: DropdownExampleProps) => ( ( Dropdown Props - - Hello there! I'm Dropdown's content - - + + + Hello there! I'm Dropdown's content + + + + {props.showNotice && ( + + )} @@ -76,6 +113,15 @@ export const defaultDropdownExampleProps: DropdownExampleProps = { explicitTriggerSet: undefined, cursorAnchoring: undefined, popperMargin: undefined, + showNotice: false, + noticeTheme: 'info', + noticeHidden: false, + showNoticeLabel: false, + noticeTitle: 'Notice title', + noticeText: 'Additional information related to the dropdown content.', + showNoticeActions: true, + noticeActionText: 'Action', + showNoticeClose: false, }; Demo.defaultProps = defaultDropdownExampleProps; diff --git a/stories/components/ellipsis/docs/examples/basic_usage.tsx b/stories/components/ellipsis/docs/examples/basic_usage.tsx index db54846eeb..0f7b707a11 100644 --- a/stories/components/ellipsis/docs/examples/basic_usage.tsx +++ b/stories/components/ellipsis/docs/examples/basic_usage.tsx @@ -14,7 +14,6 @@ const Demo = (props: EllipsisProps) => { return ( diff --git a/stories/components/feature-popover/docs/examples/Basic.tsx b/stories/components/feature-popover/docs/examples/Basic.tsx index 88056eca8e..226b510092 100644 --- a/stories/components/feature-popover/docs/examples/Basic.tsx +++ b/stories/components/feature-popover/docs/examples/Basic.tsx @@ -54,7 +54,7 @@ const Demo = (props: FeaturePopoverExampleProps) => { flex='0 0 auto' style={{ borderRadius: '50%', - background: 'orange', + background: 'var(--intergalactic-illustration-violet)', }} />
diff --git a/stories/components/feature-popover/tests/examples/base-usage-with-all-props.tsx b/stories/components/feature-popover/tests/examples/base-usage-with-all-props.tsx index 5eca6933a4..4f3f4b774e 100644 --- a/stories/components/feature-popover/tests/examples/base-usage-with-all-props.tsx +++ b/stories/components/feature-popover/tests/examples/base-usage-with-all-props.tsx @@ -54,7 +54,7 @@ const Demo: ((props: ExampleProps) => React.ReactElement) & { defaultProps: Exam flex='0 0 auto' style={{ borderRadius: '50%', - background: 'orange', + background: 'var(--intergalactic-illustration-violet)', }} />
diff --git a/stories/components/feature-popover/tests/examples/base-usage-with-medium-illustration.tsx b/stories/components/feature-popover/tests/examples/base-usage-with-medium-illustration.tsx index c097f9d501..1f55bcf4a0 100644 --- a/stories/components/feature-popover/tests/examples/base-usage-with-medium-illustration.tsx +++ b/stories/components/feature-popover/tests/examples/base-usage-with-medium-illustration.tsx @@ -46,7 +46,7 @@ const Demo: ((props: ExampleProps) => React.ReactElement) & { defaultProps: Exam flex='0 0 auto' style={{ borderRadius: '50%', - background: 'orange', + background: 'var(--intergalactic-illustration-violet)', }} />
diff --git a/stories/components/inline-input/docs/examples/basic_usage.tsx b/stories/components/inline-input/docs/examples/basic_usage.tsx index e73230113a..3293dee5bd 100644 --- a/stories/components/inline-input/docs/examples/basic_usage.tsx +++ b/stories/components/inline-input/docs/examples/basic_usage.tsx @@ -11,7 +11,6 @@ const BasicUsage = ({ }: NSInlineInput.Props & NSInlineInput.Value.Props): JSX.Element => { return ( - User name: + Display name: diff --git a/stories/components/inline-input/docs/examples/number-only_input.tsx b/stories/components/inline-input/docs/examples/number-only_input.tsx index 22bebe3e24..a55d4b7d2a 100644 --- a/stories/components/inline-input/docs/examples/number-only_input.tsx +++ b/stories/components/inline-input/docs/examples/number-only_input.tsx @@ -4,7 +4,7 @@ import React from 'react'; const Example = () => { return (
- + Number: diff --git a/stories/components/inline-input/tests/examples/on-blur-behavior-test.tsx b/stories/components/inline-input/tests/examples/on-blur-behavior-test.tsx index 4ec785db61..4490817d6c 100644 --- a/stories/components/inline-input/tests/examples/on-blur-behavior-test.tsx +++ b/stories/components/inline-input/tests/examples/on-blur-behavior-test.tsx @@ -4,10 +4,9 @@ import React from 'react'; const Example = () => { return ( - + console.log('Cancel:', value)} onChange={(value: any) => console.log('Change:', value)} @@ -23,7 +22,6 @@ const Example = () => { console.log('Cancel')} onChange={(value: any) => console.log('Change:', value)} @@ -39,7 +37,6 @@ const Example = () => { console.log('Cancel')} onChange={(value: any) => console.log('Change:', value)} diff --git a/stories/components/inline-input/tests/examples/styles.tsx b/stories/components/inline-input/tests/examples/styles.tsx index cb1e128b95..ca51bb23ab 100644 --- a/stories/components/inline-input/tests/examples/styles.tsx +++ b/stories/components/inline-input/tests/examples/styles.tsx @@ -11,7 +11,7 @@ const Styles = (props: ExampleInputTagsProps) => { const { disabled, loading, state, autoFocus, defaultValue, placeholder, showControls, onBlurBehavior } = props; return ( - + diff --git a/stories/components/input-number/docs/examples/appearance_customization.tsx b/stories/components/input-number/docs/examples/appearance_customization.tsx index 657d2975b8..604b199613 100644 --- a/stories/components/input-number/docs/examples/appearance_customization.tsx +++ b/stories/components/input-number/docs/examples/appearance_customization.tsx @@ -20,7 +20,7 @@ const Demo = () => { Members count - + @@ -32,6 +32,7 @@ const Demo = () => { value={value} onChange={setValue} id='alternative-example' + style={{ borderLeft: '1px solid var(--intergalactic-border-primary)', marginLeft: '-1px' }} /> Do you want to save your changes? - + Your changes will be lost if you don't save them. - diff --git a/stories/components/modal/docs/examples/modal_window_inside_a_modal_window.tsx b/stories/components/modal/docs/examples/modal_window_inside_a_modal_window.tsx index 0974f1b06c..ca0d55ea58 100644 --- a/stories/components/modal/docs/examples/modal_window_inside_a_modal_window.tsx +++ b/stories/components/modal/docs/examples/modal_window_inside_a_modal_window.tsx @@ -30,7 +30,7 @@ const Demo = () => { Use this example for the cases when you need to open one more window inside the other modal window. - diff --git a/stories/components/notice-bubble/docs/examples/basic_notice.tsx b/stories/components/notice-bubble/docs/examples/basic_notice.tsx index 56c6291607..9dced4020e 100644 --- a/stories/components/notice-bubble/docs/examples/basic_notice.tsx +++ b/stories/components/notice-bubble/docs/examples/basic_notice.tsx @@ -15,7 +15,7 @@ const Demo = (props: BaseNoticeBubbleProps) => { <> Link was moved to {' '} - Cats from outer space group + Cats from outer space group ), initialAnimation: props.initialAnimation, diff --git a/stories/components/notice-bubble/docs/examples/completion_state.tsx b/stories/components/notice-bubble/docs/examples/completion_state.tsx index 1cf4cb2ef9..b9afbd029b 100644 --- a/stories/components/notice-bubble/docs/examples/completion_state.tsx +++ b/stories/components/notice-bubble/docs/examples/completion_state.tsx @@ -11,7 +11,7 @@ const Demo = (props: CompletionNoticeBubbleProps) => { const handleClick = () => { manager.add({ children: ( - + Undone diff --git a/stories/components/notice-bubble/docs/examples/dynamic_notice.tsx b/stories/components/notice-bubble/docs/examples/dynamic_notice.tsx index c23260b793..5b9f474899 100644 --- a/stories/components/notice-bubble/docs/examples/dynamic_notice.tsx +++ b/stories/components/notice-bubble/docs/examples/dynamic_notice.tsx @@ -20,7 +20,7 @@ const Demo = (props: DynamicNoticeBubbleProps) => { notice = await notice.update({ icon: undefined, children: ( - + Loading... diff --git a/stories/components/notice-bubble/docs/examples/notice_in_sm2.tsx b/stories/components/notice-bubble/docs/examples/notice_in_sm2.tsx index 89d4eddafe..b4c816e9cb 100644 --- a/stories/components/notice-bubble/docs/examples/notice_in_sm2.tsx +++ b/stories/components/notice-bubble/docs/examples/notice_in_sm2.tsx @@ -19,7 +19,7 @@ const Demo = (props: BaseNoticeBubbleProps) => { <> Link was moved to {' '} - Cats from outer space group + Cats from outer space group ), initialAnimation: props.initialAnimation, diff --git a/stories/components/notice-bubble/docs/examples/noticebubble_not_in_portal.tsx b/stories/components/notice-bubble/docs/examples/noticebubble_not_in_portal.tsx index e276298271..00e57d4ca0 100644 --- a/stories/components/notice-bubble/docs/examples/noticebubble_not_in_portal.tsx +++ b/stories/components/notice-bubble/docs/examples/noticebubble_not_in_portal.tsx @@ -15,7 +15,7 @@ const Demo = (props: NotInPortalNoticeBubbleProps) => { <> Link was moved to {' '} - Cats from outer space group + Cats from outer space group ), initialAnimation: props.initialAnimation, diff --git a/stories/components/notice-bubble/docs/examples/undo_action.tsx b/stories/components/notice-bubble/docs/examples/undo_action.tsx index ee31328185..334fff2cf3 100644 --- a/stories/components/notice-bubble/docs/examples/undo_action.tsx +++ b/stories/components/notice-bubble/docs/examples/undo_action.tsx @@ -15,7 +15,7 @@ const Demo = (props: UndoActionNoticeBubbleProps) => { <> Link was moved to {' '} - Cats from outer space group + Cats from outer space group ), action: , diff --git a/stories/components/pills/docs/examples/basic_example.tsx b/stories/components/pills/docs/examples/basic_example.tsx index 4e87719ffc..4a5ee2908b 100644 --- a/stories/components/pills/docs/examples/basic_example.tsx +++ b/stories/components/pills/docs/examples/basic_example.tsx @@ -15,7 +15,15 @@ const Demo = (props: PillExampleProps) => { Your opinion - + Like diff --git a/stories/components/pills/tests/Pills.stories.tsx b/stories/components/pills/tests/Pills.stories.tsx index 9717867c71..9f2e1f39b6 100644 --- a/stories/components/pills/tests/Pills.stories.tsx +++ b/stories/components/pills/tests/Pills.stories.tsx @@ -3,6 +3,7 @@ import type { Meta, StoryObj } from '@storybook/react-vite'; import BasicUsageExample, { defaultProps as BasicUsageProps } from './examples/basic_example'; import PillsAmountExample, { defaultProps as PillsAmountProps } from './examples/different-amount-of-pills'; +import DynamicPillsExample, { defaultProps as DynamicPillsProps } from './examples/dynamic-pills'; const meta: Meta = { title: 'Components/Pills/Tests', @@ -38,3 +39,26 @@ export const PillsAmount: StoryObj = { }, args: PillsAmountProps, }; + +export const DynamicPills: StoryObj = { + render: DynamicPillsExample, + argTypes: { + size: { + control: { type: 'select' }, + options: ['m', 'l'], + }, + behavior: { + control: { type: 'select' }, + options: ['manual', 'auto'], + }, + label: { + control: { type: 'text' }, + description: 'Applied through React — triggers a re-render, indicator is recalculated', + }, + domLabel: { + control: { type: 'text' }, + description: 'Applied straight to the DOM — no re-render, only ResizeObserver can notice', + }, + }, + args: DynamicPillsProps, +}; diff --git a/stories/components/pills/tests/examples/basic_example.tsx b/stories/components/pills/tests/examples/basic_example.tsx index 9dc334cf1a..2f7f624a84 100644 --- a/stories/components/pills/tests/examples/basic_example.tsx +++ b/stories/components/pills/tests/examples/basic_example.tsx @@ -31,15 +31,15 @@ const Demo = (props: PillExampleProps) => { - + + Badge - Badge - + - + Spin diff --git a/stories/components/pills/tests/examples/dynamic-pills.tsx b/stories/components/pills/tests/examples/dynamic-pills.tsx new file mode 100644 index 0000000000..ccfac922b4 --- /dev/null +++ b/stories/components/pills/tests/examples/dynamic-pills.tsx @@ -0,0 +1,76 @@ +import { Flex } from '@semcore/ui/base-components'; +import Button from '@semcore/ui/button'; +import Pills from '@semcore/ui/pills'; +import type { NSPills } from '@semcore/ui/pills'; +import { Text } from '@semcore/ui/typography'; +import React from 'react'; + +type PillExampleProps = Pick & { + label: string; + domLabel: string; +}; + +const Demo = (props: PillExampleProps) => { + const [count, setCount] = React.useState(2); + const [choice, setChoice] = React.useState(1); + + const textRefs = React.useRef>({}); + + const applyDomLabel = () => { + const node = textRefs.current[choice]; + + if (node) { + node.textContent = props.domLabel; + } + }; + + const resetDomLabels = () => { + for (const [value, node] of Object.entries(textRefs.current)) { + if (node) { + node.textContent = `${props.label} ${value}`; + } + } + }; + + return ( + + + + + + + + + + {Array.from({ length: count }, (_, index) => ( + + { + textRefs.current[index + 1] = node; + }} + > + {props.label} {index + 1} + + + ))} + + + + Pills: {count}, selected: {choice} + + + ); +}; + +export const defaultProps: PillExampleProps = { + size: 'm', + behavior: 'auto', + label: 'Pill', + domLabel: 'Pill with a much longer label', +}; + +Demo.defaultProps = defaultProps; + +export default Demo; diff --git a/stories/components/select/docs/Select.stories.tsx b/stories/components/select/docs/Select.stories.tsx index 76ba5b04f9..070cfbbea2 100644 --- a/stories/components/select/docs/Select.stories.tsx +++ b/stories/components/select/docs/Select.stories.tsx @@ -10,8 +10,8 @@ import AdvancedFilteringControlExample from './examples/advanced_filtering_contr import BasicUsageExample from './examples/basic_usage'; import ControlledAndUncontrolledModesExample from './examples/controlled_and_uncontrolled_modes'; import CustomSelectedLabelExample from './examples/custom_selected_label'; -import DropdownMenuCustomizationExample from './examples/dropdownmenu_customization'; import LoadingStateExample from './examples/loading_state'; +import MenuCustomizationExample from './examples/menu_customization'; import MultiselectExample from './examples/multiselect'; import OptionsExample from './examples/options'; import OptionsFilteringExample from './examples/options_filtering'; @@ -48,8 +48,8 @@ export const CustomSelectedLabel: Story = { render: CustomSelectedLabelExample, }; -export const DropdownMenuCustomization: Story = { - render: DropdownMenuCustomizationExample, +export const MenuCustomization: Story = { + render: MenuCustomizationExample, }; export const LoadingState: Story = { diff --git a/stories/components/select/docs/examples/dropdownmenu_customization.tsx b/stories/components/select/docs/examples/dropdownmenu_customization.tsx deleted file mode 100644 index 46780811bf..0000000000 --- a/stories/components/select/docs/examples/dropdownmenu_customization.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import { Flex } from '@semcore/ui/base-components'; -import Notice from '@semcore/ui/notice'; -import Select from '@semcore/ui/select'; -import { Text } from '@semcore/ui/typography'; -import React from 'react'; - -const options = Array(12) - .fill('') - .map((_, index) => `Option ${index}`); - -const noticeStyle = { - border: 'none', - borderRadius: `0 0 var(--intergalactic-rounded-medium, 6px) var(--intergalactic-rounded-medium, 6px)`, - padding: 'var(--intergalactic-spacing-3x, 12px) var(--intergalactic-spacing-2x, 8px)', -}; - -const Demo = () => ( - - - Select with notice - - - -); - -export default Demo; diff --git a/stories/components/select/docs/examples/menu_customization.tsx b/stories/components/select/docs/examples/menu_customization.tsx new file mode 100644 index 0000000000..f5c3b5e620 --- /dev/null +++ b/stories/components/select/docs/examples/menu_customization.tsx @@ -0,0 +1,33 @@ +import { Flex } from '@semcore/ui/base-components'; +import Select from '@semcore/ui/select'; +import { Text } from '@semcore/ui/typography'; +import React from 'react'; + +const options = Array(12) + .fill('') + .map((_, index) => `Option ${index}`); + +const Demo = () => ( + + + Select with notice + + + +); + +export default Demo; diff --git a/stories/components/select/docs/examples/options_filtering.tsx b/stories/components/select/docs/examples/options_filtering.tsx index 8535d4f571..80992b3229 100644 --- a/stories/components/select/docs/examples/options_filtering.tsx +++ b/stories/components/select/docs/examples/options_filtering.tsx @@ -26,7 +26,7 @@ const Demo = () => { onChange={setFilter} /> {options.length > 0 && ( - + {options.map(({ value, label }) => ( {label} diff --git a/stories/components/select/docs/examples/trigger_customization_deep.tsx b/stories/components/select/docs/examples/trigger_customization_deep.tsx index e818922a92..90ab78a9db 100644 --- a/stories/components/select/docs/examples/trigger_customization_deep.tsx +++ b/stories/components/select/docs/examples/trigger_customization_deep.tsx @@ -26,8 +26,12 @@ const Demo = () => { {flags.map((value) => ( - - {formatName(iso2Name[value])} + + + + + {formatName(iso2Name[value])} + ))} diff --git a/stories/components/select/tests/Select.stories.tsx b/stories/components/select/tests/Select.stories.tsx index 167ea265fe..4cd0a34d2c 100644 --- a/stories/components/select/tests/Select.stories.tsx +++ b/stories/components/select/tests/Select.stories.tsx @@ -73,11 +73,9 @@ export const BasicPropsAndTriggerAddons: StoryObj = { leftAddonText: { control: { type: 'text' }, }, - leftAddonBadgeText: { - control: { type: 'text' }, - }, - leftAddonBadgeBg: { - control: { type: 'text' }, + leftAddonBadgeType: { + control: { type: 'select' }, + options: ['admin', 'alpha', 'beta', 'new', 'soon', 'unavailable'], }, showRightAddon: { control: { type: 'boolean' }, @@ -89,17 +87,63 @@ export const BasicPropsAndTriggerAddons: StoryObj = { rightAddonText: { control: { type: 'text' }, }, - rightAddonBadgeText: { + rightAddonBadgeType: { + control: { type: 'select' }, + options: ['admin', 'alpha', 'beta', 'new', 'soon', 'unavailable'], + }, + triggerText: { + control: { type: 'text' }, + }, + showTriggerText: { + control: { type: 'boolean' }, + }, + + // option addon props + showOptionLeftAddon: { + control: { type: 'boolean' }, + }, + showOptionRightAddon: { + control: { type: 'boolean' }, + }, + + // Notice props + showNotice: { + control: { type: 'boolean' }, + description: 'Render Select.Notice below the list', + table: { category: 'Notice' }, + }, + noticeTheme: { + control: { type: 'select' }, + options: ['info', 'muted', 'warning', 'danger', 'success'], + table: { category: 'Notice props' }, + }, + noticeHidden: { + control: { type: 'boolean' }, + table: { category: 'Notice props' }, + }, + showNoticeLabel: { + control: { type: 'boolean' }, + table: { category: 'Notice content' }, + }, + noticeTitle: { control: { type: 'text' }, + table: { category: 'Notice content' }, }, - rightAddonBadgeBg: { + noticeText: { control: { type: 'text' }, + table: { category: 'Notice content' }, }, - triggerText: { + showNoticeActions: { + control: { type: 'boolean' }, + table: { category: 'Notice content' }, + }, + noticeActionText: { control: { type: 'text' }, + table: { category: 'Notice content' }, }, - showTriggerText: { + showNoticeClose: { control: { type: 'boolean' }, + table: { category: 'Notice content' }, }, }, args: BasicProps, diff --git a/stories/components/select/tests/examples/basic_props_and_trigger_addons.tsx b/stories/components/select/tests/examples/basic_props_and_trigger_addons.tsx index 37fed7c4c5..e55da6a384 100644 --- a/stories/components/select/tests/examples/basic_props_and_trigger_addons.tsx +++ b/stories/components/select/tests/examples/basic_props_and_trigger_addons.tsx @@ -1,6 +1,10 @@ +import InfoM from '@semcore/icon/Info/m'; import LinkExternalM from '@semcore/icon/LinkExternal/m'; import Badge from '@semcore/ui/badge'; +import type { NSBadge } from '@semcore/ui/badge'; import { Flex } from '@semcore/ui/base-components'; +import Button from '@semcore/ui/button'; +import type { NSNotice } from '@semcore/ui/notice'; import Select from '@semcore/ui/select'; import type { SelectProps } from '@semcore/ui/select'; import { Text } from '@semcore/ui/typography'; @@ -20,18 +24,31 @@ export type SelectBasicProps = Omit< showLeftAddon?: boolean; leftAddonContent?: 'icon' | 'badge' | 'text'; leftAddonText?: string; - leftAddonBadgeText?: string; - leftAddonBadgeBg?: string; + leftAddonBadgeType?: NSBadge.Type; showRightAddon?: boolean; rightAddonContent?: 'icon' | 'badge' | 'text'; rightAddonText?: string; - rightAddonBadgeText?: string; - rightAddonBadgeBg?: string; + rightAddonBadgeType?: NSBadge.Type; showTriggerText?: boolean; triggerText?: string; size?: 'm' | 'l'; + + // option addon props + showOptionLeftAddon?: boolean; + showOptionRightAddon?: boolean; + + // Notice props + showNotice?: boolean; + noticeTheme?: NSNotice.Theme; + noticeHidden?: boolean; + showNoticeLabel?: boolean; + noticeTitle?: string; + noticeText?: string; + showNoticeActions?: boolean; + noticeActionText?: string; + showNoticeClose?: boolean; }; const Demo = (props: SelectBasicProps) => { @@ -51,18 +68,31 @@ const Demo = (props: SelectBasicProps) => { showLeftAddon = false, leftAddonContent = 'icon', leftAddonText = 'Left', - leftAddonBadgeText = 'alpha', - leftAddonBadgeBg = 'red-400', + leftAddonBadgeType = 'alpha', showRightAddon = false, rightAddonContent = 'badge', rightAddonText = 'Right', - rightAddonBadgeText = 'beta', - rightAddonBadgeBg = 'blue-400', + rightAddonBadgeType = 'beta', triggerText = 'Trigger', showTriggerText = false, + // option addon + showOptionLeftAddon = false, + showOptionRightAddon = false, + + // Notice + showNotice = false, + noticeTheme = 'info', + noticeHidden = false, + showNoticeLabel = true, + noticeTitle = 'Notice title', + noticeText = 'Additional information related to the available options.', + showNoticeActions = true, + noticeActionText = 'Action', + showNoticeClose = false, + ...restProps } = props; @@ -74,7 +104,7 @@ const Demo = (props: SelectBasicProps) => { children: `Option ${index}`, })); - const hasCustomTrigger = showLeftAddon || showRightAddon || showTriggerText; + const hasCustomTriggerOrOption = showLeftAddon || showRightAddon || showTriggerText || showOptionLeftAddon || showOptionRightAddon || showNotice; const [value, setValue] = React.useState(multiselect ? [] : null); React.useEffect(() => { @@ -86,6 +116,37 @@ const Demo = (props: SelectBasicProps) => { .map((option) => option.label) .join(', '); + const renderOptions = () => options.map((option) => ( + + {showOptionLeftAddon && } + {option.children} + {showOptionRightAddon && } + + )); + + const renderNotice = () => ( + + ); + return ( {showLabel && ( @@ -93,7 +154,7 @@ const Demo = (props: SelectBasicProps) => { {labelText} )} - {hasCustomTrigger + {hasCustomTriggerOrOption ? ( ) : ( @@ -180,17 +242,26 @@ export const defaultProps: SelectBasicProps = { showLeftAddon: false, leftAddonContent: 'icon', leftAddonText: 'Left', - leftAddonBadgeText: 'alpha', - leftAddonBadgeBg: 'red-400', + leftAddonBadgeType: 'alpha', showRightAddon: false, rightAddonContent: 'badge', rightAddonText: 'Right', - rightAddonBadgeText: 'beta', - rightAddonBadgeBg: 'blue-400', + rightAddonBadgeType: 'beta', triggerText: 'Trigger', showTriggerText: false, + + // Notice + showNotice: false, + noticeTheme: 'info', + noticeHidden: false, + showNoticeLabel: false, + noticeTitle: 'Notice title', + noticeText: 'Additional information related to the available options.', + showNoticeActions: true, + noticeActionText: 'Action', + showNoticeClose: false, }; Demo.defaultProps = defaultProps; diff --git a/stories/components/select/tests/examples/subcomponents_trigger_popper_list_search.tsx b/stories/components/select/tests/examples/subcomponents_trigger_popper_list_search.tsx index 8ebcea34dd..6766e031c9 100644 --- a/stories/components/select/tests/examples/subcomponents_trigger_popper_list_search.tsx +++ b/stories/components/select/tests/examples/subcomponents_trigger_popper_list_search.tsx @@ -109,7 +109,7 @@ export const defaultProps: SelectComponentConfigProps = { triggerSize: 'm', triggerDisabled: undefined, triggerState: undefined, - triggerLoading: undefined, + triggerLoading: false, // List listSize: 'm', diff --git a/stories/components/skeleton/tests/examples/chart-skeletons.tsx b/stories/components/skeleton/tests/examples/chart-skeletons.tsx new file mode 100644 index 0000000000..1bb7cdefd5 --- /dev/null +++ b/stories/components/skeleton/tests/examples/chart-skeletons.tsx @@ -0,0 +1,147 @@ +import { Box, Flex } from '@semcore/ui/base-components'; +import Skeleton, { + AreaChartSkeleton, + BarChartSkeleton, + BubbleChartSkeleton, + CompactHorizontalBarChartSkeleton, + DonutChartSkeleton, + HistogramChartSkeleton, + LineChartSkeleton, + RadialTreeChartSkeleton, + ScatterPlotChartSkeleton, + VennChartSkeleton, +} from '@semcore/ui/skeleton'; +import type { NSSkeleton } from '@semcore/ui/skeleton'; +import { Text } from '@semcore/ui/typography'; +import React from 'react'; + +type ExampleProps = NSSkeleton.Props & { + /** Line / Area chart skeletons only */ + type?: 'linear' | 'monotone'; + /** Bar / Histogram chart skeletons only */ + layout?: 'horizontal' | 'vertical'; + /** Donut chart skeleton only */ + halfsize?: boolean; + /** Number of lines in the plain Skeleton control group */ + amount?: string | number; + /** Width of the last line in the plain Skeleton control group */ + textWidth?: string | number; + /** Demo-only knob: puts everything on the inverted background */ + invertedBackground?: boolean; + /** Demo-only knob: width of the parent box (to exercise observeParentSize) */ + parentWidth?: number; +}; + +/** Skeleton.Text places every next line at `20 * index`, this step is not configurable */ +const LINE_STEP = 20; + +const Demo = (props: ExampleProps) => { + const { + theme, + duration, + hidden, + locale, + observeParentSize, + type, + layout, + halfsize, + amount, + textWidth, + invertedBackground, + parentWidth, + w, + h, + m, + p, + } = props; + + const lines = Number(amount) || 1; + + const common = { + theme, + duration, + hidden, + locale, + observeParentSize, + ...(w !== undefined && { w }), + ...(h !== undefined && { h }), + ...(m !== undefined && { m }), + ...(p !== undefined && { p }), + }; + + const charts: Array<[string, () => React.ReactNode]> = [ + ['LineChartSkeleton', () => ], + ['AreaChartSkeleton', () => ], + ['BarChartSkeleton', () => ], + ['HistogramChartSkeleton', () => ], + ['CompactHorizontalBarChartSkeleton', () => ], + ['DonutChartSkeleton', () => ], + ['ScatterPlotChartSkeleton', () => ], + ['BubbleChartSkeleton', () => ], + ['VennChartSkeleton', () => ], + ['RadialTreeChartSkeleton', () => ], + ]; + + const labelColor = invertedBackground ? 'text-primary-invert' : 'text-secondary'; + + return ( + + + + Skeleton (control group - reacts to theme) + + + {/* Skeleton.Text hardcodes a 20px step between lines, so the height of a line + must stay below it and the next block has to start after 20 * amount. */} + + + + + + + + + {charts.map(([name, renderChart]) => ( + + + {name} + + {renderChart()} + + ))} + + + ); +}; + +export const defaultChartSkeletonProps: ExampleProps = { + theme: 'default', + duration: 2000, + hidden: false, + locale: 'en', + observeParentSize: false, + type: 'linear', + layout: 'horizontal', + halfsize: false, + amount: 1, + textWidth: '60%', + invertedBackground: false, + parentWidth: 300, +}; + +Demo.defaultProps = defaultChartSkeletonProps; + +export default Demo; diff --git a/stories/components/skeleton/tests/examples/observe-parent-size.tsx b/stories/components/skeleton/tests/examples/observe-parent-size.tsx deleted file mode 100644 index d7340b86e2..0000000000 --- a/stories/components/skeleton/tests/examples/observe-parent-size.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import Button from '@semcore/ui/button'; -import Skeleton from '@semcore/ui/skeleton'; -import React from 'react'; - -const Demo = () => { - const [wide, setWide] = React.useState(false); - - return ( - <> - - -
- - - - - - - -
- - ); -}; - -export default Demo; diff --git a/stories/components/skeleton/tests/examples/skeleton-themes.tsx b/stories/components/skeleton/tests/examples/skeleton-themes.tsx deleted file mode 100644 index 9183637f2c..0000000000 --- a/stories/components/skeleton/tests/examples/skeleton-themes.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import type { NSBox } from '@semcore/ui/base-components'; -import Skeleton from '@semcore/ui/skeleton'; -import type { NSSkeleton } from '@semcore/ui/skeleton'; -import React from 'react'; - -type ExampleProps = NSSkeleton.Props & NSSkeleton.Text.Props & NSBox.Props; -const Demo = (props: ExampleProps) => { - return ( - <> -
- - - - -
- - ); -}; - -export const defaultProps: ExampleProps = { - theme: 'dark', - duration: 0, - amount: undefined, - w: '60%', -}; - -Demo.defaultProps = defaultProps; - -export default Demo; diff --git a/stories/components/skeleton/tests/skeleton.stories.tsx b/stories/components/skeleton/tests/skeleton.stories.tsx index 0b4f4edc2f..64e0284f0e 100644 --- a/stories/components/skeleton/tests/skeleton.stories.tsx +++ b/stories/components/skeleton/tests/skeleton.stories.tsx @@ -1,8 +1,7 @@ import Skeleton from '@semcore/ui/skeleton'; import type { Meta, StoryObj } from '@storybook/react-vite'; -import ObserveParentSizeExample from './examples/observe-parent-size'; -import SkeletonThemesExample, { defaultProps } from './examples/skeleton-themes'; +import ChartSkeletonsExample, { defaultChartSkeletonProps } from './examples/chart-skeletons'; const meta: Meta = { title: 'Components/Skeleton/Tests', @@ -10,30 +9,68 @@ const meta: Meta = { }; export default meta; -type Story = StoryObj; -const commonArgTypes = { - placement: { - theme: { type: 'select' }, - options: ['dark', 'invert'], +const chartSkeletonArgTypes = { + theme: { + control: { type: 'select' }, + options: ['default', 'invert'], + description: 'Skeleton theme', }, - amount: { + duration: { control: { type: 'number' }, + description: 'Pulse animation duration, ms (0 freezes the animation for screenshots)', }, - duration: { + hidden: { + control: { type: 'boolean' }, + description: 'Renders nothing when true', + }, + locale: { + control: { type: 'select' }, + options: ['en', 'de', 'es', 'fr', 'it', 'ja', 'ko', 'nl', 'pl', 'pt', 'sv', 'tr', 'vi', 'zh'], + description: 'Locale of the aria-label text', + }, + observeParentSize: { + control: { type: 'boolean' }, + description: 'Recalculates skeleton size via ResizeObserver on the parent', + }, + type: { + control: { type: 'select' }, + options: ['linear', 'monotone'], + description: 'Curve interpolation — Line and Area chart skeletons only', + }, + layout: { + control: { type: 'select' }, + options: ['horizontal', 'vertical'], + description: 'Orientation — Bar and Histogram chart skeletons only', + }, + halfsize: { + control: { type: 'boolean' }, + description: 'Semi donut — Donut chart skeleton only', + }, + amount: { control: { type: 'number' }, + description: 'Number of Skeleton.Text lines in the control group', + }, + textWidth: { + control: { type: 'text' }, + description: 'Width of the last Skeleton.Text line in the control group', }, - w: { + invertedBackground: { + control: { type: 'boolean' }, + description: 'Puts everything on the inverted background to compare contrast', + }, + parentWidth: { control: { type: 'number' }, + description: 'Width of the parent box around each skeleton', }, + w: { control: { type: 'number' }, description: 'Box prop: width override' }, + h: { control: { type: 'number' }, description: 'Box prop: height override' }, + m: { control: { type: 'number' }, description: 'Box prop: margin' }, + p: { control: { type: 'number' }, description: 'Box prop: padding' }, } as const; -export const SkeletonThemes: StoryObj = { - render: SkeletonThemesExample, - argTypes: commonArgTypes, - args: defaultProps, -}; - -export const ObserveParentSize: Story = { - render: ObserveParentSizeExample, +export const ChartSkeletons: StoryObj = { + render: ChartSkeletonsExample, + argTypes: chartSkeletonArgTypes, + args: defaultChartSkeletonProps, }; diff --git a/stories/components/spin-container/advanced/examples/all-sizes.tsx b/stories/components/spin-container/advanced/examples/all-sizes.tsx new file mode 100644 index 0000000000..329334b66f --- /dev/null +++ b/stories/components/spin-container/advanced/examples/all-sizes.tsx @@ -0,0 +1,62 @@ +import { Box, Flex } from '@semcore/ui/base-components'; +import type { NSSpin } from '@semcore/ui/spin'; +import SpinContainer from '@semcore/ui/spin-container'; +import { Text } from '@semcore/ui/typography'; +import React from 'react'; + +const SIZES: NSSpin.Size[] = ['xs', 's', 'm', 'l', 'xl', 'xxl']; + +const Sample = ({ size, theme }: { size: NSSpin.Size; theme: 'default' | 'invert' }) => ( + + + + + Hello world + + + + + size='{size}' + + +); + +export default function AllSizes() { + return ( + + + + {SIZES.slice(0, 3).map((size) => ( + + ))} + + + {SIZES.slice(3).map((size) => ( + + ))} + + + + + + + {SIZES.slice(0, 3).map((size) => ( + + ))} + + + {SIZES.slice(3).map((size) => ( + + ))} + + + + + ); +} diff --git a/stories/components/spin-container/advanced/spin-container.stories.tsx b/stories/components/spin-container/advanced/spin-container.stories.tsx new file mode 100644 index 0000000000..0c0b3291e0 --- /dev/null +++ b/stories/components/spin-container/advanced/spin-container.stories.tsx @@ -0,0 +1,18 @@ +import SpinContainer from '@semcore/ui/spin-container'; +import type { Meta, StoryObj } from '@storybook/react-vite'; + +import AllSizesExample from './examples/all-sizes'; + +const meta: Meta = { + title: 'Components/SpinContainer/Advanced', + component: SpinContainer, +}; + +export default meta; + +type Story = StoryObj; + +export const AllSizes: Story = { + name: 'All Sizes', + render: AllSizesExample, +}; diff --git a/stories/components/spin-container/tests/examples/custom-background.tsx b/stories/components/spin-container/tests/examples/custom-background.tsx deleted file mode 100644 index 9719b34272..0000000000 --- a/stories/components/spin-container/tests/examples/custom-background.tsx +++ /dev/null @@ -1,53 +0,0 @@ -import { Flex } from '@semcore/ui/base-components'; -import SpinContainer from '@semcore/ui/spin-container'; -import { Text } from '@semcore/ui/typography'; -import React from 'react'; - -class Demo extends React.PureComponent { - render() { - return ( - <> - - -
Hello world
- No theme overlay -
- -
Hello world
-
- -
Hello world
-
-
- - - -
Hello world
- -
- -
Hello world
- Dark theme overlay -
- -
Hello world
-
-
- - -
Hello world
-
- -
Hello world
-
- - Invert theme overlay -
Hello world
-
-
- - ); - } -} - -export default () => ; diff --git a/stories/components/spin-container/tests/examples/over-interactive-content.tsx b/stories/components/spin-container/tests/examples/over-interactive-content.tsx deleted file mode 100644 index 22562dfe2e..0000000000 --- a/stories/components/spin-container/tests/examples/over-interactive-content.tsx +++ /dev/null @@ -1,92 +0,0 @@ -import { Flex } from '@semcore/ui/base-components'; -import Input from '@semcore/ui/input'; -import SpinContainer from '@semcore/ui/spin-container'; -import { Text } from '@semcore/ui/typography'; -import React from 'react'; - -class Demo extends React.PureComponent { - render() { - return ( - - - - - Input 1 - - - - - - Input 2 - - - - - - - - - - - Input 1 - - - - - - Input 2 - - - - - - - - - -
Hello world
-
- With overlay -
-
- ); - } -} - -export default () => ; diff --git a/stories/components/spin-container/tests/examples/sizes.tsx b/stories/components/spin-container/tests/examples/sizes.tsx deleted file mode 100644 index 381bec9ce8..0000000000 --- a/stories/components/spin-container/tests/examples/sizes.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import { Flex } from '@semcore/ui/base-components'; -import SpinContainer from '@semcore/ui/spin-container'; -import { Text } from '@semcore/ui/typography'; -import React from 'react'; - -class Demo extends React.PureComponent { - render() { - return ( - <> - - - Hello world - - - - Hello world - - - - Hello world - - - - Hello world - - - - Hello world - - - - Hello world - - - - - - - Hello world - - - - Hello world - - - - Hello world - - - - Hello world - - - - Hello world - - - - Hello world - - - - - ); - } -} - -export default () => ; diff --git a/stories/components/spin-container/tests/examples/spin-container-base.tsx b/stories/components/spin-container/tests/examples/spin-container-base.tsx new file mode 100644 index 0000000000..48b4d2f1f2 --- /dev/null +++ b/stories/components/spin-container/tests/examples/spin-container-base.tsx @@ -0,0 +1,117 @@ +import { Box, Flex } from '@semcore/ui/base-components'; +import Input from '@semcore/ui/input'; +import SpinContainer from '@semcore/ui/spin-container'; +import type { NSSpinContainer } from '@semcore/ui/spin-container'; +import { Text } from '@semcore/ui/typography'; +import React from 'react'; + +type ExampleProps = NSSpinContainer.Props & { + style?: any; + /** Demo-only knob: render SpinContainer.Content / SpinContainer.Overlay explicitly */ + advancedMode?: boolean; + /** Demo-only knob: text rendered inside SpinContainer.Overlay instead of the spinner */ + overlayText?: string; +}; + +const Demo = (props: ExampleProps) => { + const { loading, size, theme, background, duration, advancedMode, overlayText, w, h, m, p } = + props; + + // Box props are left out entirely when not set, so the component keeps its own defaults. + const containerProps = { + loading, + size, + theme, + duration, + ...(background !== undefined && { background }), + ...(w !== undefined && { w }), + ...(h !== undefined && { h }), + ...(m !== undefined && { m }), + ...(p !== undefined && { p }), + }; + + return ( + + + + over static content + + + + {advancedMode + ? ( + <> + + + Hello world + + + + {overlayText ? {overlayText} : undefined} + + + ) + : ( + + Hello world + + )} + + + + + + + over interactive content (must become inert while loading) + + + + + + Input + + + + + + + + + + + + on inverted background (use theme='invert' here) + + + + + + Hello world + + + + + + + ); +}; + +export const defaultSpinContainerProps: ExampleProps = { + loading: true, + size: 'xxl', + theme: 'default', + duration: 200, + advancedMode: false, + overlayText: '', +}; + +Demo.defaultProps = defaultSpinContainerProps; +export default Demo; diff --git a/stories/components/spin-container/tests/spin-container.stories.tsx b/stories/components/spin-container/tests/spin-container.stories.tsx index 79eb1f04c0..88611a6b46 100644 --- a/stories/components/spin-container/tests/spin-container.stories.tsx +++ b/stories/components/spin-container/tests/spin-container.stories.tsx @@ -1,9 +1,9 @@ import SpinContainer from '@semcore/ui/spin-container'; import type { Meta, StoryObj } from '@storybook/react-vite'; -import CustomBackgroundExample from './examples/custom-background'; -import OverInteractiveContentExample from './examples/over-interactive-content'; -import SizesExample from './examples/sizes'; +import SpinContainerBaseExample, { + defaultSpinContainerProps, +} from './examples/spin-container-base'; const meta: Meta = { title: 'Components/SpinContainer/Tests', @@ -11,16 +11,54 @@ const meta: Meta = { }; export default meta; -type Story = StoryObj; -export const OverInteractiveContent: Story = { - render: OverInteractiveContentExample, -}; - -export const CustomBackground: Story = { - render: CustomBackgroundExample, -}; +const spinContainerArgTypes = { + loading: { + control: { type: 'boolean' }, + description: 'Shows the overlay with the spinner', + }, + size: { + control: { type: 'select' }, + options: ['xs', 's', 'm', 'l', 'xl', 'xxl'], + description: 'Size of the nested Spin', + }, + theme: { + control: { type: 'select' }, + options: ['default', 'invert', 'dark'], + description: 'Overlay and spinner theme (\'dark\' is deprecated, behaves as \'default\')', + }, + background: { + control: { type: 'select' }, + options: ['none', 'blanchedalmond', '#3eeb4c', 'dark-violet', 'blue-400'], + mapping: { + 'none': undefined, + 'blanchedalmond': 'blanchedalmond', + '#3eeb4c': '#3eeb4c', + 'dark-violet': 'dark-violet', + 'blue-400': 'blue-400', + }, + description: 'Custom overlay background; overrides the theme background', + }, + duration: { + control: { type: 'number' }, + description: 'Fade in/out duration of the overlay, ms', + }, + advancedMode: { + control: { type: 'boolean' }, + description: 'Render SpinContainer.Content and SpinContainer.Overlay explicitly', + }, + overlayText: { + control: { type: 'text' }, + description: 'Text inside SpinContainer.Overlay (replaces the spinner, advanced mode only)', + }, + w: { control: { type: 'number' }, description: 'Box prop: width override' }, + h: { control: { type: 'number' }, description: 'Box prop: height override' }, + m: { control: { type: 'number' }, description: 'Box prop: margin' }, + p: { control: { type: 'number' }, description: 'Box prop: padding' }, +} as const; -export const Sizes: Story = { - render: SizesExample, +export const SpinContainerBase: StoryObj = { + render: SpinContainerBaseExample, + argTypes: spinContainerArgTypes, + args: defaultSpinContainerProps, }; diff --git a/stories/components/spin/advanced/examples/all-sizes.tsx b/stories/components/spin/advanced/examples/all-sizes.tsx index 3cf4e0a9ce..e32f94cf8d 100644 --- a/stories/components/spin/advanced/examples/all-sizes.tsx +++ b/stories/components/spin/advanced/examples/all-sizes.tsx @@ -4,7 +4,7 @@ import React from 'react'; export default function AllSizes() { return ( - + diff --git a/stories/components/spin/tests/examples/spin-base.tsx b/stories/components/spin/tests/examples/spin-base.tsx new file mode 100644 index 0000000000..d3d7eb9a8d --- /dev/null +++ b/stories/components/spin/tests/examples/spin-base.tsx @@ -0,0 +1,87 @@ +import { Box, Flex } from '@semcore/ui/base-components'; +import Spin from '@semcore/ui/spin'; +import type { NSSpin } from '@semcore/ui/spin'; +import { Text } from '@semcore/ui/typography'; +import React from 'react'; + +type ExampleProps = NSSpin.Props & { style?: any }; + +const Demo = (props: ExampleProps) => { + const { size, theme, centered, locale, m, mt } = props; + + // Spin accepts only margins from Box props; they are left out entirely when not set. + const spinProps = { + size, + theme, + centered, + locale, + ...(m !== undefined && { m }), + ...(mt !== undefined && { mt }), + }; + + return ( + + + + on default background + + + + + + + + + on inverted background (use theme='invert' here) + + + + + + + + + inside a 200x200 flex parent (use centered here) + + + + + + + + + with children + + + + Custom title node + + Loading… + + + + ); +}; + +export const defaultSpinProps: ExampleProps = { + size: 'm', + theme: 'default', + centered: false, + locale: 'en', +}; + +Demo.defaultProps = defaultSpinProps; +export default Demo; diff --git a/stories/components/spin/tests/examples/spin-box-props.tsx b/stories/components/spin/tests/examples/spin-box-props.tsx deleted file mode 100644 index 1132ac48eb..0000000000 --- a/stories/components/spin/tests/examples/spin-box-props.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import { Flex } from '@semcore/ui/base-components'; -import Spin from '@semcore/ui/spin'; -import { Text } from '@semcore/ui/typography'; -import React from 'react'; - -const Demo = () => { - return ( - <> - - - - - - - ); -}; - -export default Demo; diff --git a/stories/components/spin/tests/examples/spin-centered.tsx b/stories/components/spin/tests/examples/spin-centered.tsx deleted file mode 100644 index 4c28a3b4f1..0000000000 --- a/stories/components/spin/tests/examples/spin-centered.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import Spin from '@semcore/ui/spin'; -import React from 'react'; - -const Demo = () => { - return ( - <> -
- -
- - ); -}; - -export default Demo; diff --git a/stories/components/spin/tests/examples/spin-custom-theme.tsx b/stories/components/spin/tests/examples/spin-custom-theme.tsx deleted file mode 100644 index a6894548b3..0000000000 --- a/stories/components/spin/tests/examples/spin-custom-theme.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import Spin from '@semcore/ui/spin'; -import React from 'react'; - -const Demo = () => { - return ( - <> - - - - - ); -}; - -export default Demo; diff --git a/stories/components/spin/tests/examples/spin-sizes-bottom-text.tsx b/stories/components/spin/tests/examples/spin-sizes-bottom-text.tsx deleted file mode 100644 index 4d6b7b7495..0000000000 --- a/stories/components/spin/tests/examples/spin-sizes-bottom-text.tsx +++ /dev/null @@ -1,91 +0,0 @@ -import { Flex } from '@semcore/ui/base-components'; -import Spin from '@semcore/ui/spin'; -import { Text } from '@semcore/ui/typography'; -import React from 'react'; - -const Demo = () => { - return ( - <> - - - - size='xs' - - - - - - size='s' - - - - - - size='m' - - - - - - size='l' - - - - - - size='xl' - - - - - - size='xxl' - - - - ); -}; - -export default Demo; diff --git a/stories/components/spin/tests/examples/spin-sizes.tsx b/stories/components/spin/tests/examples/spin-sizes.tsx deleted file mode 100644 index 2ecc37b80d..0000000000 --- a/stories/components/spin/tests/examples/spin-sizes.tsx +++ /dev/null @@ -1,91 +0,0 @@ -import { Flex } from '@semcore/ui/base-components'; -import Spin from '@semcore/ui/spin'; -import { Text } from '@semcore/ui/typography'; -import React from 'react'; - -const Demo = () => { - return ( - <> - - - - size='xs' - - - - - - size='s' - - - - - - size='m' - - - - - - size='l' - - - - - - size='xl' - - - - - - size='xxl' - - - - ); -}; - -export default Demo; diff --git a/stories/components/spin/tests/examples/spin-theme.tsx b/stories/components/spin/tests/examples/spin-theme.tsx deleted file mode 100644 index 6082eced4b..0000000000 --- a/stories/components/spin/tests/examples/spin-theme.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import Spin from '@semcore/ui/spin'; -import React from 'react'; - -const Demo = () => { - return ( -
- - -
- ); -}; - -export default Demo; diff --git a/stories/components/spin/tests/spin.stories.tsx b/stories/components/spin/tests/spin.stories.tsx index 8a491d8cf6..2c20b463a2 100644 --- a/stories/components/spin/tests/spin.stories.tsx +++ b/stories/components/spin/tests/spin.stories.tsx @@ -1,12 +1,7 @@ import Spin from '@semcore/ui/spin'; import type { Meta, StoryObj } from '@storybook/react-vite'; -import SpinBoxPropsExample from './examples/spin-box-props'; -import SpinCenteredExample from './examples/spin-centered'; -import SpinCustomThemeExample from './examples/spin-custom-theme'; -import SpinSizesExample from './examples/spin-sizes'; -import SpinSizesBottomTextExample from './examples/spin-sizes-bottom-text'; -import SpinThemeExample from './examples/spin-theme'; +import SpinBaseExample, { defaultSpinProps } from './examples/spin-base'; const meta: Meta = { title: 'Components/Spin/Tests', @@ -14,28 +9,33 @@ const meta: Meta = { }; export default meta; -type Story = StoryObj; -export const SpinSizes: Story = { - render: SpinSizesExample, -}; - -export const SpinBoxProps: Story = { - render: SpinBoxPropsExample, -}; - -export const SpinSizesBottomText: Story = { - render: SpinSizesBottomTextExample, -}; - -export const SpinCentered: Story = { - render: SpinCenteredExample, -}; - -export const SpinTheme: Story = { - render: SpinThemeExample, -}; - -export const SpinCustomTheme: Story = { - render: SpinCustomThemeExample, +const spinArgTypes = { + size: { + control: { type: 'select' }, + options: ['xs', 's', 'm', 'l', 'xl', 'xxl'], + description: 'Spinner size', + }, + theme: { + control: { type: 'select' }, + options: ['default', 'invert', 'dark', 'blue-400', 'red-400', 'blanchedalmond', '#3eeb4c'], + description: 'Built-in themes (\'default\', \'invert\', deprecated \'dark\') or any custom color', + }, + centered: { + control: { type: 'boolean' }, + description: 'Centers the spinner inside its flex parent', + }, + locale: { + control: { type: 'select' }, + options: ['en', 'de', 'es', 'fr', 'it', 'ja', 'ko', 'nl', 'pl', 'pt', 'sv', 'tr', 'vi', 'zh'], + description: 'Locale of the aria-label text', + }, + m: { control: { type: 'number' }, description: 'Margin — the only Box props Spin accepts' }, + mt: { control: { type: 'number' }, description: 'Margin top' }, +} as const; + +export const SpinBase: StoryObj = { + render: SpinBaseExample, + argTypes: spinArgTypes, + args: defaultSpinProps, }; diff --git a/stories/components/tab-line/docs/examples/tab_line_item_addons.tsx b/stories/components/tab-line/docs/examples/tab_line_item_addons.tsx index 505bd195fe..f2aed847c7 100644 --- a/stories/components/tab-line/docs/examples/tab_line_item_addons.tsx +++ b/stories/components/tab-line/docs/examples/tab_line_item_addons.tsx @@ -30,7 +30,7 @@ const Demo = () => { Instagram - new + { Instagram Instagram - new + { Instagram - new + { Instagram Instagram - new + - - - Primary - - - Secondary - - - Additional - - - Disabled - - + {SIZES.map((size) => ( + + Primary + Secondary + Disabled + + ))} + {SIZES.map((size) => ( + + + + Primary interactive + + + + + + Secondary interactive + + + + + + Secondary interactive + + + + ))} + + + {SIZES.map((size) => ( + + + Primary invert + + + Secondary invert + + + ))} + {SIZES.map((size) => ( + + + + Primary invert interactive + + + + + + Secondary invert interactive + + + + + + Additional invert interactive + + + + ))} + + {SIZES.map((size) => ( {COLORS.map((color) => ( - {color} + {color} ))} diff --git a/stories/components/tag/tests/Tag.stories.tsx b/stories/components/tag/tests/Tag.stories.tsx index 1bd780b461..f3c71ba0bd 100644 --- a/stories/components/tag/tests/Tag.stories.tsx +++ b/stories/components/tag/tests/Tag.stories.tsx @@ -28,10 +28,16 @@ export const BasicProps: StoryObj = { }, theme: { control: 'select', - options: ['primary', 'secondary', 'additional', 'muted', 'invert'], + options: ['primary', 'secondary', 'additional'], + }, + invert: { + control: 'boolean', + description: 'Inverts the tag for dark backgrounds. Supported by all themes.', }, color: { control: 'select', + // `color` is only supported by the primary theme. + if: { arg: 'theme', eq: 'primary' }, options: [ 'gray-500', 'blue-500', diff --git a/stories/components/tag/tests/examples/basic_usage.tsx b/stories/components/tag/tests/examples/basic_usage.tsx index ac2caee886..a531eaecda 100644 --- a/stories/components/tag/tests/examples/basic_usage.tsx +++ b/stories/components/tag/tests/examples/basic_usage.tsx @@ -1,12 +1,22 @@ import CheckM from '@semcore/icon/Check/m'; import CloseM from '@semcore/icon/Close/m'; -import { Box, Flex } from '@semcore/ui/base-components'; +import { Box } from '@semcore/ui/base-components'; import Tag, { TagContainer } from '@semcore/ui/tag'; import type { NSTag } from '@semcore/ui/tag'; import React from 'react'; -export type BasicTagProps = NSTag.Props & { + +export type BasicTagProps = { text?: string; disabled?: boolean; + active?: boolean; + interactive?: boolean; + theme?: NSTag.Theme; + /** Supported by all themes. Renders the tag for dark backgrounds. */ + invert?: boolean; + /** Only supported by the `primary` theme. */ + color?: string; + size?: NSTag.Size; + locale?: string; showAddonLeft?: boolean; showAddonRight?: boolean; showClose?: boolean; @@ -19,6 +29,7 @@ export const defaultProps: BasicTagProps = { active: false, interactive: false, theme: 'primary', + invert: false, color: undefined, size: 'm', showAddonLeft: false, @@ -34,6 +45,7 @@ const Demo = ({ active = defaultProps.active, interactive = defaultProps.interactive, theme = defaultProps.theme, + invert = defaultProps.invert, color, size = defaultProps.size, showAddonLeft = defaultProps.showAddonLeft, @@ -42,61 +54,58 @@ const Demo = ({ useTagContainer = defaultProps.useTagContainer, locale, }: BasicTagProps) => { + const commonProps = { disabled, active, interactive, invert, size, locale }; + const backgroundColor = invert ? 'var(--intergalactic-bg-primary-invert)' : '#8b9bddff'; + + const content = ( + <> + {showAddonLeft && ( + + + + )} + {text} + {showAddonRight && ( + + + + )} + + ); + if (useTagContainer && showClose) { return ( - - - - {showAddonLeft && ( - - - - )} - {text} - {showAddonRight && ( - - - + + {theme === 'primary' + ? ( + + {content} + + + ) + : ( + + {content} + + )} - - - ); } return ( - - - - {showAddonLeft && ( - - - - )} - {text} - {showAddonRight && ( - - - - )} - + + {theme === 'primary' + ? ( + + {content} + + ) + : ( + + {content} + + )} ); }; diff --git a/stories/components/tooltip/docs/examples/custom_bg_color.tsx b/stories/components/tooltip/docs/examples/custom_bg_color.tsx index f7dd7a4f79..82ed05853e 100644 --- a/stories/components/tooltip/docs/examples/custom_bg_color.tsx +++ b/stories/components/tooltip/docs/examples/custom_bg_color.tsx @@ -8,7 +8,7 @@ const Demo = () => ( Colored tooltip ( background: 'var(--intergalactic-bg-primary-advertising)', color: 'var(--intergalactic-text-primary-invert)', borderRadius: 'var(--intergalactic-popper-rounded)', - borderColor: 'var(--intergalactic-border-tooltip-invert)', + borderColor: 'var(--intergalactic-tooltip-border-invert)', }} p={3} > diff --git a/stories/components/typography/tests/examples/text-font-size-and-weight-headers-and-paragrapsh.tsx b/stories/components/typography/tests/examples/text-font-size-and-weight-headers-and-paragrapsh.tsx index 2b23dafa71..d6daa8345e 100644 --- a/stories/components/typography/tests/examples/text-font-size-and-weight-headers-and-paragrapsh.tsx +++ b/stories/components/typography/tests/examples/text-font-size-and-weight-headers-and-paragrapsh.tsx @@ -38,6 +38,9 @@ const Demo = () => ( Paragraph example. + + Text, 18px, --fs-350 + H6, 16px, --fs-300 diff --git a/stories/components/typography/tests/typography.stories.tsx b/stories/components/typography/tests/typography.stories.tsx index 16242bdaef..854f1e5c74 100644 --- a/stories/components/typography/tests/typography.stories.tsx +++ b/stories/components/typography/tests/typography.stories.tsx @@ -18,7 +18,7 @@ function getCommonArgTypes() { return { size: { control: { type: 'select' }, - options: ['100', '200', '300', '400', '500', '600', '700', '800'], + options: ['100', '200', '300', '350', '400', '500', '600', '700', '800'], }, noWrap: { control: { type: 'boolean' } }, bold: { control: { type: 'boolean' } }, diff --git a/stories/components/wizard/docs/examples/custom_step.tsx b/stories/components/wizard/docs/examples/custom_step.tsx index 54a2fc39ea..29cd8aa3c2 100644 --- a/stories/components/wizard/docs/examples/custom_step.tsx +++ b/stories/components/wizard/docs/examples/custom_step.tsx @@ -47,7 +47,7 @@ const Demo = () => { {steps[2].title} - + optional diff --git a/stories/components/wizard/tests/examples/steps_and_buttons_states.tsx b/stories/components/wizard/tests/examples/steps_and_buttons_states.tsx index fd9e865a9f..1c872f3e01 100644 --- a/stories/components/wizard/tests/examples/steps_and_buttons_states.tsx +++ b/stories/components/wizard/tests/examples/steps_and_buttons_states.tsx @@ -55,20 +55,20 @@ const Demo = ({ firstStepTitle, ellipsis }: StepsAndButtonsStatesProps) => { {configurableSteps[1].title} - + {value === '' ? 'Not selected' : value} - + {configurableSteps[2].title} - + Optional step - + {configurableSteps[3].title} @@ -80,7 +80,7 @@ const Demo = ({ firstStepTitle, ellipsis }: StepsAndButtonsStatesProps) => { {configurableSteps[6].title} - + optional diff --git a/stories/patterns/core/advanced/components/Components/index.tsx b/stories/patterns/core/advanced/components/Components/index.tsx index ad2bba833e..634e1a5b1f 100644 --- a/stories/patterns/core/advanced/components/Components/index.tsx +++ b/stories/patterns/core/advanced/components/Components/index.tsx @@ -22,6 +22,7 @@ import InlineNumberInput from '../../../../../components/inline-input/docs/examp import InputClear from '../../../../../components/input/docs/examples/input_with_the_clearing_ability'; import InputNumberDemo from '../../../../../components/input-number/docs/examples/range_of_values'; import InputTags from '../../../../../components/input-tags/docs/examples/entering_and_editing_tags'; +import LinkAllStatesExample from '../../../../../components/link/docs/examples/all_states'; import LinkColorLinksExample from '../../../../../components/link/docs/examples/color_links'; import BasicNoticeExample from '../../../../../components/notice/docs/examples/basic_notice'; import PillsBasicExample, { @@ -75,6 +76,7 @@ export function Components() { + diff --git a/stories/patterns/core/core.stories.tsx b/stories/patterns/core/core.stories.tsx index 28539e0b40..ce06dcf50a 100644 --- a/stories/patterns/core/core.stories.tsx +++ b/stories/patterns/core/core.stories.tsx @@ -14,7 +14,7 @@ export const LinkButtonLinkTextCombination: StoryObj
- + @@ -201,7 +202,7 @@ export function Dashboard({ showPrimaryTableFooter = false }: DashboardProps) { {item.label} - + {item.value} @@ -253,7 +254,7 @@ export function Dashboard({ showPrimaryTableFooter = false }: DashboardProps) { {item.label} - + {item.value} @@ -268,8 +269,8 @@ export function Dashboard({ showPrimaryTableFooter = false }: DashboardProps) { - - + + @@ -366,7 +367,7 @@ export function Dashboard({ showPrimaryTableFooter = false }: DashboardProps) { - + @@ -458,7 +459,7 @@ export function Dashboard({ showPrimaryTableFooter = false }: DashboardProps) { - + - + + + + Keywords + + + + + )} diff --git a/stories/patterns/core/tests/all-components/components/Tables/PrimaryTable.tsx b/stories/patterns/core/tests/all-components/components/Tables/PrimaryTable.tsx index fa8c57e2ef..bdab7bca9d 100644 --- a/stories/patterns/core/tests/all-components/components/Tables/PrimaryTable.tsx +++ b/stories/patterns/core/tests/all-components/components/Tables/PrimaryTable.tsx @@ -15,12 +15,12 @@ import Pills from '@semcore/ui/pills'; import ProgressBar from '@semcore/ui/progress-bar'; import SidePanel from '@semcore/ui/side-panel'; import { Text } from '@semcore/ui/typography'; -import React, { useState } from 'react'; +import React, { useDeferredValue, useState } from 'react'; import { IntlProvider } from 'react-intl'; import { BeforeTablesControls } from './BeforeTablesControls'; import PrimaryTableAddFilter from './PrimaryTableAddFilter'; -import { CopyCell, Currency, DateCell, Money, OperationType, StatusCell, TimeCell } from './table_perf/cells'; +import { CopyCell, Currency, DateCell, Money, OperationType, StatusCell, TimeCell, UrlLinkCell } from './table_perf/cells'; import { SelectedRowsInfo } from './table_perf/SelectedRowsInfo'; import Table, { type TableDemoState } from './table_perf/table_perf'; import AdvancedFilter from '../../../../../filters/advanced-filters/docs/examples/filters-with-filter-conditions'; @@ -41,6 +41,19 @@ const COLUMNS_CONFIG = [ }, fixed: 'left' as const, }, + { + id: 'url', + defaultActive: true, + copyHandle: false, + Component: UrlLinkCell, + wMin: 200, + ref: (node: HTMLElement | null) => { + if (node) { + refsMap.url = node; + } + }, + fixed: 'left' as const, + }, // { // id: 'actions', // defaultActive: true, @@ -218,7 +231,7 @@ const componentsMap = Object.fromEntries( const cols = COLUMNS_CONFIG.map((c) => ({ name: c.id, - children: c.id, + children: c.id === 'url' ? 'URL' : c.id, gtcWidth: c.wMin ? `minmax(${c.wMin}px, 1fr)` : 'max-content', ref: c.ref, fixed: c.fixed, @@ -250,8 +263,9 @@ export default function PrimaryTable({ onPageErrorChange }: PrimaryTableProps = const [currentPage, setCurrentPage] = React.useState(1); const [pillValue, setPillValue] = React.useState('default'); + const defferedPillValue = React.useDeferredValue(pillValue); const tableDemoState: TableDemoState = - pillValue === 'pageError' || pillValue === 'progress' ? 'default' : pillValue; + defferedPillValue === 'pageError' || defferedPillValue === 'progress' ? 'default' : defferedPillValue; const [nameFilter, setNameFilter] = React.useState(''); const [debouncedNameFilter, setDebouncedNameFilter] = React.useState(''); const [sidePanelOpen, setSidePanelOpen] = React.useState(false); @@ -399,7 +413,7 @@ export default function PrimaryTable({ onPageErrorChange }: PrimaryTableProps = }, [columns, setColumns]); const mainTableContent = - pillValue === 'pageError' + defferedPillValue === 'pageError' ? ( @@ -490,7 +504,7 @@ export default function PrimaryTable({ onPageErrorChange }: PrimaryTableProps = - {pillValue === 'progress' && ( + {defferedPillValue === 'progress' && ( { return Number.isFinite(num) ? num : Number.NEGATIVE_INFINITY; }; -export function SecondaryTable() { - const urlRef = React.useRef(null); - const [columnElement, setColumnElement] = React.useState(undefined); +const KEYWORD_URLS = [ + 'https://www.semrush.com/blog/', + 'https://developer.semrush.com/intergalactic/', + 'https://www.ebay.com/deals', + 'https://github.com/semrush/intergalactic', + 'https://www.nytimes.com/section/technology', + 'https://en.wikipedia.org/wiki/Web_design', + 'https://www.mozilla.org/firefox/', + 'https://stackoverflow.com/questions', + 'https://www.smashingmagazine.com/', + 'https://css-tricks.com/guides/', + 'https://web.dev/learn/', + 'https://www.figma.com/community', + 'https://www.npmjs.com/package/@semcore/ui', + 'https://react.dev/reference/react', + 'https://www.w3.org/WAI/standards-guidelines/wcag/', + 'https://caniuse.com/', + 'https://www.shopify.com/blog', + 'https://stripe.com/docs', + 'https://www.atlassian.com/software/jira', + 'https://www.notion.so/product', + 'https://linear.app/changelog', + 'https://vercel.com/templates', + 'https://www.cloudflare.com/learning/', + 'https://aws.amazon.com/documentation/', + 'https://kubernetes.io/docs/home/', +]; - React.useEffect(() => { - if (urlRef.current) { - setColumnElement(urlRef.current); - } - }, []); +const data = [ + { keyword: 'ebay buy', kd: '77.8', cpc: '$1.25' }, + { keyword: 'www.ebay.com', kd: '11.2', cpc: '$3.4' }, + { keyword: 'buy on ebay', kd: '10', cpc: '$0.65' }, + { keyword: 'ebay deals', kd: '34.1', cpc: '$2.10' }, + { keyword: 'semrush intergalactic', kd: '58.3', cpc: '$1.80' }, + { keyword: 'design system tokens', kd: '5.7', cpc: '$0.00' }, + { keyword: 'react components', kd: '-', cpc: '$0' }, + { keyword: 'accessibility audit', kd: '75.89', cpc: '$0' }, +].map((row, index) => ({ + ...row, + url: KEYWORD_URLS[index % KEYWORD_URLS.length], +})); +export function SecondaryTable() { const sortedData = React.useMemo( () => [...data].sort((a, b) => parseKd(b.kd) - parseKd(a.kd)), [], @@ -35,6 +69,11 @@ export function SecondaryTable() { aria-label='Table title' columns={[ { name: 'keyword', children: 'Keyword' }, + { + name: 'url', + children: 'URL', + gtcWidth: 'minmax(auto, 200px)', + }, { name: 'kd', children: ( @@ -52,43 +91,22 @@ export function SecondaryTable() { gtcWidth: 'minmax(70px, auto)', justifyContent: 'flex-end', }, - { - name: 'url', - children: 'URL', - gtcWidth: 'minmax(auto, 200px)', - ref: urlRef, - }, ]} renderCell={(props) => { - const triggerRef = React.useRef(null); - if (props.columnName === 'url') { const pageUrl = props.value?.toString?.() || ''; + if (!pageUrl || pageUrl === 'n/a') { + return props.defaultRender(); + } + return ( - - width - 28} - hint:triggerRef={triggerRef} - > + + {removeProtocol(pageUrl)} - - - - - + + + ); } @@ -96,55 +114,4 @@ export function SecondaryTable() { }} /> ); -}; - -const data = [ - { - keyword: 'ebay buy', - kd: '77.8', - cpc: '$1.25', - url: 'https://developer.semrush.com/intergalactic/', - }, - { - keyword: 'www.ebay.com', - kd: '11.2', - cpc: '$3.4', - url: 'https://developer.semrush.com/intergalactic/', - }, - { - keyword: 'www.ebay.com', - kd: '10', - cpc: '$0.65', - url: 'https://developer.semrush.com/intergalactic/', - }, - { - keyword: 'buy on ebay', - kd: '34.1', - cpc: '$2.10', - url: 'https://www.ebay.com/', - }, - { - keyword: 'ebay deals', - kd: '58.3', - cpc: '$1.80', - url: 'https://www.ebay.com/deals', - }, - { - keyword: 'semrush intergalactic', - kd: '5.7', - cpc: '$0.00', - url: 'https://developer.semrush.com/intergalactic/', - }, - { - keyword: 'ebay buy', - kd: '-', - cpc: '$0', - url: 'n/a', - }, - { - keyword: 'ebay buy', - kd: '75.89', - cpc: '$0', - url: 'https://semrush.com', - }, -]; +} diff --git a/stories/patterns/core/tests/all-components/components/Tables/table_perf/cells/index.tsx b/stories/patterns/core/tests/all-components/components/Tables/table_perf/cells/index.tsx index 7fb2c37831..6a5b96a983 100644 --- a/stories/patterns/core/tests/all-components/components/Tables/table_perf/cells/index.tsx +++ b/stories/patterns/core/tests/all-components/components/Tables/table_perf/cells/index.tsx @@ -1,5 +1,6 @@ import CopyM from '@semcore/icon/Copy/m'; import { Box, Flex } from '@semcore/ui/base-components'; +import Link from '@semcore/ui/link'; import Tooltip from '@semcore/ui/tooltip'; import { Text } from '@semcore/ui/typography'; import React from 'react'; @@ -12,7 +13,7 @@ import { } from 'react'; import { FormattedNumber, FormattedDate, FormattedTime, defineMessage, useIntl } from 'react-intl'; -import PaymentOperationType from './op_type'; +import { EditableOperationType } from './op_type'; import PaymentStatus from './payment_status'; type Timeout = ReturnType; @@ -123,7 +124,7 @@ const CopyCell = ({ value, cellProps, headerRef, cropPosition = 'middle', handle const StatusCell = ({ value }: any) => ; const OperationType = ({ value }: any) => ( - + ); const Money = ({ value, row }: any) => { @@ -150,6 +151,36 @@ const TimeCell = ({ value }: any) => { return ; }; +const removeProtocol = (url: string): string => url.replace(/^(http|https):\/\//, ''); + +const UrlLinkCell = ({ value, headerRef }: any) => { + const pageUrl = value?.toString?.() || ''; + + if (!pageUrl || pageUrl === 'n/a') { + return null; + } + + return ( + + width - 16} + > + {removeProtocol(pageUrl)} + + + + ); +}; + export { CopyCell, StatusCell, @@ -158,4 +189,5 @@ export { Currency, DateCell, TimeCell, + UrlLinkCell, }; diff --git a/stories/patterns/core/tests/all-components/components/Tables/table_perf/cells/op_type.tsx b/stories/patterns/core/tests/all-components/components/Tables/table_perf/cells/op_type.tsx index 1f9e52b973..3279a084f2 100644 --- a/stories/patterns/core/tests/all-components/components/Tables/table_perf/cells/op_type.tsx +++ b/stories/patterns/core/tests/all-components/components/Tables/table_perf/cells/op_type.tsx @@ -5,6 +5,7 @@ import PopupM from '@semcore/icon/Popup/m'; import ReloadM from '@semcore/icon/Reload/m'; import ReturnM from '@semcore/icon/Return/m'; import { Flex } from '@semcore/ui/base-components'; +import InlineInput from '@semcore/ui/inline-input'; import type { TextProps } from '@semcore/ui/typography'; import { Text } from '@semcore/ui/typography'; import React from 'react'; @@ -76,4 +77,41 @@ const PaymentOperationType: FC = ({ ); }; +export const EditableOperationType: FC = ({ + operationType, + testIdPrefix, +}) => { + const intl = useIntl(); + + const Icon = mapIcons[operationType]; + const initialTitle = mapTitles[operationType] + ? intl.formatMessage(mapTitles[operationType]) + : operationType; + + const [value, setValue] = React.useState(initialTitle); + const [confirmed, setConfirmed] = React.useState(initialTitle); + + return ( + setConfirmed(value)} + onCancel={() => setValue(confirmed)} + onClick={(e: React.MouseEvent) => e.stopPropagation()} + data-test={`${testIdPrefix}-payment-operation-type`} + > + {Icon && ( + + + + )} + + + + + ); +}; + export default PaymentOperationType; diff --git a/stories/patterns/core/tests/all-components/components/Tables/table_perf/cells/payment_status.tsx b/stories/patterns/core/tests/all-components/components/Tables/table_perf/cells/payment_status.tsx index 11d56767c7..d3610a287a 100644 --- a/stories/patterns/core/tests/all-components/components/Tables/table_perf/cells/payment_status.tsx +++ b/stories/patterns/core/tests/all-components/components/Tables/table_perf/cells/payment_status.tsx @@ -9,7 +9,7 @@ type PaymentStatusProps = { status: 'success' | 'failed' | 'pending'; short?: boolean; testIdPrefix?: string; -} & Omit; +}; const colorsMap = { success: 'green-500', diff --git a/stories/patterns/core/tests/all-components/components/Tables/table_perf/data.tsx b/stories/patterns/core/tests/all-components/components/Tables/table_perf/data.tsx index 465e2442d0..3f82bb8d32 100644 --- a/stories/patterns/core/tests/all-components/components/Tables/table_perf/data.tsx +++ b/stories/patterns/core/tests/all-components/components/Tables/table_perf/data.tsx @@ -43,6 +43,34 @@ const TRANSACTION_CATEGORY_NAMES = [ 'Public transport', ]; +const TRANSACTION_URLS = [ + 'https://www.semrush.com/blog/', + 'https://developer.semrush.com/intergalactic/', + 'https://www.ebay.com/deals', + 'https://github.com/semrush/intergalactic', + 'https://www.nytimes.com/section/technology', + 'https://en.wikipedia.org/wiki/Web_design', + 'https://www.mozilla.org/firefox/', + 'https://stackoverflow.com/questions', + 'https://www.smashingmagazine.com/', + 'https://css-tricks.com/guides/', + 'https://web.dev/learn/', + 'https://www.figma.com/community', + 'https://www.npmjs.com/package/@semcore/ui', + 'https://react.dev/reference/react', + 'https://www.w3.org/WAI/standards-guidelines/wcag/', + 'https://caniuse.com/', + 'https://www.shopify.com/blog', + 'https://stripe.com/docs', + 'https://www.atlassian.com/software/jira', + 'https://www.notion.so/product', + 'https://linear.app/changelog', + 'https://vercel.com/templates', + 'https://www.cloudflare.com/learning/', + 'https://aws.amazon.com/documentation/', + 'https://kubernetes.io/docs/home/', +]; + export const data: (page: number) => DataTableData = (page: number) => { const data = [ { @@ -610,6 +638,7 @@ export const data: (page: number) => DataTableData = (page: number) => { return { ...item, name: TRANSACTION_CATEGORY_NAMES[idx % TRANSACTION_CATEGORY_NAMES.length], + url: TRANSACTION_URLS[(page * data.length + idx) % TRANSACTION_URLS.length], payment_intent_id: `${page}__${item.payment_intent_id}`, }; }); diff --git a/stories/patterns/ux-patterns/form/tests/Form.stories.tsx b/stories/patterns/ux-patterns/form/tests/Form.stories.tsx new file mode 100644 index 0000000000..ba02060ed7 --- /dev/null +++ b/stories/patterns/ux-patterns/form/tests/Form.stories.tsx @@ -0,0 +1,18 @@ +import type { Meta, StoryObj } from '@storybook/react-vite'; + +import HorizontalFormExample from './examples/horizontal-form'; +import VerticalFormExample from './examples/vertical-form'; + +const meta: Meta = { + title: 'Patterns/UX Patterns/Form/Tests', +}; + +export const HorizontalForm: StoryObj = { + render: HorizontalFormExample, +}; + +export const VerticalForm: StoryObj = { + render: VerticalFormExample, +}; + +export default meta; diff --git a/stories/patterns/ux-patterns/form/tests/examples/horizontal-form.tsx b/stories/patterns/ux-patterns/form/tests/examples/horizontal-form.tsx new file mode 100644 index 0000000000..d6668f6e87 --- /dev/null +++ b/stories/patterns/ux-patterns/form/tests/examples/horizontal-form.tsx @@ -0,0 +1,117 @@ +import { Flex } from '@semcore/ui/base-components'; +import BulkTextarea from '@semcore/ui/bulk-textarea'; +import Button from '@semcore/ui/button'; +import Flag, { iso2Name } from '@semcore/ui/flags'; +import Input from '@semcore/ui/input'; +import InputTags from '@semcore/ui/input-tags'; +import Textarea from '@semcore/ui/textarea'; +import React from 'react'; + +type HorizontalFormRowProps = { + size: 'm' | 'l'; +}; + +const HorizontalFormRow = ({ size }: HorizontalFormRowProps) => { + const [country, setCountry] = React.useState(''); + const [tags, setTags] = React.useState(['Tag name', 'Tag name']); + const [valueTag, setValueTag] = React.useState(''); + const [comment, setComment] = React.useState(''); + const [bulkComment, setBulkComment] = React.useState(''); + + const handleSubmit = (event: React.FormEvent) => { + event.preventDefault(); + alert(JSON.stringify({ country, tags, comment, bulkComment })); + }; + + const handleAppendTags = (newTags: string[]) => { + setTags((currentTags) => [...currentTags, ...newTags]); + setValueTag(''); + }; + + const handleRemoveTag = () => { + setTags((currentTags) => { + if (currentTags.length === 0) return currentTags; + setValueTag((currentValueTag) => `${currentTags.slice(-1)[0]} ${currentValueTag}`); + return currentTags.slice(0, -1); + }); + }; + + const handleCloseTag = (event: React.MouseEvent) => { + const index = Number(event.currentTarget.dataset.index); + setTags((currentTags) => currentTags.filter((_, tagIndex) => tagIndex !== index)); + }; + + return ( + + + + + + + + + + {tags.map((tag, idx) => ( + + {tag} + + + ))} + + + +