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/Notice.tsx b/playground/entries/Notice.tsx index 29e0d36c97..b583ee9c3c 100644 --- a/playground/entries/Notice.tsx +++ b/playground/entries/Notice.tsx @@ -32,10 +32,10 @@ function getJSX(props: NoticeJSXProps) { {props.title || props.label || props.closable ? {props.message} : props.message} {props.actions && ( - - diff --git a/playground/entries/ProgressBar.tsx b/playground/entries/ProgressBar.tsx index de7da825a4..6bdbd0fc93 100644 --- a/playground/entries/ProgressBar.tsx +++ b/playground/entries/ProgressBar.tsx @@ -23,8 +23,8 @@ const entry: PlaygroundEntry = { }, theme: { type: 'select', - value: 'invert', - options: ['invert', 'dark'], + value: 'default', + options: ['default', 'brand', 'invert'], displayName: 'Theme', }, duration: { 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 fdfbdbd079..cb86c2838f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -773,6 +773,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 @@ -792,9 +798,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 @@ -923,6 +926,9 @@ importers: semcore/dropdown: dependencies: + '@semcore/notice': + specifier: ^17.2.2 + version: link:../notice '@semcore/typography': specifier: ^17.2.1 version: link:../typography @@ -1465,6 +1471,9 @@ importers: '@semcore/icon': specifier: workspace:* version: link:../icon + '@semcore/illustration': + specifier: workspace:* + version: link:../illustration '@semcore/testing-utils': specifier: workspace:* version: link:../../tools/testing-utils @@ -1520,6 +1529,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..d8c60bc639 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..a8beca2fcd 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..9c251cdeb8 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..07ca0244fb 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..c954768ebe 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..476e148988 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..8625ededd2 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..7601dbd29f 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..8460fc24a5 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..68c61475ce 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..106cb39baf 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..b7d8bb75ed 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..9586f6321a 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..2985edf49f 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..3892995d92 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..4515dbfe62 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..4d6ad481cc 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..b3a68ac5a3 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..dabe4a9b07 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..c9e9c80e48 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..ee9e34250d 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..95c26d0966 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..001086bd12 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..6848b0b021 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..4033c13f9f 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..9927886f85 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..1fc1a9f22e 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..bb8330b93d 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..1af8b3da75 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..eae4b1da7d 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..07c80b09bf 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..f788cbba39 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..d211bf40dc 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..d832608233 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..94a2a9427a 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..d3b9ffec95 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..e2e92e7acb 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..4c130b2296 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..40223f5259 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..10411bf01d 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..2b811ebb9c 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..a2b24fd40c 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..5adf57f835 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.097 0.023 156.5 / 0.468)); + 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.097 0.023 156.5 / 0.468)); + 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..cfed6e1966 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..1bc64cee67 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..3ed0148092 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..480ac978de 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..c1aebf9087 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..cddf3cc356 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..a16f7ae0de 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..476d3eea48 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..da4a5789eb 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..7603b12acf 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..d7214fcd02 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..3a61f717e5 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..bf833fa222 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..23b50fb09a 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..cd665b20a7 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..cd59f938aa 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..12bd998f02 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..5326cfb002 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..ec4917f959 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..cb3f8f125d 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..4c82b5e167 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..b2c156e769 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..af37ba8295 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..9f8aa78402 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..cdf7f08c35 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..9e3a1a3f7c 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..f0781a0a10 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..2c0e14542c 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..98c07c8409 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..4bef2158ef 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..6f99a8218a 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..7603b12acf 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..d7214fcd02 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..3a61f717e5 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..04083f7b85 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..83e1d97013 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..260c7e4b26 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..8d20cf032c 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..bc5a78a24c 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..3741b0116d 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-no-extra-space-when-cropPosition-end-and-text-is-not-truncated-1-firefox-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-no-extra-space-when-cropPosition-end-and-text-is-not-truncated-1-firefox-linux.png index ac2265951f..6b403a069c 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-no-extra-space-when-cropPosition-end-and-text-is-not-truncated-1-firefox-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-no-extra-space-when-cropPosition-end-and-text-is-not-truncated-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-no-extra-space-when-cropPosition-end-and-text-is-not-truncated-1-webkit-linux.png b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-no-extra-space-when-cropPosition-end-and-text-is-not-truncated-1-webkit-linux.png index 4ffd14bf6a..60d231ec7f 100644 Binary files a/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-no-extra-space-when-cropPosition-end-and-text-is-not-truncated-1-webkit-linux.png and b/semcore/base-components/__tests__/ellipsis.browser-test.tsx-snapshots/-visual-Verify-no-extra-space-when-cropPosition-end-and-text-is-not-truncated-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..7e1340d448 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..437bb54a27 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..c55204a295 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..62825d86b8 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..1e96381fe0 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..7a56b130b9 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..5f2647d023 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..0f4fba90c8 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..baa9743e8f 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..5b91736837 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..a9a98accc0 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..6dfd282949 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..4fd63dd7b5 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..28b46c1916 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..4524c378ee 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..701140b963 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..c0fb1babdd 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..42242b1d7e 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..148fe48495 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..9bf9822e5a 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..cc42c31578 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..c6c6dcdc69 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..51f117318d 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..2948164250 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..eeb3195078 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..90f28e3005 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..596067f746 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..4ee9e3a16f 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..44e62d7b6e 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..952644af26 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..4f23abcafa 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..10845dd887 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..f91ad4d31d 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..9ce0805767 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..f5f5b67943 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..6b8036efbf 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..e7480f9ebf 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..b8cd5c55f8 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..53b1bb620a 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..d6f9b54c42 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..e34106f710 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..46a92a2ad2 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..9774abdf58 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..48da96da4e 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..12de0d9364 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..86bc70c0b9 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..5411c9bedb 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..a7ae5cbdd2 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..c68b2ecd7e 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..2d782135e6 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..ee26f0d71a 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..e36d8b50a5 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..d19d8de99f 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..53b1e27bfe 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..ef2c2ce8c6 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..377a1741a6 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..1af6837472 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..1c5a31f001 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..345751e654 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..f11ca457fb 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..8be372fcbe 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..7fede07f02 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-keyboard-scroll-1-chromium-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-keyboard-scroll-1-chromium-linux.png index 29a7fdabea..e86aa7a0ea 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-keyboard-scroll-1-chromium-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-keyboard-scroll-1-chromium-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-keyboard-scroll-1-firefox-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-keyboard-scroll-1-firefox-linux.png index 65bc7f7602..7836ebf1da 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-keyboard-scroll-1-firefox-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-keyboard-scroll-1-firefox-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-keyboard-scroll-1-webkit-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-keyboard-scroll-1-webkit-linux.png index 776835a2e2..fce250fe13 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-keyboard-scroll-1-webkit-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-keyboard-scroll-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-mouse-scroll-1-chromium-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-mouse-scroll-1-chromium-linux.png index b4d1f4c46a..252718d5b7 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-mouse-scroll-1-chromium-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-mouse-scroll-1-chromium-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..1a30ecde1a 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-base-example-mouse-scroll-1-webkit-linux.png b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-mouse-scroll-1-webkit-linux.png index 19d07adac8..4a4cd4d0c4 100644 Binary files a/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-mouse-scroll-1-webkit-linux.png and b/semcore/base-components/__tests__/scroll-area.browser-test.tsx-snapshots/-visual-Verify-base-example-mouse-scroll-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-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..d79dcbc21a 100644 --- a/semcore/base-components/src/components/hint/style/hint.shadow.css +++ b/semcore/base-components/src/components/hint/style/hint.shadow.css @@ -8,13 +8,13 @@ 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%); + line-height: var(--intergalactic-lh-100, 1.3334); box-shadow: var(--intergalactic-box-shadow-popper, 1px 1px 10px 0px oklch(0.176 0.033 175.7 / 0.07)); animation-fill-mode: both; 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..a5ae8db598 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..09c0a6e7f4 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..b171a99dd4 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..1c8ca0d91f 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..1a95c993ba 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..1063906d8a 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..f5ce05dd06 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..305b0bdf5d 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..9cc1d9ad32 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..b7441bf58d 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..965b8ed3b7 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..04251f9b7b 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..40f6d7f985 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..6f056373c5 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..a893cbdc4f 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..d518b10384 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..108df01cfc 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..d499fea9fb 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..66c006526e 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..db52219c01 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..952da47846 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..0e9c5b4dcb 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..5b7d8e7d78 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..9c634295c4 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..29622906a0 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..29fd0f427d 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..3aa7384d32 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..b2b53a0510 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..902e81bef2 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..1b5db9c3f4 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..ab31cdeafa 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..899ea88b7b 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..5464b8c797 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..68b20fd180 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..1bad1837ab 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..cce78a1f23 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..1479c75274 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..c927bf261a 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..0b066565d1 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..c61f34d8e4 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..781d023bc5 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..a3bb4b44b3 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..b0bf738e0c 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..a049ab7f28 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..d33b37cdec 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..a939b8d66f 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..8eb4c30cb1 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..5509289dc4 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..681ea5708a 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..0cc316defd 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..9f8f237d97 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..b771597bd9 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..ca3e48cd27 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..6e81a7b742 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..59c2b84269 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..53cba3aa5b 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..23eb825446 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..0d46081a3b 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..ed06b0530b 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..7eb6df27dc 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..2f417be10d 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..3a67daeb9a 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..daf8437619 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..02cabdf21b 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..f9d2cb7cab 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..f66125db21 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..2622c69c71 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..b7441bf58d 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..965b8ed3b7 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..f394f44b2e 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..b284c0bf64 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..54b8d5d7a1 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..f651d9048e 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..9ceba59533 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..a893cbdc4f 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..d518b10384 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..ff5bb04ca7 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..9b132cd69e 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..9571997233 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..6a6c20f31e 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..5ffbdbbba3 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..b622f8714f 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..b92a2c8be0 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..d49c29da0b 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..a03461c910 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..c6097eb49a 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..9f7b7c1681 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..1e7a4adca7 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..22b10c4e7e 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..af385c9330 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..27e3b371a2 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..d13eb0cd33 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..d9519e5285 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..de93b1f05c 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..29622906a0 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..29fd0f427d 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..3aa7384d32 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..c72b6c6772 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..77558e2d1a 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..2b7e503332 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..42dcbcd62d 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..ef2efbfb9e 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..dce0f9c4ee 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..912b6f9c52 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..4b4d3dc594 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..d142f55f23 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..7570ccf7be 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..0f461d9ba0 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..979b053995 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..490710a7c6 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..08d6d2f71b 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..07b415f09b 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..8f29e2e4ca 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..cd467d3f82 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..f4d1b7cdba 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..fdfb87ad32 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..b8533dde2a 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..10ced73f11 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..cce78a1f23 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..1479c75274 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..7b663f64ff 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..eecf58d833 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..7cabfd108a 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..d4dff7c0fc 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..d0387ffef0 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..be32a86b72 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..f4df2e0d17 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..1aad44a556 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..3fd126413a 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..8a1d3f89f1 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..b83f24a0b3 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..6ac6f62ffb 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..d8bb90fe0e 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..78387d35cd 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..c6838d4f7f 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..3fd396422a 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..d729950b66 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..d0fb078659 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..a042c82d2d 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..5509289dc4 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..681ea5708a 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..11500cc4a3 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..082cc83b1d 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..749b18ac99 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..ce6a9672bb 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..ba76a4680d 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..38c3e28ff7 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..23a7e11a07 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..cb02c3046c 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..dee51ada8a 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..dad0fc8361 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..5fe68600eb 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..fafeffab15 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..b848e17ef3 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..eb0b377619 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..634c1c8db8 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..11589d3620 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..359d370008 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..db1b222665 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..c4a7991685 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..d3c42e3729 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..38b0a47358 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..9c2e966316 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..50516076f6 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..478bcf05ee 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..cdae161754 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..7188c83c70 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..5995ea479b 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..3c56cb9ffe 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..52f5a0c907 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..d7241e72d5 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..5a188f2b71 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..2120f97096 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..eadb0c858b 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..33c0dffe2f 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..4a38bb6a07 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..bc787e543f 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..2257d3f579 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..c970364d9d 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..ae654af17e 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..7857cad89b 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..927c3603b0 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..7f349737d6 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..a41b5342d8 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..d3b067b7f8 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..7873561556 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..f70ec92c52 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..0897aeebbb 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..8b638a9a9c 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..1e9414358a 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..a2d1f6e900 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..a603366948 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..362cb204ab 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..4cb6e4fc3a 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..dd5e1f4b58 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..3e7aec4dcf 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..29b9bf37d5 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..5ea77fe888 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..a64ff0db0a 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..29bdf97842 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..df8554907c 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..bc4fee5b89 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..87ab6cc04d 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..72c714054d 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..f547faf71a 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..4eb54f4734 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..48a9112586 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..179df84754 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..9f8518d04e 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..94c2fab137 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..e261b67fff 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..fb5e16d7a7 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..360de8ea26 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..bb7db132b4 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..170cd28ba1 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..58d955d590 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..29921c5e5a 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..3eb17f84c1 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..4cbc14f2ad 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..c60c4d01d7 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..14f68b4867 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..07da7b1089 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..5f8cdf31fd 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..ae5871c454 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..3b18fbd4a7 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..97ffaf0023 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..9020f785c9 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..fac3935a2c 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..c3178da6d7 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..fa1f6dd96a 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..2b3f1b9e6d 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..32996ae5f3 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..03d42e229e 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..54d98fefaa 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..e580ca25b8 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..5f8a581655 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..c0a6a0ea3f 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..88bf1aa34e 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..2e7250d0a2 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..525bc48b72 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..6b0399997e 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..fa750aa904 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..ca86135ee7 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..3847afdcf6 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..bd2744642e 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..043dfc346f 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..c98453f772 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..d9ce6f1422 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..36938cc2d5 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..4ccab47f6c 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..9aa6c39fa8 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..3dd7289e87 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..22b5be7d1c 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..42cecb4051 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..68d2655118 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..fa968ba1ea 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..d50f0485d3 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..a8d17afc4d 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..a3ed1445f4 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..4fd8ea5f55 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..e06dc185b6 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..69dd6d1161 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..8b029ef4b9 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..0d99eda479 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..6c99806b40 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..88f385a291 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..a1fb7e9e35 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..b9b747f001 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..e57bf46d0d 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..dbefae4102 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..0a36fdc737 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..7232ac7690 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..5bebd2edf4 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..f0f75698fd 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..4d15b41006 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..c39029fe64 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..1f4eb7e2e4 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..8fc78d6c60 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..3c83d3aad3 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..94a40acaf9 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..accc70f0fc 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..7aec6c8ec1 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..8aaae6e72a 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..601c396540 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..89bd29da08 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..f5014e36ec 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..3a5c05e9fd 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..1eb82127ea 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..56e0c94cf6 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..2ddd6d48d0 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..5d5d9715b8 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..636e15c9e3 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..2278826691 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..d1ab57485b 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..e4ae6adc4a 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..3465659a3d 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..a43fdc3ff1 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..a7eea5cb22 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..3c26220537 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..a4ad574da8 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..7113634327 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..bacb13fd32 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..3efdd35e85 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..ec8d42e1ce 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..d3af39d17f 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..07f93dbe55 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..6dfffe1035 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..4682f32881 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..6050421600 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..c7c8b14475 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..6b3324fa88 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..d54e88d63d 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..ba9202c574 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..0d1f3feb84 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..374fbf2529 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..b615980196 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..629414dd76 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..b8eea3979a 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..e4f5205358 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..7f6dd0fc81 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..031b2e8122 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..3ede9589d5 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..ccb5546474 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..5e30a06538 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..94d07b306e 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..deace1e4e7 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..2dfe7e926b 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..8bdebefefe 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..97358d7ac1 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..d53866cf1b 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..222d03f3b5 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..1b1a58559c 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..1d42484f7c 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..be00ee6e68 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..e312c67838 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..531adb9274 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..b09e627e39 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..38000b890f 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..c3ff687231 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..80b7e087b4 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..ed4e62f265 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..02e0f4bb67 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..46f67f9f36 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..3ba8701781 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..05fa7de961 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..88fe8d3f4d 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..68515f9d4e 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..de906bbf0a 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..97e57e3df6 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..4d30500f3a 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..b177890a8b 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..d35825dc0a 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..74249b0146 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..9d62a5939f 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..b499fc375b 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..2595053e4e 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..7a098d9b4d 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..091e8bb6bc 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..3b02b58c98 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..478ba48b56 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..b1a1883457 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..5f38c64ce2 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..eac268cb00 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..f165ffce23 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..ef69dca3e0 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..06eb8c4b91 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..36c3743099 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..ef92d25b24 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..df60cf7843 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..8431fb8e8c 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..2c66cb5090 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..b5b65a34ac 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..daa29f0b01 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..d1f6b06ebc 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..491336af2f 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..5907b0787e 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..a348d1f765 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..35817c6b87 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..6c20663ad5 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..3eb644c1eb 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..0c9178d92b 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..3d516857d2 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..472aa55162 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..ae9e3c52d4 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..b2abcd8f31 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..b6a0a11344 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..c134e17bd7 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..92427d8103 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..dc6e1f8d49 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..35b3ba4e12 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..e5b6361f41 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..5851f1c02a 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..d8d41dfef4 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..dbf89ddc01 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..f5696fe6d7 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..99449b27e0 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..459e560aaa 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..a327cc871c 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..4035c6df91 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..aa452d4af2 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..9f1f0ba124 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..8a2abd9bd4 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..0956165cca 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..1f9f2cfaac 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..2de1a92b43 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..6e654e8c16 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..7adeb2fac5 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..bf6a58a093 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..7625a86cf0 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..e052f4495f 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..6f48645e8c 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..0795b47cd2 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..965387f9bf 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..42794521c4 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..ac8674b056 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..1525e7a6c3 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..babc203753 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..c9daf4249a 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..9457afb255 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..c5721d1900 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..a3cd5cf653 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..ee906ed751 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, 1.4286); } 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, 1.5); } SBaseTrigger[neighborLocation='right'] { @@ -160,7 +133,7 @@ SBaseTrigger[neighborLocation='left'] { } SText[display-placeholder] { - color: var(--intergalactic-text-placeholder, oklch(0.098 0.023 157.4 / 0.457)); + color: var(--intergalactic-text-placeholder, oklch(0.109 0.023 165.5 / 0.337)); } SBaseTrigger[state='valid'] { @@ -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..58625fee1b 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'); @@ -32,8 +32,6 @@ test.describe(`${TAG.VISUAL}`, () => { cursor: 'default', }; - const expectedSeparatorMargin = '8px'; - await test.step('Verify active item style', async () => { const lastItemStyles = await lastItem.evaluate((el) => { const styles = getComputedStyle(el); @@ -74,14 +72,6 @@ test.describe(`${TAG.VISUAL}`, () => { await expect(page).toHaveScreenshot(); }); - await test.step('Verify separator styles', async () => { - for (const icon of await chevronIcons.all()) { - const marginLeft = await icon.evaluate( - (el) => getComputedStyle(el.parentElement!).marginLeft, - ); - expect(marginLeft).toBe(expectedSeparatorMargin); - } - }); }); const variables = [ @@ -116,7 +106,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-chromium-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-1-chromium-linux.png index 513489474c..3638ded020 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-1-chromium-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-1-chromium-linux.png differ 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..9e52996600 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-1-webkit-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-1-webkit-linux.png index 495d1d2517..df0042a1cb 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-1-webkit-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-1-webkit-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-chromium-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-2-chromium-linux.png index 34c32552b1..f04ed372a5 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-2-chromium-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-2-chromium-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..cd8ad7b393 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-false-2-webkit-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-2-webkit-linux.png index 97bbc36222..3bc9a82630 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-2-webkit-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-false-2-webkit-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-chromium-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-true-1-chromium-linux.png index 521579781f..5270a79fb6 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-true-1-chromium-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-true-1-chromium-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..1e12a5a840 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-base-truncation-and-last-item-is-active-true-1-webkit-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-true-1-webkit-linux.png index e254a4342a..ad333b763d 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-true-1-webkit-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-base-truncation-and-last-item-is-active-true-1-webkit-linux.png differ diff --git a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-custom-styles-and-separator-1-chromium-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-custom-styles-and-separator-1-chromium-linux.png index 0098c632c2..384c64b15d 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-custom-styles-and-separator-1-chromium-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-custom-styles-and-separator-1-chromium-linux.png differ diff --git a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-custom-styles-and-separator-1-firefox-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-custom-styles-and-separator-1-firefox-linux.png index cab7393bdc..2fed124a58 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-custom-styles-and-separator-1-firefox-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-custom-styles-and-separator-1-firefox-linux.png differ diff --git a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-custom-styles-and-separator-1-webkit-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-custom-styles-and-separator-1-webkit-linux.png index e5d47cdf7d..b6f60566a5 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-custom-styles-and-separator-1-webkit-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-custom-styles-and-separator-1-webkit-linux.png differ diff --git a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-end-1-chromium-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-end-1-chromium-linux.png index 14796f868c..4ca814a26d 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-end-1-chromium-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-end-1-chromium-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..ce28302b28 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-end-1-webkit-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-end-1-webkit-linux.png index 4a8c42b6ea..e67c896adf 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-end-1-webkit-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-end-1-webkit-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-chromium-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-middle-and-last-item-is-active-false-1-chromium-linux.png index 9a4c06ed08..6e81fc3a5a 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-chromium-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-chromium-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..0e69368936 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-false-1-webkit-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-middle-and-last-item-is-active-false-1-webkit-linux.png index 2c8dee4baf..2a6dcd9586 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-webkit-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-webkit-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-chromium-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-middle-and-last-item-is-active-true-1-chromium-linux.png index 8e7827cd5e..2583c84193 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-chromium-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-chromium-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..2cff7756a6 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/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-middle-and-last-item-is-active-true-1-webkit-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-the-middle-and-last-item-is-active-true-1-webkit-linux.png index d33e8fc73f..1e996efca2 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-webkit-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-webkit-linux.png differ diff --git a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-links-and-icons-styles-1-chromium-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-links-and-icons-styles-1-chromium-linux.png index e24137377b..c6a81d5228 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-links-and-icons-styles-1-chromium-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-links-and-icons-styles-1-chromium-linux.png differ diff --git a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-links-and-icons-styles-1-firefox-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-links-and-icons-styles-1-firefox-linux.png index c14c6fb485..c08609614a 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-links-and-icons-styles-1-firefox-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-links-and-icons-styles-1-firefox-linux.png differ diff --git a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-links-and-icons-styles-1-webkit-linux.png b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-links-and-icons-styles-1-webkit-linux.png index da7966116b..5f07153b7f 100644 Binary files a/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-links-and-icons-styles-1-webkit-linux.png and b/semcore/breadcrumbs/__tests__/breadcrumbs.browser-test.tsx-snapshots/-visual-Verify-links-and-icons-styles-1-webkit-linux.png differ diff --git a/semcore/breadcrumbs/src/style/breadcrumbs.shadow.css b/semcore/breadcrumbs/src/style/breadcrumbs.shadow.css index b852876975..fe86f45b0c 100644 --- a/semcore/breadcrumbs/src/style/breadcrumbs.shadow.css +++ b/semcore/breadcrumbs/src/style/breadcrumbs.shadow.css @@ -3,14 +3,14 @@ SBreadcrumbs { align-items: center; padding: 0; margin: 0; + gap: var(--intergalactic-spacing-content-gap-large, 8px); SListContainer { display: contents; list-style: none; 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 { @@ -30,8 +30,8 @@ SBreadcrumbs { display: block; position: relative; 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)); + line-height: var(--intergalactic-lh-200, 1.4286); + color: var(--intergalactic-text-secondary, oklch(0.097 0.023 156.5 / 0.468)); text-decoration: none; cursor: pointer; 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-chromium-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-chromium-linux.png index af88400a6e..445b0e5e4d 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-chromium-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-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-60e08-Rows-2-maxRows-10-maxLines-10-autoFocus-false-3-firefox-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-firefox-linux.png index e1b97b5468..dc7a7a20c9 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-firefox-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-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-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..0abb1a7dd4 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..4c75cab165 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-6b87c-Rows-2-maxRows-10-maxLines-10-autoFocus-false-2-firefox-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-firefox-linux.png index 8f6bc1bf00..dc13ecf058 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-firefox-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-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-6b87c-Rows-2-maxRows-10-maxLines-10-autoFocus-false-2-webkit-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-webkit-linux.png index 9239ed04d3..6ea598eae2 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-webkit-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-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-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..d75c2e3a79 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..04680db036 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..725a29dfa5 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..42e80787da 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..fa8e56afcb 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..d9814c9917 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..3d6515da76 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..bee9331c0d 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..87b850c037 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..cbbf3e8401 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..e688352cff 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..67f5280145 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..1f4246a362 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..d9814c9917 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..3d6515da76 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..0d62dc1c8c 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..0e017ee157 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..7d00c994a2 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..f96f25b2ea 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..21e93e8432 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..f71aec1431 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..d49c56fdab 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..17d6409141 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..8b49b3992c 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..be59ef4933 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..09614904d8 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..4e5f61c1de 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..4a1315ac17 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..2df1f79099 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..10b646391a 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..81cda68a4e 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..4b0e9e93a4 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..3427aff96a 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..2f60bdf97c 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..5c1a1e5ef6 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..2f60bdf97c 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..5c1a1e5ef6 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..770d86d004 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..3c2db8873e 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..848ed82442 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..5085ce22eb 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..9b8ed622d9 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..e41e1ef2f5 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..bd4e8a666e 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..4e34aa79a7 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..13cc7f0cb3 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..210e489dfd 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..4cb968f01e 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..431a4beca2 100644 --- a/semcore/bulk-textarea/src/components/InputField/inputField.shadow.css +++ b/semcore/bulk-textarea/src/components/InputField/inputField.shadow.css @@ -20,16 +20,17 @@ SInputField>ol { &:empty::before { content: '1. ' attr(data-placeholder); - color: var(--intergalactic-text-placeholder, oklch(0.098 0.023 157.4 / 0.457)); + color: var(--intergalactic-text-placeholder, oklch(0.109 0.023 165.5 / 0.337)); 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; @@ -47,8 +48,8 @@ SInputField>ol { display: inline-block; text-align: right; - color: var(--intergalactic-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); - margin-right: var(--intergalactic-spacing-1x, 4px); + color: var(--intergalactic-text-secondary, oklch(0.097 0.023 156.5 / 0.468)); + margin-right: var(--intergalactic-spacing-content-gap-small, 4px); font-variant-numeric: normal; font-weight: 300; } @@ -113,36 +114,36 @@ 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%); + line-height: var(--intergalactic-lh-200, 1.4286); min-height: calc(var(--minRows) * 20px); /* (maxRowsLength - 1 * (rowsHeight + marginBottom)) + lastRowHeight */ 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%); + line-height: var(--intergalactic-lh-300, 1.5); min-height: calc(var(--minRows) * 24px); 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..10682cf329 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..acb67bb547 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..33256dc446 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..5cb912e7ea 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..3cdd8ae91b 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..6ff05cb43e 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..cf8b01ec22 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..2775cac97b 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..7456567826 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..a23d78cc5c 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..db58df632a 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..082271214d 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-active-with-success-and-addons-1-chromium-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-active-with-success-and-addons-1-chromium-linux.png index b223e7f6ac..1f36771d68 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-active-with-success-and-addons-1-chromium-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-active-with-success-and-addons-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-active-with-success-and-addons-1-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-active-with-success-and-addons-1-firefox-linux.png index 93079556b2..85bdc3de9d 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-active-with-success-and-addons-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-active-with-success-and-addons-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-active-with-success-and-addons-1-webkit-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-active-with-success-and-addons-1-webkit-linux.png index 0bd88b13ac..7a510864d9 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-active-with-success-and-addons-1-webkit-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-disabled-active-with-success-and-addons-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..d8516dd6b0 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..54b8bc0576 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..640e401e67 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..23e2d4800b 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..4d8d25391e 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..0f8b2cc290 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..e750805241 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..ffc75ad59c 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..947bd334b7 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..748674ac54 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..b253939f89 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..48664636d7 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..9f2b9ab6d4 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..af18a79164 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..09de7e6978 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..2f0c09f060 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..78edb89abd 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..d9379b3495 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..5180ca9ce1 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..d229120a92 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..73b9006ead 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..f3bbe97554 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..1181f226ff 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..9bf760ddc9 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..044b2ce196 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..432ae2a0f4 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..1594862734 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..d168cd74dc 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..935f6e50c6 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..d7dd5a8fe3 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..a211ca46af 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..88d17f3a2b 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..f2927b4081 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..b9809beff3 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..19a9d14f0c 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..348ed580f8 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..8456dc8310 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..17d43e865d 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..2a449b5ff9 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..dbb5f4ec23 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..a1ba3a7cf0 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..cf3b5baf7d 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..1427a831e0 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..de727e8ab5 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..162b104ad0 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..f9773894dd 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..10c4dc5617 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..4f0563f877 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..677faf6b85 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..72742e6304 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..f2a96fbcc5 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..806d98e7a8 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..8295b7f44e 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..e147acb854 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..6229cba161 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..1b51460cf0 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..3da6def90f 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..5f4535fcb6 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..87d6aa1a31 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..21e4881eb2 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..6e931b39b4 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..d157aa5b7e 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..3e29024b7f 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..3515294be4 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..e8fac64653 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..3610fabb5f 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..2487974ed1 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..c17c757944 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..66bd690d4e 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..c48e065d72 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..f8f90e299a 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..12e305c641 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..a550633d5d 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..63810704d3 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..09b35081c2 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..7360de750e 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..e4015b20e7 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..b266db496d 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..0bfbb9ecd9 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..9c75ef6c89 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..cbe71223a4 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..a9cd96e36e 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..e19fddf94c 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..70b05c749b 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..07ff5597ab 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..29dec86781 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..db4fef19b7 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..6e8bb3c658 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..a723cd7fdd 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..96d928e50b 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..7121a10000 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..cf93a4a58d 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..d1cc3bb886 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..689cc00032 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..420cf22c39 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..fab18e9ae8 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..2b44e292a8 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..93d2bf2ca7 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..5aaf368bb2 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..99777f38a4 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..dad725659d 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..c2796f603b 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..a29a51995f 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..5956f8c621 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..310b19372b 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..99bddb345f 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..2b926921f5 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..679c1e0700 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..bd4ef8445c 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..24ad99b04c 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..0dd641939b 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..b56edafa8e 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..4f082047ef 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..717f1067f1 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..d492668103 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..70a53bc26a 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..e9d119d351 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..c2bd4cf81e 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..97d0b1af28 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..bf02128042 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..c82c6c4577 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..d6a836b3fe 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..d08283cc1d 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..f1dfc185c9 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..bd0df5d930 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..42a74b8c9d 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..1c29d1ef18 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..efa6212403 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..26dfc7c862 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..3b25ec20c5 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..04bcfd792e 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..4cecc297bb 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..b6b5c8b9f8 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..7383852e92 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..8738e1506f 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..68cefc2fd2 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..02fd9412e9 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..c80a35b6e4 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..00a647de31 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..b17fbf9cf6 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..a4ee226878 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..4de8a55378 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..1b621e04e7 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..c5982ecf8d 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..b29d21590b 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..457758d2f3 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..5974489b9d 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..b80d805bf5 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..43b1022fae 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..b36c9928ed 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..4b9c04e84c 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..4bac64477c 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..4178d44477 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..e717f78260 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..989e11e773 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..f83cc06757 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..0c0fe5873f 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..2b838fb076 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..8dd9e2ce6e 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..f6dc663d45 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..20d925b0ae 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..b4aceb7b43 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..c97192dd7c 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..c6dbb726d7 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..d7f7648f2d 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..b7e535c90b 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..795c0cca3a 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..a100c676e4 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..4af9d2b40e 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..0e73a0e5c3 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..adc5a36553 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..15cc592a5b 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..7d52bc4dde 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..f843df439c 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..878acb64db 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..368843497e 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..ebab605230 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..29b606677d 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..fb2d19e1e6 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..2b23cab2cb 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..45c564c90f 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..b5f33236f5 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..2d74ac2ddc 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..f06c013254 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..13025d64db 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..c9c477ebdd 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..3acd216a72 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..1e051a125f 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..9f7f1fb13f 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..e6cab752a0 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..b09846f170 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..9f88f7e173 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..67b2ba8790 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..1138ea3044 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..d5b69e503c 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..1cef7435cb 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..a3a4e7117c 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..65e877a9fb 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..66003a5b39 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..0955846795 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..bac336c216 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..f5fe0a9e93 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..2dff40a932 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..684adaa6f0 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..48e5666195 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..da206b9c1c 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..c1c7a967fa 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..a0b926de7f 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..64bb512a40 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..6c6b8152a8 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..b88eed85af 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..b2a8d7fac1 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..a8791c5cc8 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..8684331307 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..37e1532bc1 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..1d02c318f7 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..0c292c58e8 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..0196fc5bbb 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..4216a8082c 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..00957ae3cb 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..d189c905a7 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..fa6b035041 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..5a1b11c9f3 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..f70f7d7f82 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..29cb449cdf 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..ee2c5675c1 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..13f3d275ca 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..187f4addd3 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..02f01f2353 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..6823d91250 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..f5f800794b 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..df57fe9471 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..c52a36f5fc 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..51535536d8 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..e49c96bae4 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..7cc40f27ae 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..9c137be527 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..92c0eba9c4 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..a3e92c1bf0 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..a2c5ef7aca 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..63ab753ab9 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..bb808380be 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..8aa0e77396 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..223adb2fc0 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..331f35c3ac 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..8b303a977d 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..6e15fb4fc1 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..f99594507a 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..1dc041a1a8 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..c1a738cc6f 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..83b78973b2 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..2f82217c38 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..7a17ff51ec 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..896aa30302 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..f3204dd007 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..f8a3b491dc 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..9f83a1aaa3 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..f451cc3a6e 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..cf9d9c8ee7 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..86ef97947f 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..9d63a3987f 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..17445e25f9 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..54e03a9d1c 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..89f150546e 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..e68e3b2c8d 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..1cd7cab1ac 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..f2d11a71a5 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..7e311e6bd0 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..015d428ad8 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..b862adfbc4 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..5afb7e40b2 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..6c3bc5ca4c 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..41d56e7626 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..3ce4ccc6f9 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..3fd69df709 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..4d3a684c5e 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..13a4bc577e 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..59e1fa6679 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..a46c9816ca 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..8753c53198 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..877475205f 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..18626d3047 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..a2a55656e9 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..5c247c7219 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..2d12881534 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..69d72df86a 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..59523e13c1 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..15eae5249d 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..6e2741b4bb 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..b37b761313 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..badbce314d 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..1d7ec320e1 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..1e0212ebad 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..f57ca2bf72 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..d75e4dc183 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..23b20f07e0 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..76b854b894 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..8551549b32 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..cff1803ff6 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..14652ee233 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..d07cbd0514 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..6e91950d42 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..4f4caf532f 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..07025271c4 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..c31cc58138 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..a023b34a44 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..6ac17120ab 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..920e8bc8e2 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..a0a16244d0 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..edc354bf73 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..75dfeccc6d 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..ddffd16c75 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..7066f05fa0 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..f0782e7cbc 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..7ff3f6331a 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..a90041a81b 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..a40fc67abb 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..2198eb3299 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..a9c82b5c33 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..067dbfd635 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..e85b693d5d 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..0aeef9c9d1 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..4fa0be9b50 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..39faa59446 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..36903c07b0 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..ec66ccdca2 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..4be05b47b1 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..ef7a292583 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..9c84b3db2a 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..ca8003e19a 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..a4b5106f30 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..1ee88c8290 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..a3318b202c 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..bee2ea421a 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..ebeadcf05c 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..971cb80207 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..9c84b3db2a 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..ca8003e19a 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..12a5518057 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..183a14d003 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..a7dfeca8de 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..6a20948494 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..d51bc49c0a 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..4b4d693f6d 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..92f8a7f963 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..dfa89d59c1 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..66a409cc94 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..d607ace772 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..2a92819e82 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..fb0ff15a5e 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..d58360b207 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..9a9dd7739f 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..9e998b3e9e 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..5182dcf921 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..428089310e 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..5df0b26528 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..4b4d43de5e 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..2c56494bbe 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..fd80ddc02f 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..75119bda2b 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..b253843fd6 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..53b71fe834 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..d675299ba4 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..0036531443 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..a738fe5cde 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..f0a40528c0 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..6dae003522 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..566248a13b 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..d035b1f16e 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..3eb43c58b1 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..be4d8eb514 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..0a768d95fd 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..047ced978b 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..4f997ac2f6 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..b253843fd6 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..53b71fe834 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..83891db982 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..832528555d 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..2ad2517240 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..1280d39b2d 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..996d8bc2d1 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..fad9dc0aaa 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..2b27fe36e2 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..e18136f983 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..cb61df065e 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..d06878a201 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..f02975043b 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.097 0.023 156.5 / 0.468)); 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.097 0.023 156.5 / 0.468)); 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); - line-height: var(--intergalactic-lh-200, 142%); + margin-left: var(--intergalactic-spacing-content-gap-medium, 6px); + margin-right: var(--intergalactic-spacing-content-gap-medium, 6px); + line-height: var(--intergalactic-lh-200, 1.4286); + + &: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); - line-height: var(--intergalactic-lh-300, 150%); + margin-left: var(--intergalactic-spacing-content-gap-medium, 6px); + margin-right: var(--intergalactic-spacing-content-gap-medium, 6px); + line-height: var(--intergalactic-lh-300, 1.5); &: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.type.ts b/semcore/button/src/component/ButtonLink/ButtonLink.type.ts index 6a7048ef72..3d23b035be 100644 --- a/semcore/button/src/component/ButtonLink/ButtonLink.type.ts +++ b/semcore/button/src/component/ButtonLink/ButtonLink.type.ts @@ -6,7 +6,7 @@ import type { NSText } from '@semcore/typography'; import type { NSButton } from '../Button/Button.type'; declare namespace NSButtonLink { - type Props = Intergalactic.InternalTypings.EfficientOmit & { + type Props = Intergalactic.InternalTypings.EfficientOmit & { /** * Button link type * @default primary diff --git a/semcore/button/src/component/ButtonLink/buttonLink.shadow.css b/semcore/button/src/component/ButtonLink/buttonLink.shadow.css index 37e85010d8..bc09952fb2 100644 --- a/semcore/button/src/component/ButtonLink/buttonLink.shadow.css +++ b/semcore/button/src/component/ButtonLink/buttonLink.shadow.css @@ -3,27 +3,39 @@ 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; + } } } SButtonLink[use='secondary']:not([color]) { - color: var(--intergalactic-text-hint, oklch(0.088 0.026 147.7 / 0.583)); + color: var(--intergalactic-text-hint, oklch(0.097 0.023 156.5 / 0.468)); &[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..2cb780a112 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..ec06cd9b9e 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..ac422fc0c9 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..7cbd9a01e0 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..4718704681 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..169b0e5159 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..dce6f52ff2 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..9c198d62ca 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..3f0ed39348 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..e5de0c7504 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..7e0b795bc3 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..f7c705bca7 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..6fbadf6bcf 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..6fb5c61f81 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..3e69dcf744 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..8b597971ef 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..0688acd96e 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..4825b589ec 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..72b8edee59 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..8633ca876e 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..a475e842b8 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..597204846c 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..bed21e22b2 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..85aa12bd66 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..51042267c6 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..4bebce6dba 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..24aa6d29a4 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..043861c64a 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..f1fabf40a9 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..41237d5676 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..350544cf6b 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..99541b6152 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..6196adf836 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..4d27f6f87b 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..34648f1078 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..51afa906a6 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..2e2e437ac6 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..092f96dd2a 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..af3eb391cb 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..af39447a95 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..9ad779c274 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..3651a93096 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)); + line-height: var(--intergalactic-lh-200, 1.4286); + color: var(--intergalactic-text-secondary, oklch(0.097 0.023 156.5 / 0.468)); } 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 b/semcore/carousel/__tests__/carousel.browser-test.tsx index acfea58cec..f4d23f5ef8 100644 --- a/semcore/carousel/__tests__/carousel.browser-test.tsx +++ b/semcore/carousel/__tests__/carousel.browser-test.tsx @@ -55,13 +55,29 @@ test.describe(`${TAG.VISUAL} `, () => { await test.step('Verify Prev and Next buttons Focus and Hover styles', async () => { await page.keyboard.press('Tab'); 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'; + }); await locators.button(page, 'Next slide').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 expect(page.locator('[data-ui-name="Hint"]')).toHaveCount(2); await expect(page).toHaveScreenshot(); }); await test.step('Verify Carousel area focus', async () => { await page.keyboard.press('Tab'); + // Prev button loses focus and hides its Hint, the hovered Next slide Hint stays. + // Wait for that settled state, otherwise the fading out Hint leaks into the snapshot. + await expect(page.locator('[data-ui-name="Hint"]')).toHaveCount(1); + await page.waitForFunction(() => { + const els = document.querySelectorAll('[data-ui-name="Hint"]'); + return els.length === 1 && getComputedStyle(els[0]).opacity === '1'; + }); await expect(page).toHaveScreenshot(); }); @@ -85,8 +101,16 @@ test.describe(`${TAG.VISUAL} `, () => { await expect(page).toHaveScreenshot(); await page.keyboard.press('Tab'); 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'; + }); await locators.button(page, 'Next slide').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 expect(page).toHaveScreenshot(); }); @@ -566,10 +590,12 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { `, }); - // Wait for styles to apply - await page.waitForTimeout(100); - const indicator = locators.tab(page, 0); + + // Wait for the transition to settle instead. + await expect(indicator).toHaveCSS('width', '150px'); + await expect(indicator).toHaveCSS('height', '150px'); + const box = await indicator.boundingBox(); // the size overridden 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..c5ce334374 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..d632e31b49 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..60a2b11c20 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..5956099e0f 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..57eaa491a3 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..ffc91c2862 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..abf3418fd0 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..a8c3fc73f0 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..a888641d39 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..2aa9e00b43 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..85eab1109f 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..6d16fccc9d 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..479d68eae3 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..28bcf54c47 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..8819f003e8 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..1636bead59 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..0df7be889a 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..26252e1369 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..f992e91df9 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..8043dd2c3e 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..dcc2cefe60 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..eb856eeb7f 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..409a722f1d 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..d74cc4a32e 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..de41daa90e 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..f6847983ee 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..80fac161e8 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..3e5619f21d 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..7d1e8d8344 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..9087095a8f 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..04c6ebdca4 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..e4f957c61e 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..e7c55a8a3c 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..a889ae401b 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..7f778db8a6 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..111cde5921 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..38d8729948 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..a743dbb2f7 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..325612f561 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..8b43895b5b 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..254c7cdc52 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..906e151249 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..8098809743 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..493edb59f6 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..85da933ea6 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..cd97a94b7c 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..15a1e37af6 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..3483bfa668 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..ec581497f5 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..3573a907d6 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..511c16c583 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..cae909fd85 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..44a15b7cf0 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..c0f072fc0a 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..e535bf5041 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..e4f175f9c7 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..cdd09ac563 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..a6b33c8b4b 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..a9c46d050f 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..51bd770089 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..9bc95b38cb 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..ee19ebf14a 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..0262e892c9 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..628ae618e0 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..1f61e8b135 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..51df2a1e3d 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__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-indicators-only-1-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-indicators-only-1-chromium-linux.png index a5e0b39cbb..6a24215437 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-indicators-only-1-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-indicators-only-1-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-indicators-only-1-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-indicators-only-1-firefox-linux.png index d975200ec8..6bb5d84653 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-indicators-only-1-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-indicators-only-1-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-indicators-only-1-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-indicators-only-1-webkit-linux.png index 7ff16c7fa3..6ddb35d3e2 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-indicators-only-1-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-carousel-with-indicators-only-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..230372536b 100644 --- a/semcore/carousel/src/style/carousel.shadow.css +++ b/semcore/carousel/src/style/carousel.shadow.css @@ -15,7 +15,7 @@ SModalBox, SIndicator { position: relative; overflow: hidden; - border-radius: var(--intergalactic-surface-rounded, 8px); + border-radius: var(--intergalactic-carousel-item-rounded, 14px); } SContentBox:has(SItem:focus-visible)::after { @@ -29,7 +29,7 @@ SContentBox:has(SItem:focus-visible)::after { SImageBoxContainer { position: relative; - border-radius: var(--intergalactic-surface-rounded, 8px); + border-radius: var(--intergalactic-carousel-item-preview-rounded, 14px); &:has(SItem:focus-visible)::after { border-radius: inherit; @@ -56,7 +56,7 @@ SItem { max-width: 100%; box-sizing: border-box; transform: var(--transform); - border-radius: var(--intergalactic-surface-rounded, 8px); + border-radius: var(--intergalactic-carousel-item-rounded, 14px); overflow: hidden; outline: none; @@ -76,38 +76,60 @@ SItem[zoomOut] { SIndicators { display: flex; justify-content: center; - margin: var(--intergalactic-spacing-4x, 16px) 4px 4px 4px; + margin: var(--intergalactic-spacing-content-gap-xxlarge, 16px) var(--intergalactic-spacing-content-gap-small, 4px) var(--intergalactic-spacing-content-gap-small, 4px) var(--intergalactic-spacing-content-gap-small, 4px); outline: none; position: relative; + border-radius: var(--intergalactic-rounded-extra-small, 2px); } SIndicator { - margin: 0 calc(0.5 * var(--intergalactic-spacing-3x, 12px)); + margin: 0 calc(0.5 * var(--intergalactic-spacing-content-gap-xlarge, 12px)); cursor: pointer; display: block; + flex-shrink: 0; width: 12px; height: 12px; - background-color: var(--intergalactic-icon-secondary-neutral, oklch(0.104 0.023 162.3 / 0.385)); - opacity: var(--intergalactic-disabled-opacity, 0.4); + background-color: var(--intergalactic-control-carousel-indicator, oklch(0.23 0.01 140)); + border-radius: var(--intergalactic-carousel-indicator-rounded, 8px); + opacity: 0.25; object-fit: cover; - transition: ease-in-out opacity 0.1s; + transition: + width calc(var(--intergalactic-duration-control, 200) * 1ms) var(--intergalactic-easings-medium, cubic-bezier(0.5, 0, 0, 1.09)), + opacity calc(var(--intergalactic-duration-control, 200) * 1ms) var(--intergalactic-easings-medium, cubic-bezier(0.5, 0, 0, 1.09)), + background-color calc(var(--intergalactic-duration-control, 200) * 1ms) var(--intergalactic-easings-medium, cubic-bezier(0.5, 0, 0, 1.09)); + + &:hover { + opacity: 0.5; + } + + &[active] { + width: 24px; + background-color: var(--intergalactic-control-carousel-indicator-active, oklch(0.23 0.01 140)); + opacity: 1; + } } SIndicator[aria-roledescription="slide"] { width: 100px; height: 100px; -} - -SIndicator:hover { - opacity: calc(2 * var(--intergalactic-disabled-opacity, 0.4)); -} -SIndicator[active] { - opacity: 1; + &[active] { + width: 100px; + } } SIndicator[inverted] { - background-color: var(--intergalactic-icon-primary-invert, oklch(0.998 0.003 173.3 / 0.808)); + background-color: var(--intergalactic-control-carousel-indicator-invert, oklch(1 0 0)); + opacity: 0.5; + + &:hover { + opacity: 0.75; + } + + &[active] { + background-color: var(--intergalactic-control-carousel-indicator-active, oklch(0.23 0.01 140)); + opacity: 1; + } } SPrev, @@ -120,17 +142,17 @@ SNext { SPrevButton span:has(> svg:only-child), SNextButton span:has(> svg:only-child) { - margin-left: calc(2 * var(--intergalactic-spacing-1x, 4px) - 1px); - margin-right: calc(2 * var(--intergalactic-spacing-1x, 4px) - 1px); + margin-left: calc(2 * var(--intergalactic-spacing-content-gap-small, 4px) - 1px); + margin-right: calc(2 * var(--intergalactic-spacing-content-gap-small, 4px) - 1px); } } SPrev { - margin-right: var(--intergalactic-spacing-2x, 8px); + margin-right: var(--intergalactic-spacing-content-gap-large, 8px); } SNext { - margin-left: var(--intergalactic-spacing-2x, 8px); + margin-left: var(--intergalactic-spacing-content-gap-large, 8px); } SPrev[disabled], @@ -144,4 +166,8 @@ SNext[disabled] { SContainer { transition: none; } + + SIndicator { + transition: none; + } } 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..5f5c330265 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..979249c0b4 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..d6501ccc63 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..3a0aa203ee 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..b61c1ac353 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..dde1f0bb34 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-56b21-isabled-true-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-56b21-isabled-true-checked-true-indeterminate-false-1-chromium-linux.png index 4495f9e1f3..3507bab4bf 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-56b21-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-invalid-theme-unde-56b21-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-invalid-theme-unde-56b21-isabled-true-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-56b21-isabled-true-checked-true-indeterminate-false-1-firefox-linux.png index aa165b51cb..50eea081ac 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-56b21-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-invalid-theme-unde-56b21-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-invalid-theme-unde-56b21-isabled-true-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-56b21-isabled-true-checked-true-indeterminate-false-1-webkit-linux.png index f740b80e40..7a79ea7fa4 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-56b21-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-invalid-theme-unde-56b21-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-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..efa1616223 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..c51e41a01e 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..327e99f874 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..b2b2d8e341 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-firefox-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-firefox-linux.png index a48cde8ee2..df268659d6 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-firefox-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-firefox-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..00aeff8015 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-invalid-theme-unde-e22e5-isabled-true-checked-false-indeterminate-true-1-chromium-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-e22e5-isabled-true-checked-false-indeterminate-true-1-chromium-linux.png index 586ec502af..c3d25a01e1 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-e22e5-isabled-true-checked-false-indeterminate-true-1-chromium-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-e22e5-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-l-state-invalid-theme-unde-e22e5-isabled-true-checked-false-indeterminate-true-1-firefox-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-e22e5-isabled-true-checked-false-indeterminate-true-1-firefox-linux.png index d5f448c7b2..6ba9521e90 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-e22e5-isabled-true-checked-false-indeterminate-true-1-firefox-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-e22e5-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-l-state-invalid-theme-unde-e22e5-isabled-true-checked-false-indeterminate-true-1-webkit-linux.png b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-e22e5-isabled-true-checked-false-indeterminate-true-1-webkit-linux.png index 9aa1b25e20..94021d642d 100644 Binary files a/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-e22e5-isabled-true-checked-false-indeterminate-true-1-webkit-linux.png and b/semcore/checkbox/__tests__/checkbox.browser-test.tsx-snapshots/-visual-Verify-size-l-state-invalid-theme-unde-e22e5-isabled-true-checked-false-indeterminate-true-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..b1620d6926 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-pink--943a1-abled-false-checked-false-indeterminate-false-1-firefox-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-firefox-linux.png index d2ccba9a0d..ad64751a2a 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-firefox-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-firefox-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-webkit-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-webkit-linux.png index 3283aa3214..a0c2ca4bbb 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-webkit-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-webkit-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..bd6ce4b738 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-91171-abled-false-checked-false-indeterminate-false-1-firefox-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-firefox-linux.png index 84e1232e78..842ae74e61 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-firefox-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-firefox-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-webkit-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-webkit-linux.png index 02766ca239..08a55b30c9 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-webkit-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-webkit-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..e6c90647cf 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..97dbcb3294 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..7657fa61fe 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..1a1c0fd8ba 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..46f6bf7272 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..b1620d6926 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-db120-abled-false-checked-false-indeterminate-false-1-firefox-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-firefox-linux.png index d2ccba9a0d..ad64751a2a 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-firefox-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-firefox-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-webkit-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-webkit-linux.png index 3283aa3214..a0c2ca4bbb 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-webkit-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-webkit-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..a3c448cdd3 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..b55dbfaebb 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-l-state-normal-theme-undef-e9f72-sabled-false-checked-false-indeterminate-true-1-webkit-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-webkit-linux.png index a9cdf2a17d..4d8c6b16ab 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-webkit-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-webkit-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..1ba418a60f 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..ba2e995de9 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..c375eeb52c 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..0abf394cdb 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..1443faa4b6 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..cc160b9db5 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..e0567949e8 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..43faf8506f 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..d4a3d6ed7b 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..1ad2e71905 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..a1766c1b9f 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..370c111998 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..b3b4a7c22c 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..17e13f8263 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..2ee238fd5f 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..e14a2ea642 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..d9acf56ee2 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..5ee9144559 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..fa0821d7a7 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..32c15607c4 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..4ec8a0c685 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..b126629f9b 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..51e755956b 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..2783e6ccdc 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..e0567949e8 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..43faf8506f 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..d4a3d6ed7b 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..fef53c9b1a 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..47b5653ffd 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..f4905ad233 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..be89f82cb9 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,55 +68,50 @@ 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=")); } } SText[size='l'] { font-size: var(--intergalactic-fs-300, 16px); - line-height: var(--intergalactic-lh-300, 150%); + line-height: var(--intergalactic-lh-300, 1.5); } SText[size='m'] { font-size: var(--intergalactic-fs-200, 14px); - line-height: var(--intergalactic-lh-200, 142%); + line-height: var(--intergalactic-lh-200, 1.4286); } - 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__/__snapshots__/index.test.tsx.snap b/semcore/color-picker/__tests__/__snapshots__/index.test.tsx.snap index 0fa2b75789..f84f68b37e 100644 --- a/semcore/color-picker/__tests__/__snapshots__/index.test.tsx.snap +++ b/semcore/color-picker/__tests__/__snapshots__/index.test.tsx.snap @@ -97,80 +97,70 @@ exports[`ColorPicker > Verify data-ui-name 1`] = ` "children": [], "uiName": "Box", }, + { + "children": [], + "uiName": null, + }, { "children": [ { "children": [], - "uiName": null, + "uiName": "PaletteManager.InputColor", }, { "children": [ { "children": [ - { - "children": [], - "uiName": "PaletteManager.InputColor", - }, { "children": [ { "children": [ { - "children": [ - { - "children": [ - { - "children": [], - "uiName": null, - }, - ], - "uiName": "Check", - }, - ], - "uiName": "ButtonLink.Addon", + "children": [], + "uiName": null, }, ], - "uiName": "Input.Addon.InnerWrapper", + "uiName": "Check", }, ], - "uiName": "Input.Addon", + "uiName": "ButtonLink.Addon", }, + ], + "uiName": "Input.Addon.InnerWrapper", + }, + ], + "uiName": "Input.Addon", + }, + { + "children": [ + { + "children": [ { "children": [ { "children": [ { - "children": [ - { - "children": [ - { - "children": [], - "uiName": null, - }, - ], - "uiName": "Close", - }, - ], - "uiName": "ButtonLink.Addon", + "children": [], + "uiName": null, }, ], - "uiName": "Input.Addon.InnerWrapper", + "uiName": "Close", }, ], - "uiName": "Input.Addon", - }, - { - "children": [], - "uiName": null, + "uiName": "ButtonLink.Addon", }, ], - "uiName": "Input", + "uiName": "Input.Addon.InnerWrapper", }, ], + "uiName": "Input.Addon", + }, + { + "children": [], "uiName": null, }, ], - "uiName": null, + "uiName": "Input", }, ], "uiName": "Box", diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx b/semcore/color-picker/__tests__/color-picker.browser-test.tsx index c02348f9ba..e71987237c 100644 --- a/semcore/color-picker/__tests__/color-picker.browser-test.tsx +++ b/semcore/color-picker/__tests__/color-picker.browser-test.tsx @@ -75,7 +75,7 @@ test.describe(`${TAG.VISUAL} `, () => { await page.keyboard.press('Tab'); await page.keyboard.press('Tab'); await page.keyboard.press('Tab'); - await page.getByText('#fdc23c').waitFor({ state: 'visible' }); + await page.getByText('--yellow-200').waitFor({ state: 'visible' }); await expect(page).toHaveScreenshot(); }); @@ -129,8 +129,8 @@ test.describe(`${TAG.VISUAL} `, () => { const triggerBox = await triggerCircle.boundingBox(); expect(triggerBox).not.toBeNull(); if (triggerBox) { - expect(triggerBox.width).toBe(18); - expect(triggerBox.height).toBe(18); + expect(triggerBox.width).toBe(22); + expect(triggerBox.height).toBe(22); } }); @@ -156,29 +156,11 @@ test.describe(`${TAG.VISUAL} `, () => { const count = await locators.color(page).count(); for (let i = 0; i < count; i++) { const item = locators.color(page, i); - await expect(item).toHaveCSS('width', '26px'); - await expect(item).toHaveCSS('height', '26px'); + await expect(item).toHaveCSS('width', '32px'); + await expect(item).toHaveCSS('height', '32px'); } }); - await test.step('Verify divider styles', async () => { - const dividerStyles = await getComputedStyles(locators.divider(page), [ - 'marginTop', - 'marginBottom', - ]); - expect(dividerStyles.marginTop).toBe('12px'); - expect(dividerStyles.marginBottom).toBe('12px'); - }); - - await test.step('Verify input styles', async () => { - const wrapperStyles = await getComputedStyles(page.locator('[data-ui-name="Input"]'), [ - 'width', - 'marginLeft', - ]); - expect(wrapperStyles.width).toBe('135px'); - expect(wrapperStyles.marginLeft).toBe('4px'); - }); - await test.step('Verify add color styles', async () => { await expect(locators.addColor(page)).toHaveAttribute('aria-hidden', 'true'); await expect(locators.addColor(page)).toBeHidden(); @@ -230,8 +212,8 @@ test.describe(`${TAG.VISUAL} `, () => { const paletteBox = await locators.paletteItem(page).boundingBox(); expect(paletteBox).not.toBeNull(); if (paletteBox) { - expect(paletteBox.width).toBe(28); - expect(paletteBox.height).toBe(28); + expect(paletteBox.width).toBe(32); + expect(paletteBox.height).toBe(32); } const paletteIcon = locators.paletteItem(page).locator('svg'); @@ -270,7 +252,7 @@ test.describe(`${TAG.VISUAL} `, () => { await test.step('Verify hover on text color ', async () => { const items = locators.dialog(page, 1).getByRole('option'); await items.nth(1).hover(); - await page.getByText('#008ff8').waitFor({ state: 'visible' }); + await page.getByText('--blue-400').waitFor({ state: 'visible' }); await expect(page).toHaveScreenshot(); }); @@ -502,7 +484,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { await locators.trigger(page, 0).click(); await locators.color(page, 4).click(); await locators.color(page, 0).waitFor({ state: 'visible' }); - await expect(locators.trigger(page, 0)).toHaveAttribute('aria-label', 'Color field, current color is #fdc23c'); + await expect(locators.trigger(page, 0)).toHaveAttribute('aria-label', 'Color field, current color is --yellow-200'); await locators.trigger(page, 0).click(); await locators.color(page, 0).click(); @@ -563,7 +545,7 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { await expect(locators.trigger(page)).toHaveAttribute( 'aria-label', - 'Color field, current color is #fdc23c', + 'Color field, current color is --yellow-200', ); await page.keyboard.press('Space'); 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..b4d3ce2237 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..49baf8c21b 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..f5ae844d76 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..769d62dc87 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..41a60fa963 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..9e02b070c7 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..8848058205 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..68418172eb 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..35f53d33af 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..2d1006f2fd 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-1-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-1-firefox-linux.png index 57f0eb04e7..0f45eaa2ab 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-1-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-1-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-1-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-1-webkit-linux.png index 501b9989bc..3d6f5c502e 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-1-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-1-webkit-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..4158e2c4e2 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..1de43833aa 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..34cf387ecc 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..c62e0a27e2 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..cb9b04062f 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..401b565501 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..0f1899cf08 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..86d7b624c2 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..c4ead08a76 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..ea66a42104 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..0ba9dfc4f6 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..aef1f3be6d 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..7ff8c62ad0 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..cb9b04062f 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..c81f14be80 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..a075600612 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..3d5c5930f4 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..b147d35320 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..39e1c3e2b5 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..1141392de6 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..18a494bc02 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..239c00a0a9 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..2b87a8e188 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..fed5563be0 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..eb74ff6f80 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..e131279d30 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..a803150ba3 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..1b1c1606b3 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..cc2ddccd02 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..7e34928992 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/ColorPicker.tsx b/semcore/color-picker/src/ColorPicker.tsx index 2a32d80e61..31972c96d1 100644 --- a/semcore/color-picker/src/ColorPicker.tsx +++ b/semcore/color-picker/src/ColorPicker.tsx @@ -15,17 +15,17 @@ import { localizedMessages } from './translations/__intergalactic-dynamic-locale const defaultColors = [ null, - '#008ff8', // --blue-400 - '#00c192', // --green-300 - '#c695ff', // --violet-300 - '#fdc23c', // --yellow-200 - '#ff8786', // --red-300 - '#8ecdff', // --blue-200 - '#f67cf2', // --pink-300 - '#66c030', // --salad-300 - '#006dca', // --blue-500 - '#59ddaa', // --green-200 - '#ab6cfe', // --violet-400 + '--blue-400', + '--green-300', + '--violet-300', + '--yellow-200', + '--red-300', + '--blue-200', + '--pink-300', + '--salad-300', + '--blue-500', + '--green-200', + '--violet-400', ]; class ColorPickerRoot extends Component< @@ -158,11 +158,13 @@ const DefaultTrigger = React.forwardRef(function ( const { styles, value } = props; const SDefaultTrigger = Root; const STriggerCircle = Flex; + const SChevronDownM = ChevronDownM; + const dataValue = value?.startsWith('--') ? `var(${value})` : value; return sstyled(styles)( - - + + , ); }); diff --git a/semcore/color-picker/src/PaletteManager.tsx b/semcore/color-picker/src/PaletteManager.tsx index b79eb9f93a..07c2296fc8 100644 --- a/semcore/color-picker/src/PaletteManager.tsx +++ b/semcore/color-picker/src/PaletteManager.tsx @@ -117,7 +117,7 @@ class PaletteManagerRoot extends Component< return sstyled(styles)( <> - + {Children.origin ? ( @@ -242,52 +242,48 @@ class InputColor extends Component< return sstyled(styles)( - - - - - - - - - - + + + + + + , ); } diff --git a/semcore/color-picker/src/components/Item.tsx b/semcore/color-picker/src/components/Item.tsx index a05bdb98b6..cbd2800510 100644 --- a/semcore/color-picker/src/components/Item.tsx +++ b/semcore/color-picker/src/components/Item.tsx @@ -42,14 +42,14 @@ export default function Item(props: ItemAsProps) { } }, []); + const colorValue = value?.startsWith('--') ? `var(${value})` : value; + return sstyled(styles)( <> - {displayLabel && A} + {displayLabel && A} {editable && ( <> diff --git a/semcore/color-picker/src/style/color-picker.shadow.css b/semcore/color-picker/src/style/color-picker.shadow.css index 02932ae50e..f981d0e96e 100644 --- a/semcore/color-picker/src/style/color-picker.shadow.css +++ b/semcore/color-picker/src/style/color-picker.shadow.css @@ -1,6 +1,10 @@ SColorPickerPopper { - max-width: calc(var(--intergalactic-spacing-4x, 16px) * 2 + 28px * 6 + 4px * 6); - padding: var(--intergalactic-spacing-4x, 16px); + max-width: calc(var(--intergalactic-form-control-m, 32px) * 6 + var(--intergalactic-spacing-content-gap-xsmall, 2px) * 5 + var(--intergalactic-spacing-content-padding-large, 16px) * 2 + 2px); + padding: var(--intergalactic-spacing-content-padding-large, 16px); + display: inline-flex; + flex-direction: column; + align-items: flex-start; + gap: var(--intergalactic-spacing-content-gap-xlarge, 12px); } SItemContainer { @@ -8,15 +12,16 @@ SItemContainer { display: flex; align-items: center; justify-content: center; - width: 26px; - height: 26px; + width: var(--intergalactic-form-control-m, 32px); + height: var(--intergalactic-form-control-m, 32px); border-radius: 50%; border: 1px solid transparent; outline-color: transparent; cursor: pointer; + box-sizing: border-box; &:hover { - border: 1px solid var(--intergalactic-border-secondary, oklch(0.176 0.033 175.7 / 0.07)); + border: 1px solid var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); } &::after { @@ -25,7 +30,6 @@ SItemContainer { width: 22px; height: 22px; border-radius: 50%; - box-shadow: inset 0px 0px 1px var(--intergalactic-border-secondary, oklch(0.176 0.033 175.7 / 0.07)); background: var(--value); } } @@ -47,7 +51,8 @@ SItemContainer[displayLabel] { SItemContainer:not([value]) { &::after { - border: 0.9px solid var(--intergalactic-border-secondary, oklch(0.176 0.033 175.7 / 0.07)); + border: 1px solid var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); + opacity: 1; } &::before { @@ -58,7 +63,7 @@ SItemContainer:not([value]) { transform: translate(-50%, -50%) rotate(45deg); width: 1px; height: 22px; - background: var(--intergalactic-border-secondary, oklch(0.176 0.033 175.7 / 0.07)); + background: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); z-index: 0; } } @@ -67,38 +72,34 @@ SColorsContainer, SColors { display: flex; flex-wrap: wrap; align-items: center; - gap: var(--intergalactic-spacing-1x, 4px); -} + gap: var(--intergalactic-spacing-content-gap-xsmall, 2px); -SPaletteManager { - display: flex; - align-items: center; - justify-content: space-between; - margin-top: var(--intergalactic-spacing-3x, 12px); - /* disable-tokens-validator */ - margin-left: calc(var(--intergalactic-spacing-1x, 4px) - 1px); + &:empty { + display: none; + } } -SInputContainer { +SPaletteManager { display: flex; align-items: center; + gap: var(--intergalactic-spacing-content-gap-medium, 6px); } 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)); } } @@ -107,6 +108,7 @@ SDefaultTrigger { align-items: center; outline-color: transparent; cursor: pointer; + gap: var(--intergalactic-spacing-content-gap-medium, 6px); border: 0; background: transparent; padding: 0; @@ -114,17 +116,16 @@ SDefaultTrigger { STriggerCircle { position: relative; - width: 16px; - height: 16px; - /* disable-tokens-validator */ - margin-right: calc(var(--intergalactic-spacing-1x, 4px) + 1px); + width: 20px; + height: 20px; border-radius: 50%; background-color: var(--data-value); border: 1px solid transparent; + box-sizing: content-box; } STriggerCircle:not([data-value]) { - border: 1px solid var(--intergalactic-border-secondary, oklch(0.176 0.033 175.7 / 0.07)); + border: 1px solid var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); &::before { content: ''; @@ -133,12 +134,15 @@ STriggerCircle:not([data-value]) { left: 50%; transform: translate(-50%, -50%) rotate(45deg); width: 1px; - height: 16px; - background: #E0E1E9; - z-index: 1; + height: 20px; + background: var(--intergalactic-border-primary, oklch(0.137 0.026 175.7 / 0.161)); } } +SChevronDownM { + fill: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)) +} + SCloseIcon { position: absolute; top: 0px; @@ -163,11 +167,14 @@ SLabel { } SItemColor { - width: 20px; - height: 20px; + width: 22px; + height: 22px; border-radius: 50%; border: 1px solid var(--intergalactic-border-secondary, oklch(0.176 0.033 175.7 / 0.07)); background: var(--data-value); + box-sizing: border-box; + margin: 5px; + flex-shrink: 0; } SConfirmColor[hidden], 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..f85a357641 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..69c568e00f 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..d857219beb 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..049f684538 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..2e7fdca307 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..189d940c09 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..51e7c9c34c 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..8249a5e68a 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..26c4c954e3 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..5f036f4078 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..c450d90027 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..e686528820 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..3188d20497 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..7d99c2b717 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..3a42fe6d3d 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..a68b09f354 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..73c07d0f99 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..c3f45b544e 100644 --- a/semcore/counter/src/style/counter.shadow.css +++ b/semcore/counter/src/style/counter.shadow.css @@ -9,7 +9,7 @@ SCounter { border-radius: var(--intergalactic-counter-rounded, 12px); font-weight: var(--intergalactic-medium, 500); - color: var(--intergalactic-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); + color: var(--intergalactic-text-secondary, oklch(0.097 0.023 156.5 / 0.468)); background-color: 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)); } @@ -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-Inverted-axis-inversion-no-tooltip-1-chromium-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Inverted-axis-inversion-no-tooltip-1-chromium-linux.png index d2ffba707b..c7bf0fb5c1 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Inverted-axis-inversion-no-tooltip-1-chromium-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Inverted-axis-inversion-no-tooltip-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Inverted-axis-inversion-no-tooltip-1-firefox-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Inverted-axis-inversion-no-tooltip-1-firefox-linux.png index edc505a211..e15155c322 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Inverted-axis-inversion-no-tooltip-1-firefox-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Inverted-axis-inversion-no-tooltip-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Inverted-axis-inversion-no-tooltip-1-webkit-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Inverted-axis-inversion-no-tooltip-1-webkit-linux.png index e12f749c0b..caa8ccaaf6 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Inverted-axis-inversion-no-tooltip-1-webkit-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-Inverted-axis-inversion-no-tooltip-1-webkit-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-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..32afdc9c59 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..87af08b3d2 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..d54dab6201 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..141671ba0f 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..94934fccc7 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..86002f226b 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-rendering-with-dots-and-hover-1-chromium-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-rendering-with-dots-and-hover-1-chromium-linux.png index b067e4daad..5a575c8b20 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-rendering-with-dots-and-hover-1-chromium-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-rendering-with-dots-and-hover-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-rendering-with-dots-and-hover-1-firefox-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-rendering-with-dots-and-hover-1-firefox-linux.png index eca13289a3..413fff5f17 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-rendering-with-dots-and-hover-1-firefox-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-rendering-with-dots-and-hover-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-rendering-with-dots-and-hover-1-webkit-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-rendering-with-dots-and-hover-1-webkit-linux.png index da0ea87030..c448e19899 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-rendering-with-dots-and-hover-1-webkit-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-area-chart-rendering-with-dots-and-hover-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 9f749f90e2..06f0c5dd83 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..e5bc0a5809 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..55a4d6160d 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..7788168858 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..7862666a54 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..c73ab6933b 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 ab908426e2..76171958f2 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-chart-with-no-data-and-single-data-1-firefox-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-chart-with-no-data-and-single-data-1-firefox-linux.png index 3535c63ee3..4bb0be3092 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-chart-with-no-data-and-single-data-1-firefox-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-chart-with-no-data-and-single-data-1-firefox-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-webkit-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-chart-with-no-data-and-single-data-1-webkit-linux.png index 3aee70af56..771867a111 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-chart-with-no-data-and-single-data-1-webkit-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-chart-with-no-data-and-single-data-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-custom-line-styles-1-chromium-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-custom-line-styles-1-chromium-linux.png index d70891a717..4211815dc6 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-custom-line-styles-1-chromium-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-custom-line-styles-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-custom-line-styles-1-firefox-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-custom-line-styles-1-firefox-linux.png index 2e23cfdbb1..46580507f4 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-custom-line-styles-1-firefox-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-custom-line-styles-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-custom-line-styles-1-webkit-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-custom-line-styles-1-webkit-linux.png index 6cd98d07f3..ae419c97f2 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-custom-line-styles-1-webkit-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-custom-line-styles-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-styles-1-chromium-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-styles-1-chromium-linux.png index 1ffad63a8a..b986b20043 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-styles-1-chromium-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-styles-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-styles-1-firefox-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-styles-1-firefox-linux.png index 5c5f91162c..fd2079c536 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-styles-1-firefox-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-styles-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-styles-1-webkit-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-styles-1-webkit-linux.png index 930c5e515d..c729f0955f 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-styles-1-webkit-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-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-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..02ea6be154 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..90df224c59 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 cdeefdb140..a7aa6da1e5 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..1b9c010af2 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..4bf9e3f002 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..a3690bfe98 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..a3a9207976 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..afecfe9772 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 4f9e3aea2e..0ad249d3aa 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..1173df9f06 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..a6dcde8aff 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..5abd31da0a 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__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-rendering-1-chromium-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-rendering-1-chromium-linux.png index 2edc3ae591..c883a51e5f 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-rendering-1-chromium-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-rendering-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-rendering-1-firefox-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-rendering-1-firefox-linux.png index 3ea7c524ab..bc4b951be8 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-rendering-1-firefox-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-rendering-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-rendering-1-webkit-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-rendering-1-webkit-linux.png index 897db717a6..f18a1741da 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-rendering-1-webkit-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-chart-rendering-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-when-part-of-the-chart-has-no-data-or-only-one-value-1-chromium-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-when-part-of-the-chart-has-no-data-or-only-one-value-1-chromium-linux.png index 253313bddc..71a19607b3 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-when-part-of-the-chart-has-no-data-or-only-one-value-1-chromium-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-when-part-of-the-chart-has-no-data-or-only-one-value-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-when-part-of-the-chart-has-no-data-or-only-one-value-1-firefox-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-when-part-of-the-chart-has-no-data-or-only-one-value-1-firefox-linux.png index 15dfc4ceaa..bc77686bcb 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-when-part-of-the-chart-has-no-data-or-only-one-value-1-firefox-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-when-part-of-the-chart-has-no-data-or-only-one-value-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-when-part-of-the-chart-has-no-data-or-only-one-value-1-webkit-linux.png b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-when-part-of-the-chart-has-no-data-or-only-one-value-1-webkit-linux.png index 4b62255e35..1479b9aca3 100644 Binary files a/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-when-part-of-the-chart-has-no-data-or-only-one-value-1-webkit-linux.png and b/semcore/d3-chart/__tests__/area-chart.browser-test.tsx-snapshots/-visual-Verify-stacked-area-when-part-of-the-chart-has-no-data-or-only-one-value-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..22a79f64ed 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..d96eee28d5 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..aa9c2a36f1 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..75dbf20e97 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..312e282efc 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 dfb26faf4d..ce64daa7b9 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..8ac545798e 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..a656ba4cfa 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..6cb6a3deee 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..e7b0c3e8ac 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..e416fd02f8 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..99e1091c49 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-Bar-props-variations-Verify-bar-props-with-size-constraints-hMin-maxBarSize-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-props-variations-Verify-bar-props-with-size-constraints-hMin-maxBarSize-1-chromium-linux.png index 368b7f492d..a1ae39a7fd 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-props-variations-Verify-bar-props-with-size-constraints-hMin-maxBarSize-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-props-variations-Verify-bar-props-with-size-constraints-hMin-maxBarSize-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-props-variations-Verify-bar-props-with-size-constraints-hMin-maxBarSize-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-props-variations-Verify-bar-props-with-size-constraints-hMin-maxBarSize-1-firefox-linux.png index 943748f386..4704b30e00 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-props-variations-Verify-bar-props-with-size-constraints-hMin-maxBarSize-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-props-variations-Verify-bar-props-with-size-constraints-hMin-maxBarSize-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-props-variations-Verify-bar-props-with-size-constraints-hMin-maxBarSize-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-props-variations-Verify-bar-props-with-size-constraints-hMin-maxBarSize-1-webkit-linux.png index 2c2ad40402..99318f37fb 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-props-variations-Verify-bar-props-with-size-constraints-hMin-maxBarSize-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Bar-props-variations-Verify-bar-props-with-size-constraints-hMin-maxBarSize-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-Inverted-horizontal-layout-no-legend-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Inverted-horizontal-layout-no-legend-1-chromium-linux.png index e2b6a82e9a..0ef07ea65e 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Inverted-horizontal-layout-no-legend-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Inverted-horizontal-layout-no-legend-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-Inverted-horizontal-layout-no-legend-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Inverted-horizontal-layout-no-legend-1-firefox-linux.png index 9f0daeb133..597e5971fd 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Inverted-horizontal-layout-no-legend-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Inverted-horizontal-layout-no-legend-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-Inverted-horizontal-layout-no-legend-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Inverted-horizontal-layout-no-legend-1-webkit-linux.png index 960af540b5..c9b0a81ab1 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Inverted-horizontal-layout-no-legend-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-chart-Inverted-horizontal-layout-no-legend-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-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..8112093579 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..0ffeb19099 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 01a1eae87a..4498afa22c 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..396a0eacf4 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..d33cbf966b 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..846c57579f 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-bar-with-scaleBand-and-scaleLinear-usage-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-with-scaleBand-and-scaleLinear-usage-1-chromium-linux.png index d5f46053fd..e19c2530b0 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-with-scaleBand-and-scaleLinear-usage-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-with-scaleBand-and-scaleLinear-usage-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-with-scaleBand-and-scaleLinear-usage-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-with-scaleBand-and-scaleLinear-usage-1-firefox-linux.png index 084a52fe15..ead0f91c8c 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-with-scaleBand-and-scaleLinear-usage-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-with-scaleBand-and-scaleLinear-usage-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-with-scaleBand-and-scaleLinear-usage-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-with-scaleBand-and-scaleLinear-usage-1-webkit-linux.png index e8fc0741c7..7bea2b9579 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-with-scaleBand-and-scaleLinear-usage-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-bar-with-scaleBand-and-scaleLinear-usage-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-date-format-in-bar-chart-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-date-format-in-bar-chart-1-chromium-linux.png index 07e739a05f..86329c88b9 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-date-format-in-bar-chart-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-date-format-in-bar-chart-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-date-format-in-bar-chart-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-date-format-in-bar-chart-1-firefox-linux.png index 0aa5900868..5ab58749c6 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-date-format-in-bar-chart-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-date-format-in-bar-chart-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-date-format-in-bar-chart-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-date-format-in-bar-chart-1-webkit-linux.png index 040a281722..e714fad692 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-date-format-in-bar-chart-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-date-format-in-bar-chart-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-negative-values-look-good-on-bar-charts-2-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-negative-values-look-good-on-bar-charts-2-chromium-linux.png index b6308a6111..5a24468ead 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-negative-values-look-good-on-bar-charts-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-negative-values-look-good-on-bar-charts-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-negative-values-look-good-on-bar-charts-2-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-negative-values-look-good-on-bar-charts-2-firefox-linux.png index 13de918aff..a10335b9da 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-negative-values-look-good-on-bar-charts-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-negative-values-look-good-on-bar-charts-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-negative-values-look-good-on-bar-charts-2-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-negative-values-look-good-on-bar-charts-2-webkit-linux.png index ce4c90fa02..0a2be6fdb3 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-negative-values-look-good-on-bar-charts-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-negative-values-look-good-on-bar-charts-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-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..4305bf7948 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..8cb7aa2ce7 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..5b843ee62d 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..2ef3f9dea1 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..76f6870c99 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..90d5a35bc1 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..2bbd7380bb 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..73e82aa3cf 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..51f9399b1a 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..93f4187cc6 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..2e2833fa0e 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..e2b002cf60 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-Basic-bar-chart-Verify-trend-line-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-line-1-chromium-linux.png index d148123cf2..695411cf8a 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-line-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-line-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-line-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-line-1-firefox-linux.png index 63395573b4..46e8b3e27f 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-line-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-line-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-line-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-line-1-webkit-linux.png index 2393f2a823..75f7d6bf7f 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-line-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Basic-bar-chart-Verify-trend-line-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-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 9482b29a22..f8789f9972 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..8d132dafce 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..47b607cf58 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 4a24ccc26f..f9a97631f0 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..f0b53eee69 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..28c99c4d91 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..188064e609 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..afbc46590c 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..a078907ac4 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..4976fd6da3 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..39ffdecc4f 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..bff09d59b6 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 07903e4165..b90c1cac9e 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..c8793f5f04 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..ae003fa3b8 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..4693b4511b 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..b42a4bffd2 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..8528408f91 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 a78f72b9fa..9e924eb875 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..a91c1099cd 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..2ba3c0d56d 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 0d83281c49..830e3ca8cb 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..96e4ccdcc5 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..dd9cd4857a 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..cbf8412486 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..abddf06b09 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..19913b430e 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..e7e4235df4 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..abb24ea1d4 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..fe924cc7e5 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-HorizontalBar-implementation-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-HorizontalBar-implementation-1-chromium-linux.png index 968cce2c20..0efc6ffd70 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-HorizontalBar-implementation-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-HorizontalBar-implementation-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-HorizontalBar-implementation-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-HorizontalBar-implementation-1-firefox-linux.png index 5dbaeb535f..0cb7f6db88 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-HorizontalBar-implementation-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-HorizontalBar-implementation-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-HorizontalBar-implementation-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-HorizontalBar-implementation-1-webkit-linux.png index 04848e41c8..a1396fdc6d 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-HorizontalBar-implementation-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-HorizontalBar-implementation-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-grouped-horizontal-bars-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-grouped-horizontal-bars-1-chromium-linux.png index c89291a3ff..85ebb896ae 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-grouped-horizontal-bars-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-grouped-horizontal-bars-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-grouped-horizontal-bars-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-grouped-horizontal-bars-1-firefox-linux.png index 28d97058e9..c91002415c 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-grouped-horizontal-bars-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-grouped-horizontal-bars-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-grouped-horizontal-bars-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-grouped-horizontal-bars-1-webkit-linux.png index 9e55ef5eb0..88e14da27e 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-grouped-horizontal-bars-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-grouped-horizontal-bars-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar--fcf63-l-styling-color-array-radius-transparency-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar--fcf63-l-styling-color-array-radius-transparency-1-chromium-linux.png index 42f8b1c367..a7403a9602 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar--fcf63-l-styling-color-array-radius-transparency-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar--fcf63-l-styling-color-array-radius-transparency-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar--fcf63-l-styling-color-array-radius-transparency-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar--fcf63-l-styling-color-array-radius-transparency-1-firefox-linux.png index 4566909449..553cb6c09c 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar--fcf63-l-styling-color-array-radius-transparency-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar--fcf63-l-styling-color-array-radius-transparency-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar--fcf63-l-styling-color-array-radius-transparency-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar--fcf63-l-styling-color-array-radius-transparency-1-webkit-linux.png index 1c6b36c4d3..d993288f05 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar--fcf63-l-styling-color-array-radius-transparency-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar--fcf63-l-styling-color-array-radius-transparency-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-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 c3864a79a3..7eb064bb2f 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 302e614551..ed43bde6f5 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 4c01f5c0fe..437b4ec61a 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 2034782091..f2cf991f73 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 a914d1ccf5..e3006cfcb3 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 2568597e48..500615644b 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 c4da2f13e9..2bb35e7f1f 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 602b866c5a..2a0b05a9d1 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 97b9e549a1..fc8e08b04b 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 9e43872413..255fcfab30 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 3588cbb931..45c69645ba 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 daad0262b9..c85344254c 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-Horizontal-bars-Verify-horizontal-bar-props-with-primaryText-false-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-primaryText-false-1-chromium-linux.png index 09ecc8c2db..641fb78216 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-primaryText-false-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-primaryText-false-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-primaryText-false-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-primaryText-false-1-firefox-linux.png index af0a875474..42c300ba98 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-primaryText-false-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-primaryText-false-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-primaryText-false-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-primaryText-false-1-webkit-linux.png index a49e70b8d2..de834476e9 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-primaryText-false-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-primaryText-false-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-size-constraints-maxBarSize-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-size-constraints-maxBarSize-1-chromium-linux.png index 42f8b1c367..a7403a9602 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-size-constraints-maxBarSize-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-size-constraints-maxBarSize-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-size-constraints-maxBarSize-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-size-constraints-maxBarSize-1-firefox-linux.png index 4566909449..553cb6c09c 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-size-constraints-maxBarSize-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-size-constraints-maxBarSize-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-size-constraints-maxBarSize-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-size-constraints-maxBarSize-1-webkit-linux.png index 1c6b36c4d3..d993288f05 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-size-constraints-maxBarSize-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-props-with-size-constraints-maxBarSize-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-background-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-background-1-chromium-linux.png index 5cd97a5e9f..3f9061b20b 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-background-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-background-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-background-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-background-1-firefox-linux.png index 96673fdd23..50a0283ee3 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-background-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-background-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-background-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-background-1-webkit-linux.png index 2381c4c08a..07ad9c47bc 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-background-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-background-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-custom-labels-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-custom-labels-1-chromium-linux.png index 515e2c1cad..6586396f36 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-custom-labels-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-custom-labels-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-custom-labels-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-custom-labels-1-firefox-linux.png index 6874012daa..496beea9bc 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-custom-labels-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-custom-labels-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-custom-labels-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-custom-labels-1-webkit-linux.png index 6631805b99..57bf22e024 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-custom-labels-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Horizontal-bars-Verify-horizontal-bar-with-custom-labels-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-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..6fa2694144 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..e283f455ae 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..23b43de80f 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..6fa2694144 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..e283f455ae 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 5f95c78885..23b43de80f 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..3b7c55d93b 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..7087d49096 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..c416b57bb6 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..ec152fab9e 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..99c4e71a29 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 759a8c8588..a2bf883b68 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-bars-Verify-stacked-grouped-bars-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-grouped-bars-1-chromium-linux.png index 5329cade0b..4569d6b4d8 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-grouped-bars-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-grouped-bars-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-grouped-bars-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-grouped-bars-1-firefox-linux.png index f4bdf7f89b..d8ab2ac585 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-grouped-bars-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-grouped-bars-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-grouped-bars-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-grouped-bars-1-webkit-linux.png index 42ed26de08..d78580122f 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-grouped-bars-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-bars-Verify-stacked-grouped-bars-1-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..eb5d2ba2ba 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..4bd2fbff99 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 d6e7848be2..8e9b7d55c5 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..b4f683ca89 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..755c590226 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 b9a25d8a9a..804b0b8d0a 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..c54f8323a9 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..068a959e71 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 99568477f2..9453ec0003 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..f9f6e32bcf 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..aec2413854 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 8757bff1fe..248c0f6950 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-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-HoverRect-tooltip-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-HoverRect-tooltip-1-chromium-linux.png index e1e8b8a213..79bafc8747 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-HoverRect-tooltip-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-HoverRect-tooltip-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-HoverRect-tooltip-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-HoverRect-tooltip-1-firefox-linux.png index 475d5d61b0..098ebeb982 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-HoverRect-tooltip-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-HoverRect-tooltip-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-HoverRect-tooltip-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-HoverRect-tooltip-1-webkit-linux.png index 6e6e3c6cb1..7963b9cf61 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-HoverRect-tooltip-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-HoverRect-tooltip-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-negative-values-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-negative-values-1-chromium-linux.png index 9d12dc2b6b..4f1b7a70ec 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-negative-values-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-negative-values-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-negative-values-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-negative-values-1-firefox-linux.png index 386fcd2169..26836be69d 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-negative-values-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-negative-values-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-negative-values-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-negative-values-1-webkit-linux.png index 31ad4fdacb..ff6d109f0e 100644 Binary files a/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-negative-values-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-chart.browser-test.tsx-snapshots/-visual-Stacked-horizontal-bars-Verify-stacked-horizontal-bar-chart-with-negative-values-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-advanced-usage-of-bar-horizontal-compact-1-chromium-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-1-chromium-linux.png index 074cb77720..9c6bb45142 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-1-firefox-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-1-firefox-linux.png index 8695f7de6c..b10b948978 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-1-webkit-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-1-webkit-linux.png index 0785b73767..306f5035ce 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-2-chromium-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-2-chromium-linux.png index aa02d6bd57..0ebd2f1197 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-2-chromium-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-2-firefox-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-2-firefox-linux.png index 0ae96607a7..22b6c0cbca 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-2-firefox-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-2-webkit-linux.png b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-2-webkit-linux.png index cd5409e13b..967b0c993d 100644 Binary files a/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-2-webkit-linux.png and b/semcore/d3-chart/__tests__/bar-horizontal-compact.browser-test.tsx-snapshots/-visual-Verify-advanced-usage-of-bar-horizontal-compact-2-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-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 184e1de19a..aef41e5e76 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 fc13e9e10d..cdb4d21754 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 ae216a30cb..d19f5528fb 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 4eb55d65f8..e418679cf2 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 f0a3d28164..38e7ea06f4 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 cbd9bb1ad7..be510923f2 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 2e484d200e..44c9d3236a 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 82d6bf8ca4..6a201b1b11 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 d130d3d9c8..4301ce0747 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 bfb812be44..a897a4dfa5 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 23276188d7..a528569d28 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 e989c41698..e35fa68063 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..b86eb46b19 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..85c8994d48 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..ad2ec4deeb 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..f475375a8c 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..e6fb551753 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..c0fced8cde 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..899f81e5b9 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..bac709d425 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..0b1895fbb1 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-bubble-chart-implementation-1-chromium-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-implementation-1-chromium-linux.png index c9c351e4b4..9bdc30cfff 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-implementation-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-implementation-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-implementation-1-webkit-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-implementation-1-webkit-linux.png index 2cb0c589e1..41f576ef89 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-implementation-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-bubble-chart-implementation-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-color-customization-1-chromium-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-color-customization-1-chromium-linux.png index d6107e9d84..7617fd9d48 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-color-customization-1-chromium-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-color-customization-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-color-customization-1-firefox-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-color-customization-1-firefox-linux.png index de6c2c5736..652058fbae 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-color-customization-1-firefox-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-color-customization-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-color-customization-1-webkit-linux.png b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-color-customization-1-webkit-linux.png index 124c9083d6..a14a86615d 100644 Binary files a/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-color-customization-1-webkit-linux.png and b/semcore/d3-chart/__tests__/bubble-chart.browser-test.tsx-snapshots/-visual-Verify-color-customization-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..df599b0bae 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..09c57b1de8 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 b1a4a31e89..8eff637a54 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..9873a27cd9 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..1e30441ab3 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..243b41822b 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 cda473d787..9465b07166 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, @@ -255,7 +255,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, @@ -273,7 +273,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, @@ -291,7 +291,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, @@ -311,7 +311,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, @@ -387,7 +387,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-state-1-chromium-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-state-1-chromium-linux.png index 6bb8586208..284fc581f4 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-state-1-chromium-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-state-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-state-1-firefox-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-state-1-firefox-linux.png index 063c50a89d..a6078f3db1 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-state-1-firefox-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-empty-state-1-firefox-linux.png differ 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..0c66cdc505 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..75b4302c28 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..e4c82e974b 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 018c762f4b..96459ea412 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 aa0de62b7d..f1cacf21ea 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 c510f7789b..f5ba05ae41 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 11682b3b86..895718af99 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 e1dcf0cae5..ad1025f366 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 2bfb7353f4..7df67f51b4 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 c30fc4381f..c09ce5eded 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 ec74a7ad19..04757d74f0 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 1aa206af75..b7a83aeb43 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..4c47c84d5d 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..a758152190 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..dd63ff851e 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-tooltip-shown-on-hover-1-chromium-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltip-shown-on-hover-1-chromium-linux.png index 4ef46d3f2d..e265ef7f1f 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltip-shown-on-hover-1-chromium-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltip-shown-on-hover-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltip-shown-on-hover-1-webkit-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltip-shown-on-hover-1-webkit-linux.png index a7e597415c..9fe67d8f48 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltip-shown-on-hover-1-webkit-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltip-shown-on-hover-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltip-shown-on-hover-2-chromium-linux.png b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltip-shown-on-hover-2-chromium-linux.png index 46fe03123b..f37d90ddb5 100644 Binary files a/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltip-shown-on-hover-2-chromium-linux.png and b/semcore/d3-chart/__tests__/cigarette-chart.browser-test.tsx-snapshots/-visual-Verify-tooltip-shown-on-hover-2-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-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..27f77a8e2b 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..43621930de 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..81274cc60c 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..077cef6c37 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..0951c482cb 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..2d740c7dba 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..03cfd82996 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..7b393d821d 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..cbff77ef4b 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..2417d1ec05 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..23998ebb0b 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..e8a21e807b 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-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-1-chromium-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-1-chromium-linux.png index 8adec428ff..9a921a14eb 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-1-chromium-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-1-firefox-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-1-firefox-linux.png index 4cd21d199e..6fa7f51241 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-1-firefox-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-1-webkit-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-1-webkit-linux.png index 2052f4f4ea..d522f290fb 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-1-webkit-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-2-chromium-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-2-chromium-linux.png index 4e0198be62..8d8efc86eb 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-2-chromium-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-2-firefox-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-2-firefox-linux.png index 56d0156301..9d36f93471 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-2-firefox-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-2-webkit-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-2-webkit-linux.png index 448ce8c7c8..21d52e1550 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-2-webkit-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Adaptive-chart-Verify-chart-looks-good-on-small-resolutions-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-1-left-top-all-minimal-1-chromium-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-1-left-top-all-minimal-1-chromium-linux.png index cf9df7cd51..3cfb2b0aea 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-1-left-top-all-minimal-1-chromium-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-1-left-top-all-minimal-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-1-left-top-all-minimal-1-firefox-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-1-left-top-all-minimal-1-firefox-linux.png index d77625758c..3ee0519f7c 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-1-left-top-all-minimal-1-firefox-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-1-left-top-all-minimal-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-1-left-top-all-minimal-1-webkit-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-1-left-top-all-minimal-1-webkit-linux.png index d8ce329777..1cda8d52a9 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-1-left-top-all-minimal-1-webkit-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-1-left-top-all-minimal-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-2-left-908cf-tiline-grid-titles-yTitle-top-xTitle-right-1-chromium-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-2-left-908cf-tiline-grid-titles-yTitle-top-xTitle-right-1-chromium-linux.png index 8c1dd9d326..938075d603 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-2-left-908cf-tiline-grid-titles-yTitle-top-xTitle-right-1-chromium-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-2-left-908cf-tiline-grid-titles-yTitle-top-xTitle-right-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-2-left-908cf-tiline-grid-titles-yTitle-top-xTitle-right-1-firefox-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-2-left-908cf-tiline-grid-titles-yTitle-top-xTitle-right-1-firefox-linux.png index 7d130b9e76..d0e27babb7 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-2-left-908cf-tiline-grid-titles-yTitle-top-xTitle-right-1-firefox-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-2-left-908cf-tiline-grid-titles-yTitle-top-xTitle-right-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-2-left-908cf-tiline-grid-titles-yTitle-top-xTitle-right-1-webkit-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-2-left-908cf-tiline-grid-titles-yTitle-top-xTitle-right-1-webkit-linux.png index 962578a22d..ff7fcb463f 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-2-left-908cf-tiline-grid-titles-yTitle-top-xTitle-right-1-webkit-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-2-left-908cf-tiline-grid-titles-yTitle-top-xTitle-right-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-3-left-bottom-grid-titles-yTitle-right-xTitle-bottom-1-chromium-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-3-left-bottom-grid-titles-yTitle-right-xTitle-bottom-1-chromium-linux.png index 270d43b666..f8fc9e99cd 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-3-left-bottom-grid-titles-yTitle-right-xTitle-bottom-1-chromium-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-3-left-bottom-grid-titles-yTitle-right-xTitle-bottom-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-3-left-bottom-grid-titles-yTitle-right-xTitle-bottom-1-firefox-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-3-left-bottom-grid-titles-yTitle-right-xTitle-bottom-1-firefox-linux.png index a3e1e4f0db..1c9b0bc6c3 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-3-left-bottom-grid-titles-yTitle-right-xTitle-bottom-1-firefox-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-3-left-bottom-grid-titles-yTitle-right-xTitle-bottom-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-3-left-bottom-grid-titles-yTitle-right-xTitle-bottom-1-webkit-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-3-left-bottom-grid-titles-yTitle-right-xTitle-bottom-1-webkit-linux.png index 8c4f0dde02..65cd724abf 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-3-left-bottom-grid-titles-yTitle-right-xTitle-bottom-1-webkit-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-3-left-bottom-grid-titles-yTitle-right-xTitle-bottom-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-4-left-41dee-multiline-titles-yTitle-bottom-xTitle-left-1-chromium-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-4-left-41dee-multiline-titles-yTitle-bottom-xTitle-left-1-chromium-linux.png index 3fbeed9c73..44e42d000a 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-4-left-41dee-multiline-titles-yTitle-bottom-xTitle-left-1-chromium-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-4-left-41dee-multiline-titles-yTitle-bottom-xTitle-left-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-4-left-41dee-multiline-titles-yTitle-bottom-xTitle-left-1-firefox-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-4-left-41dee-multiline-titles-yTitle-bottom-xTitle-left-1-firefox-linux.png index 9afd9be4aa..942575af5a 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-4-left-41dee-multiline-titles-yTitle-bottom-xTitle-left-1-firefox-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-4-left-41dee-multiline-titles-yTitle-bottom-xTitle-left-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-4-left-41dee-multiline-titles-yTitle-bottom-xTitle-left-1-webkit-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-4-left-41dee-multiline-titles-yTitle-bottom-xTitle-left-1-webkit-linux.png index 1620001eff..385f011cf9 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-4-left-41dee-multiline-titles-yTitle-bottom-xTitle-left-1-webkit-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-4-left-41dee-multiline-titles-yTitle-bottom-xTitle-left-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-5-right-top-grid-titles-yTitle-left-xTitle-top-1-chromium-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-5-right-top-grid-titles-yTitle-left-xTitle-top-1-chromium-linux.png index a40be87a65..07bbd512f1 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-5-right-top-grid-titles-yTitle-left-xTitle-top-1-chromium-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-5-right-top-grid-titles-yTitle-left-xTitle-top-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-5-right-top-grid-titles-yTitle-left-xTitle-top-1-firefox-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-5-right-top-grid-titles-yTitle-left-xTitle-top-1-firefox-linux.png index 9328bd6ef8..e855d88eac 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-5-right-top-grid-titles-yTitle-left-xTitle-top-1-firefox-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-5-right-top-grid-titles-yTitle-left-xTitle-top-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-5-right-top-grid-titles-yTitle-left-xTitle-top-1-webkit-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-5-right-top-grid-titles-yTitle-left-xTitle-top-1-webkit-linux.png index d3e85eae5e..8be3574290 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-5-right-top-grid-titles-yTitle-left-xTitle-top-1-webkit-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-5-right-top-grid-titles-yTitle-left-xTitle-top-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-8-righ-53a3f-ks-0-50-100-suffix-xCategories-Jan-Apr-1-chromium-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-8-righ-53a3f-ks-0-50-100-suffix-xCategories-Jan-Apr-1-chromium-linux.png index c559a38c9e..585f9775e5 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-8-righ-53a3f-ks-0-50-100-suffix-xCategories-Jan-Apr-1-chromium-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-8-righ-53a3f-ks-0-50-100-suffix-xCategories-Jan-Apr-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-8-righ-53a3f-ks-0-50-100-suffix-xCategories-Jan-Apr-1-firefox-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-8-righ-53a3f-ks-0-50-100-suffix-xCategories-Jan-Apr-1-firefox-linux.png index d41a91335a..4933503ae6 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-8-righ-53a3f-ks-0-50-100-suffix-xCategories-Jan-Apr-1-firefox-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-8-righ-53a3f-ks-0-50-100-suffix-xCategories-Jan-Apr-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-8-righ-53a3f-ks-0-50-100-suffix-xCategories-Jan-Apr-1-webkit-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-8-righ-53a3f-ks-0-50-100-suffix-xCategories-Jan-Apr-1-webkit-linux.png index 1513c7663e..a215b5b518 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-8-righ-53a3f-ks-0-50-100-suffix-xCategories-Jan-Apr-1-webkit-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-pairwise-8-righ-53a3f-ks-0-50-100-suffix-xCategories-Jan-Apr-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-vertical-writing-mode-primaryText-ticks-on-both-axes-1-chromium-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-vertical-writing-mode-primaryText-ticks-on-both-axes-1-chromium-linux.png index 0d60fd2b77..fef98beb83 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-vertical-writing-mode-primaryText-ticks-on-both-axes-1-chromium-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-vertical-writing-mode-primaryText-ticks-on-both-axes-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-vertical-writing-mode-primaryText-ticks-on-both-axes-1-firefox-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-vertical-writing-mode-primaryText-ticks-on-both-axes-1-firefox-linux.png index 5a72bd3a49..02ff1b709a 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-vertical-writing-mode-primaryText-ticks-on-both-axes-1-firefox-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-vertical-writing-mode-primaryText-ticks-on-both-axes-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-vertical-writing-mode-primaryText-ticks-on-both-axes-1-webkit-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-vertical-writing-mode-primaryText-ticks-on-both-axes-1-webkit-linux.png index 4a34750530..32f1954d00 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-vertical-writing-mode-primaryText-ticks-on-both-axes-1-webkit-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Axes-and-Grids-Verify-vertical-writing-mode-primaryText-ticks-on-both-axes-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-custom-shape-as-leged-item-1-chromium-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-custom-shape-as-leged-item-1-chromium-linux.png index d243659876..24297ddbc7 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-custom-shape-as-leged-item-1-chromium-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-custom-shape-as-leged-item-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-custom-shape-as-leged-item-1-firefox-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-custom-shape-as-leged-item-1-firefox-linux.png index 31da2abf3e..63c047d8af 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-custom-shape-as-leged-item-1-firefox-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-custom-shape-as-leged-item-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-custom-shape-as-leged-item-1-webkit-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-custom-shape-as-leged-item-1-webkit-linux.png index 18e5d87133..884db58027 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-custom-shape-as-leged-item-1-webkit-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-custom-shape-as-leged-item-1-webkit-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-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..6d234e9201 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..a642b2e55d 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..2885633e21 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..dba3a019d9 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..ba83f22489 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..dbf393b035 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-L-Circle-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-Circle-shape-1-chromium-linux.png index c103be18b4..511e043cf8 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Circle-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-Circle-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-Circle-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-Circle-shape-1-firefox-linux.png index 09eb1ddf06..2d1d65807b 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Circle-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-Circle-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-Circle-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-Circle-shape-1-webkit-linux.png index 5b57841b68..6170b4912f 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Circle-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-Circle-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-L-Line-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-Line-shape-1-chromium-linux.png index 53726c25e5..bd7cba2594 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Line-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-Line-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-Line-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-Line-shape-1-firefox-linux.png index 3a514d2619..71a08245e7 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Line-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-Line-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-Line-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-Line-shape-1-webkit-linux.png index 69fcb84e1a..52706983f2 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Line-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-Line-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-L-Pattern-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-Pattern-shape-1-chromium-linux.png index f7822ebc96..f9322a7968 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Pattern-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-Pattern-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-Pattern-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-Pattern-shape-1-firefox-linux.png index fad8a62711..b8eefa900b 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Pattern-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-Pattern-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-Pattern-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-Pattern-shape-1-webkit-linux.png index 8c00a111d5..4bcaaf31e7 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Pattern-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-Pattern-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-L-Square-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-Square-shape-1-chromium-linux.png index 700fc03f05..e5aa86acfa 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Square-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-Square-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-Square-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-Square-shape-1-firefox-linux.png index 99230229e6..c2caf34017 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Square-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-Square-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-Square-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-Square-shape-1-webkit-linux.png index a2244cef80..646acfd13a 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-L-Square-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-Square-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..0751d53d08 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..60488efa78 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..03cdbc6709 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-Chart-legend-Verify-legend-with-size-M-Circle-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-Circle-shape-1-chromium-linux.png index bf1098e584..12827020b9 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Circle-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-Circle-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-Circle-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-Circle-shape-1-firefox-linux.png index 6fdaddc73f..16ea9f1ee5 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Circle-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-Circle-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-Circle-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-Circle-shape-1-webkit-linux.png index f4a069cb27..7701fb7116 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Circle-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-Circle-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-Line-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-Line-shape-1-chromium-linux.png index 28e3d05c13..189b029a82 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Line-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-Line-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-Line-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-Line-shape-1-firefox-linux.png index 6bf07ee29f..37b9ca1350 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Line-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-Line-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-Line-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-Line-shape-1-webkit-linux.png index 2980121995..b5a4a78e9d 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Line-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-Line-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-Pattern-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-Pattern-shape-1-chromium-linux.png index 2f03c2d0f6..01000ae61e 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Pattern-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-Pattern-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-Pattern-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-Pattern-shape-1-firefox-linux.png index fc20ff1b3f..825ff00c77 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Pattern-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-Pattern-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-Pattern-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-Pattern-shape-1-webkit-linux.png index 7dc8926da3..5edccee364 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Pattern-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-Pattern-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-Square-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-Square-shape-1-chromium-linux.png index 094e3b50fc..350d65d0ec 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Square-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-Square-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-Square-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-Square-shape-1-firefox-linux.png index 19c5fd20d2..14f598af9f 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Square-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-Square-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-Square-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-Square-shape-1-webkit-linux.png index 81c869b361..016a2a40f8 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Chart-legend-Verify-legend-with-size-M-Square-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-Square-shape-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-Tooltip-controlled-appearing-1-chromium-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-Tooltip-controlled-appearing-1-chromium-linux.png index d2306c5d74..db1dbd8f6d 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-Tooltip-controlled-appearing-1-chromium-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-Tooltip-controlled-appearing-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-Tooltip-controlled-appearing-1-firefox-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-Tooltip-controlled-appearing-1-firefox-linux.png index f9fc1169db..64838c2480 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-Tooltip-controlled-appearing-1-firefox-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-Tooltip-controlled-appearing-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-Tooltip-controlled-appearing-1-webkit-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-Tooltip-controlled-appearing-1-webkit-linux.png index ada7612f78..fe29d1bd99 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-Tooltip-controlled-appearing-1-webkit-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-Tooltip-controlled-appearing-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-synscronous-charts-by-EventEmitter-1-chromium-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-synscronous-charts-by-EventEmitter-1-chromium-linux.png index eeb6274f19..39fc860cc4 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-synscronous-charts-by-EventEmitter-1-chromium-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-synscronous-charts-by-EventEmitter-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-synscronous-charts-by-EventEmitter-1-firefox-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-synscronous-charts-by-EventEmitter-1-firefox-linux.png index c059f59326..9822392516 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-synscronous-charts-by-EventEmitter-1-firefox-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-synscronous-charts-by-EventEmitter-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-synscronous-charts-by-EventEmitter-1-webkit-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-synscronous-charts-by-EventEmitter-1-webkit-linux.png index f560460e25..3778e92853 100644 Binary files a/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-synscronous-charts-by-EventEmitter-1-webkit-linux.png and b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Hover-Line-and-Tooltip-Verify-synscronous-charts-by-EventEmitter-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-chromium-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Pattern-fills-dots-and-lines-Verify-enforcing-patterns-1-chromium-linux.png index dc7acfa067..98cfe30921 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-chromium-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-chromium-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-firefox-linux.png b/semcore/d3-chart/__tests__/d3-chart-base.browser-test.tsx-snapshots/-visual-Pattern-fills-dots-and-lines-Verify-enforcing-patterns-1-firefox-linux.png index 5869f16002..0b49086a7a 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-firefox-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-firefox-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 d89037019d..6608c9bae3 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-Custom-radius-inner-and-outer-radius-variations-1-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-1-chromium-linux.png index 5e149518ef..fb632da8b8 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-1-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-1-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-1-firefox-linux.png index c54ba9f755..1662518c8e 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-1-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-1-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-1-webkit-linux.png index 9fbc3dee85..d19c1c5aab 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-1-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-2-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-2-chromium-linux.png index 85e4f1c3c9..6684687ae0 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-2-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-2-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-2-firefox-linux.png index 65655fe58d..1cb62cefd2 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-2-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-2-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-2-webkit-linux.png index 3b7db92d68..f37c842dc7 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-2-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Custom-radius-inner-and-outer-radius-variations-2-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-1-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-1-chromium-linux.png index 196963cdaa..bf06de7a6c 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-1-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-1-chromium-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-1-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-1-firefox-linux.png index 196f309d91..11843d73c1 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-1-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-1-firefox-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-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 7689d117e7..60927c1957 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-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-2-chromium-linux.png index 196963cdaa..bf06de7a6c 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-2-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-2-chromium-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-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-2-firefox-linux.png index 196f309d91..11843d73c1 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-2-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Patterns-patterns-enabled-no-tooltip-2-firefox-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..60927c1957 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-chart-Standard-default-with-tooltip-and-label-1-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-1-chromium-linux.png index 5edb5562fe..8832caece3 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-1-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-1-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-1-firefox-linux.png index a378f328f8..df7546748c 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-1-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-1-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-1-webkit-linux.png index d02551e629..effc0604b8 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-1-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-2-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-2-chromium-linux.png index ab1dd92805..7fe1e68150 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-2-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-2-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-2-firefox-linux.png index 48e070f230..b85c9ce302 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-2-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-2-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-2-webkit-linux.png index 35c0df7a55..87c2e254b0 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-2-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-donut-chart-Standard-default-with-tooltip-and-label-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..136525dce4 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..45231e18cb 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..a2fd7e451e 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..262a0b1f43 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..11b944e59d 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..7e769f9764 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..ce64e8c9e4 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..0d37038520 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..e2f16b0303 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..dcdea875ac 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..e6b9480a1f 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..a067ba12a0 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..30f2a103f7 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..8d12d3a413 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..d20a5b222b 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..c20ee9a48a 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..48c49e0979 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..b1dcb9b07c 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__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-1-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-1-chromium-linux.png index 883eab0b0e..2d8a91d29e 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-1-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-1-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-1-firefox-linux.png index 6e0a7ee67f..922123d9d3 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-1-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-1-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-1-webkit-linux.png index ade21c35f2..10d63dfbc5 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-1-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-2-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-2-chromium-linux.png index c2ae12d83a..36fabf51da 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-2-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-2-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-2-firefox-linux.png index 34eda947f4..e3629c5ca4 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-2-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-2-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-2-webkit-linux.png index 557259797c..8a2189eb3d 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-2-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Custom-radius-innerRadius-and-paddingAngle-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-1-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-1-chromium-linux.png index d0e864dc8e..556fc00b39 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-1-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-1-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-1-firefox-linux.png index cf09b6c606..edcb25dbd0 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-1-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-1-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-1-webkit-linux.png index 8cac62a05e..6e9797ed73 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-1-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-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-semi-donut-Patterns-patterns-enabled-no-tooltip-2-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-2-chromium-linux.png index d0e864dc8e..556fc00b39 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-2-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-2-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-2-firefox-linux.png index cf09b6c606..edcb25dbd0 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-2-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-2-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-2-webkit-linux.png index 8cac62a05e..6e9797ed73 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Patterns-patterns-enabled-no-tooltip-2-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-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-semi-donut-Standard-halfsize-with-tooltip-and-label-1-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-1-chromium-linux.png index 936f77aa03..97dd34231a 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-1-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-1-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-1-firefox-linux.png index 0e590db752..4a9369a4bb 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-1-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-1-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-1-webkit-linux.png index 03d637c14f..4012873b64 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-1-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-2-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-2-chromium-linux.png index 12d102e2c5..c55584900f 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-2-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-2-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-2-firefox-linux.png index ca417c302e..e9fc239504 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-2-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-2-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-2-webkit-linux.png index bc2349e009..96aab464e6 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-2-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-Standard-halfsize-with-tooltip-and-label-2-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-with-labels-1-chromium-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-with-labels-1-chromium-linux.png index 6f5d7fbdce..9aeb48c28d 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-with-labels-1-chromium-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-with-labels-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-with-labels-1-firefox-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-with-labels-1-firefox-linux.png index cc461d4440..169ba0eb77 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-with-labels-1-firefox-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-with-labels-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-with-labels-1-webkit-linux.png b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-with-labels-1-webkit-linux.png index 66f5d2b4a1..81ab368a20 100644 Binary files a/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-with-labels-1-webkit-linux.png and b/semcore/d3-chart/__tests__/donut-chart.browser-test.tsx-snapshots/-visual-Verify-semi-donut-with-labels-1-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-area-default-props-looks-good-1-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-default-props-looks-good-1-chromium-linux.png index d50729f8c9..bc14731f61 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-default-props-looks-good-1-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-default-props-looks-good-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-default-props-looks-good-1-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-default-props-looks-good-1-firefox-linux.png index 5ee759f574..df1ce1753b 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-default-props-looks-good-1-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-default-props-looks-good-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-default-props-looks-good-1-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-default-props-looks-good-1-webkit-linux.png index 198cd12f01..3d0f824c52 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-default-props-looks-good-1-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-default-props-looks-good-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-with-empty-line-renders-and-looks-good-1-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-with-empty-line-renders-and-looks-good-1-chromium-linux.png index 7626d0859f..7719255378 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-with-empty-line-renders-and-looks-good-1-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-with-empty-line-renders-and-looks-good-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-with-empty-line-renders-and-looks-good-1-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-with-empty-line-renders-and-looks-good-1-firefox-linux.png index fb1506c799..f2a918e87b 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-with-empty-line-renders-and-looks-good-1-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-with-empty-line-renders-and-looks-good-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-with-empty-line-renders-and-looks-good-1-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-with-empty-line-renders-and-looks-good-1-webkit-linux.png index 7a8ac9a337..010ec3c8e6 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-with-empty-line-renders-and-looks-good-1-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-area-with-empty-line-renders-and-looks-good-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-curve-prop-1-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-curve-prop-1-chromium-linux.png index 7a12728ac5..c0c1b42bc2 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-curve-prop-1-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-curve-prop-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-curve-prop-1-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-curve-prop-1-firefox-linux.png index cbf92460b7..92e6cc11db 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-curve-prop-1-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-curve-prop-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-curve-prop-1-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-curve-prop-1-webkit-linux.png index 0895f6e6da..ec47f69342 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-curve-prop-1-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-curve-prop-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-custom-tooltip-1-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-custom-tooltip-1-chromium-linux.png index e16439ff38..7c0bcd7b73 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-custom-tooltip-1-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-custom-tooltip-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-custom-tooltip-1-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-custom-tooltip-1-firefox-linux.png index b4693abfb6..f5e37a04b5 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-custom-tooltip-1-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-custom-tooltip-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-custom-tooltip-1-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-custom-tooltip-1-webkit-linux.png index 05089ac639..ba324f6d62 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-custom-tooltip-1-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-custom-tooltip-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-dots-partial-display-1-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-dots-partial-display-1-chromium-linux.png index 1462df6244..250a9abd53 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-dots-partial-display-1-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-dots-partial-display-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-dots-partial-display-1-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-dots-partial-display-1-firefox-linux.png index 11631b9bf1..afac72d75b 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-dots-partial-display-1-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-dots-partial-display-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-dots-partial-display-1-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-dots-partial-display-1-webkit-linux.png index e3604e417b..ccc9e27b4b 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-dots-partial-display-1-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-dots-partial-display-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-renders-correctly-when-dots-can-be-hovered-1-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-renders-correctly-when-dots-can-be-hovered-1-chromium-linux.png index 7243ded1ce..e4113ea5f1 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-renders-correctly-when-dots-can-be-hovered-1-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-renders-correctly-when-dots-can-be-hovered-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-renders-correctly-when-dots-can-be-hovered-1-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-renders-correctly-when-dots-can-be-hovered-1-firefox-linux.png index 6a01c34985..5a90d2e707 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-renders-correctly-when-dots-can-be-hovered-1-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-renders-correctly-when-dots-can-be-hovered-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-renders-correctly-when-dots-can-be-hovered-1-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-renders-correctly-when-dots-can-be-hovered-1-webkit-linux.png index 274514cd64..26892b7291 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-renders-correctly-when-dots-can-be-hovered-1-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-interpolation-renders-correctly-when-dots-can-be-hovered-1-webkit-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-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..b4aabdecae 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..e09e802c76 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..fb9738d5f7 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-Inverted-axis-small-size-no-tooltip-1-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-axis-small-size-no-tooltip-1-chromium-linux.png index b532b2ca40..b217cb42d1 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-axis-small-size-no-tooltip-1-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-axis-small-size-no-tooltip-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-axis-small-size-no-tooltip-1-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-axis-small-size-no-tooltip-1-firefox-linux.png index 831bbb771e..8a34072d49 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-axis-small-size-no-tooltip-1-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-axis-small-size-no-tooltip-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-axis-small-size-no-tooltip-1-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-axis-small-size-no-tooltip-1-webkit-linux.png index 314978d04b..b69496b073 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-axis-small-size-no-tooltip-1-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-axis-small-size-no-tooltip-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-large-margins-patterns-1-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-large-margins-patterns-1-chromium-linux.png index 8d835af7c5..e243d1fea7 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-large-margins-patterns-1-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-large-margins-patterns-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-large-margins-patterns-1-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-large-margins-patterns-1-firefox-linux.png index 1a591fd3af..5665731bda 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-large-margins-patterns-1-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-large-margins-patterns-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-large-margins-patterns-1-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-large-margins-patterns-1-webkit-linux.png index 61445a66a9..2fa99395a7 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-large-margins-patterns-1-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-Inverted-large-margins-patterns-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..8b28cc2f0b 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..5b99e29454 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..987c933b83 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..44b896a38f 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..b63ea57ac9 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..3983304162 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-line-chart-with-config-No-legend-mixed-features-1-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-No-legend-mixed-features-1-chromium-linux.png index 6cee309786..48cd7d8e2d 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-No-legend-mixed-features-1-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-No-legend-mixed-features-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-No-legend-mixed-features-1-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-No-legend-mixed-features-1-firefox-linux.png index 503cc967d4..6f60faf32e 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-No-legend-mixed-features-1-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-No-legend-mixed-features-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-No-legend-mixed-features-1-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-No-legend-mixed-features-1-webkit-linux.png index c52f3a79e4..922b59f759 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-No-legend-mixed-features-1-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-line-chart-with-config-No-legend-mixed-features-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..c74fc81ebf 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..930b247696 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..c01c6b108b 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..c74fc81ebf 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..930b247696 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..c01c6b108b 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..0837bf0146 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..2be1e54933 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..1db650da87 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..26434443ec 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..47baf4ce7b 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..2314161871 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..461fcfeaa9 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..bee50d401e 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..11a6406aff 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__/line-chart.browser-test.tsx-snapshots/-visual-Verify-render-and-interactions-with-Line-and-Dots-1-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-render-and-interactions-with-Line-and-Dots-1-chromium-linux.png index c112f16746..2fba8a4b1d 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-render-and-interactions-with-Line-and-Dots-1-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-render-and-interactions-with-Line-and-Dots-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-render-and-interactions-with-Line-and-Dots-1-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-render-and-interactions-with-Line-and-Dots-1-firefox-linux.png index ae206346cf..c3f35edfee 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-render-and-interactions-with-Line-and-Dots-1-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-render-and-interactions-with-Line-and-Dots-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-render-and-interactions-with-Line-and-Dots-1-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-render-and-interactions-with-Line-and-Dots-1-webkit-linux.png index 380bd899c2..13e7671609 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-render-and-interactions-with-Line-and-Dots-1-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-render-and-interactions-with-Line-and-Dots-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-1-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-1-chromium-linux.png index 6b9fcdeb90..99579eb178 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-1-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-1-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-1-firefox-linux.png index d2ca886c8a..4159144424 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-1-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-1-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-1-webkit-linux.png index 3986552d7e..47f6df6edb 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-1-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-2-chromium-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-2-chromium-linux.png index 306bc7b35a..ca9022bf81 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-2-chromium-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-2-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-2-firefox-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-2-firefox-linux.png index 9f23a73fc3..24d6ae1bf0 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-2-firefox-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-2-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-2-webkit-linux.png b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-2-webkit-linux.png index a860e421f4..2d075e72e0 100644 Binary files a/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-2-webkit-linux.png and b/semcore/d3-chart/__tests__/line-chart.browser-test.tsx-snapshots/-visual-Verify-time-scale-with-tooltip-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-Radar-Tooltip-1-chromium-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-Radar-Tooltip-1-chromium-linux.png index 627bc71ca2..0635ede3a2 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-Radar-Tooltip-1-chromium-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-Radar-Tooltip-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-Radar-Tooltip-1-firefox-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-Radar-Tooltip-1-firefox-linux.png index d3fc28e100..8e8857657b 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-Radar-Tooltip-1-firefox-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-Radar-Tooltip-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-Radar-Tooltip-1-webkit-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-Radar-Tooltip-1-webkit-linux.png index 2fc2624e63..d0bc78c2a6 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-Radar-Tooltip-1-webkit-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-Radar-Tooltip-1-webkit-linux.png differ 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..8d6266a396 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..af052dfeea 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..311094c5f9 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..6e7be4f6aa 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..709fc7b8df 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-circle-radar-1-chromium-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-circle-radar-1-chromium-linux.png index 6fda408a30..a2c837000c 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-circle-radar-1-chromium-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-circle-radar-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-circle-radar-1-firefox-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-circle-radar-1-firefox-linux.png index 500925a403..11dc79fb72 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-circle-radar-1-firefox-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-circle-radar-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-circle-radar-1-webkit-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-circle-radar-1-webkit-linux.png index 961fd7eb33..e556ee4771 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-circle-radar-1-webkit-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-circle-radar-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-color-1-chromium-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-color-1-chromium-linux.png index 11ae2f7686..bc8f4d8ccc 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-color-1-chromium-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-color-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-color-1-firefox-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-color-1-firefox-linux.png index d40ac5470a..eb1ebe91b9 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-color-1-firefox-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-color-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-color-1-webkit-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-color-1-webkit-linux.png index 1c18a4beff..88e22d4a02 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-color-1-webkit-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-color-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-custom-label-1-chromium-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-custom-label-1-chromium-linux.png index d0f4f42842..bb5e438c78 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-custom-label-1-chromium-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-custom-label-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-custom-label-1-firefox-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-custom-label-1-firefox-linux.png index 8dbac493fb..b0c757d6b7 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-custom-label-1-firefox-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-custom-label-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-fill-transparent-1-chromium-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-fill-transparent-1-chromium-linux.png index 6be23f8547..48a4b63404 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-fill-transparent-1-chromium-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-fill-transparent-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-fill-transparent-1-firefox-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-fill-transparent-1-firefox-linux.png index 85be35fa45..436ee63b9c 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-fill-transparent-1-firefox-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-fill-transparent-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-fill-transparent-1-webkit-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-fill-transparent-1-webkit-linux.png index 12e39ae555..2a3ea82226 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-fill-transparent-1-webkit-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-fill-transparent-1-webkit-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..f8faaefdf1 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..0b58cddd4a 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..973246db60 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-long-label-1-chromium-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-long-label-1-chromium-linux.png index 4292727e2d..b1491ff85d 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-long-label-1-chromium-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-long-label-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-long-label-1-firefox-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-long-label-1-firefox-linux.png index d89957b1d6..443b220e87 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-long-label-1-firefox-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-long-label-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-long-label-1-webkit-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-long-label-1-webkit-linux.png index fbda4d5eca..18c47cc734 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-long-label-1-webkit-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-long-label-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 88afc569ed..a51b13295a 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__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-rotation-1-firefox-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-rotation-1-firefox-linux.png index 85c6fc750c..34ae9e6aef 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-rotation-1-firefox-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-rotation-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-scale-1-chromium-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-scale-1-chromium-linux.png index 34bc60c167..581a99b759 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-scale-1-chromium-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-scale-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-scale-1-firefox-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-scale-1-firefox-linux.png index 9b8c4f84c8..412e05d798 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-scale-1-firefox-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-scale-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-scale-1-webkit-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-scale-1-webkit-linux.png index d1238e704c..37c4ea79ab 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-scale-1-webkit-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-scale-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-tick-size-1-chromium-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-tick-size-1-chromium-linux.png index eca9779538..fe852c98ff 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-tick-size-1-chromium-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-tick-size-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-tick-size-1-firefox-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-tick-size-1-firefox-linux.png index 4d0b3681c9..a890cb16b9 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-tick-size-1-firefox-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-tick-size-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-tick-size-1-webkit-linux.png b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-tick-size-1-webkit-linux.png index 4a84c68d48..040604a00b 100644 Binary files a/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-tick-size-1-webkit-linux.png and b/semcore/d3-chart/__tests__/radar-chart.browser-test.tsx-snapshots/-visual-Verify-tick-size-1-webkit-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__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-custom-svg-in-center-1-chromium-linux.png b/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-custom-svg-in-center-1-chromium-linux.png index cfb3c7df19..3332641463 100644 Binary files a/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-custom-svg-in-center-1-chromium-linux.png and b/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-custom-svg-in-center-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-custom-svg-in-center-1-firefox-linux.png b/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-custom-svg-in-center-1-firefox-linux.png index 18650b4082..4360f87df0 100644 Binary files a/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-custom-svg-in-center-1-firefox-linux.png and b/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-custom-svg-in-center-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-custom-svg-in-center-1-webkit-linux.png b/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-custom-svg-in-center-1-webkit-linux.png index eb06af4653..49796fbc3d 100644 Binary files a/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-custom-svg-in-center-1-webkit-linux.png and b/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-custom-svg-in-center-1-webkit-linux.png differ diff --git a/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-multicolor-1-chromium-linux.png b/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-multicolor-1-chromium-linux.png index fded62b667..5ff0d1751a 100644 Binary files a/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-multicolor-1-chromium-linux.png and b/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-multicolor-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-multicolor-1-firefox-linux.png b/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-multicolor-1-firefox-linux.png index a35c548a76..439f2965bd 100644 Binary files a/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-multicolor-1-firefox-linux.png and b/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-multicolor-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-multicolor-1-webkit-linux.png b/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-multicolor-1-webkit-linux.png index e28433cde5..84f4280fe6 100644 Binary files a/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-multicolor-1-webkit-linux.png and b/semcore/d3-chart/__tests__/radial-tree-chart.browser-test.tsx-snapshots/-visual-Verify-multicolor-1-webkit-linux.png differ 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..7bb7185ae1 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..63eefedac2 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 557ae244ce..eb2320087f 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..9386d5c2d2 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..1c1b8d23c3 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..2898988436 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..1e6c8c3306 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..accbd67923 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-Venn-usage-1-chromium-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-Venn-usage-1-chromium-linux.png index 13ced19c8d..f19df188f7 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-Venn-usage-1-chromium-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-Venn-usage-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-Venn-usage-1-firefox-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-Venn-usage-1-firefox-linux.png index a3260d4652..9da5e4b842 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-Venn-usage-1-firefox-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-Venn-usage-1-firefox-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-Venn-usage-1-webkit-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-Venn-usage-1-webkit-linux.png index a159d4eec1..f268ba8ed9 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-Venn-usage-1-webkit-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-Venn-usage-1-webkit-linux.png differ 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..25ab7961e2 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..cd2abe854c 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..9793756d85 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-custom-intersection-styles-1-chromium-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-custom-intersection-styles-1-chromium-linux.png index 838d359d26..84ea29b1ee 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-custom-intersection-styles-1-chromium-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-custom-intersection-styles-1-chromium-linux.png differ diff --git a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-custom-intersection-styles-1-firefox-linux.png b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-custom-intersection-styles-1-firefox-linux.png index b5bed5535f..d7c230a497 100644 Binary files a/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-custom-intersection-styles-1-firefox-linux.png and b/semcore/d3-chart/__tests__/venn-chart.browser-test.tsx-snapshots/-visual-Verify-custom-intersection-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-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..299e82a1be 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..1c30f83d5d 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..c045f61e4b 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..53281e425c 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..ba43e71b0f 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..a2adbea2e0 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..e17ae3fc8a 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..b449bb200f 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..d2c0f068f7 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..d4dac58b1c 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..18eb65b564 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..2f311ae688 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/component/ChartLegend/LegendItem/legend-item.shadow.css b/semcore/d3-chart/src/component/ChartLegend/LegendItem/legend-item.shadow.css index 47bf705c45..df45417639 100644 --- a/semcore/d3-chart/src/component/ChartLegend/LegendItem/legend-item.shadow.css +++ b/semcore/d3-chart/src/component/ChartLegend/LegendItem/legend-item.shadow.css @@ -85,14 +85,14 @@ SLabel[size='l'], SAdditionalLabel[size='l'], SCount[size='l'] { font-size: var(--intergalactic-fs-300, 16px); - line-height: var(--intergalactic-lh-300, 150%); + line-height: var(--intergalactic-lh-300, 1.5); } SLabel[size='m'], SAdditionalLabel[size='m'], SCount[size='m'] { font-size: var(--intergalactic-fs-200, 14px); - line-height: var(--intergalactic-lh-200, 142%); + line-height: var(--intergalactic-lh-200, 1.4286); } SAdditionalLabel, @@ -109,7 +109,7 @@ SAdditionalLabel { SAdditionalLabel::before { content: ''; display: inline-block; - background-color: var(--intergalactic-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); + background-color: var(--intergalactic-text-secondary, oklch(0.097 0.023 156.5 / 0.468)); height: 4px; width: 4px; border-radius: 2px; diff --git a/semcore/d3-chart/src/style/area.shadow.css b/semcore/d3-chart/src/style/area.shadow.css index edb3bc2aca..1673ec6ac1 100644 --- a/semcore/d3-chart/src/style/area.shadow.css +++ b/semcore/d3-chart/src/style/area.shadow.css @@ -1,7 +1,7 @@ @import './var.css'; SArea { - fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); + fill: var(--intergalactic-chart-palette-order-1, oklch(0.23 0.01 140)); fill-opacity: 0.2; } @@ -19,7 +19,7 @@ SArea[transparent] { } SAreaLine { - stroke: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); + stroke: var(--intergalactic-chart-palette-order-1, oklch(0.23 0.01 140)); stroke-width: 3; fill: transparent; } diff --git a/semcore/d3-chart/src/style/axis.shadow.css b/semcore/d3-chart/src/style/axis.shadow.css index 56582295fe..44ba9bc553 100644 --- a/semcore/d3-chart/src/style/axis.shadow.css +++ b/semcore/d3-chart/src/style/axis.shadow.css @@ -8,7 +8,7 @@ SAxis[hide] { STick { font-size: var(--intergalactic-fs-100, 12px); - fill: var(--intergalactic-chart-grid-text-label, oklch(0.088 0.026 147.7 / 0.583)); + fill: var(--intergalactic-chart-grid-text-label, oklch(0.097 0.023 156.5 / 0.468)); } STick[primaryText] { fill: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); @@ -25,7 +25,7 @@ SGrid { STitle { font-size: var(--intergalactic-fs-100, 12px); - fill: var(--intergalactic-text-hint, oklch(0.088 0.026 147.7 / 0.583)); + fill: var(--intergalactic-text-hint, oklch(0.097 0.023 156.5 / 0.468)); transform-origin: var(--transform-origin); } diff --git a/semcore/d3-chart/src/style/bar.shadow.css b/semcore/d3-chart/src/style/bar.shadow.css index 684fcf158d..8d5d79f0c2 100644 --- a/semcore/d3-chart/src/style/bar.shadow.css +++ b/semcore/d3-chart/src/style/bar.shadow.css @@ -1,7 +1,7 @@ @import './var.css'; SBar { - fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); + fill: var(--intergalactic-chart-palette-order-1, oklch(0.23 0.01 140)); transition-property: height, width, y; transition-duration: var(--duration); transition-timing-function: ease-in-out; @@ -30,8 +30,7 @@ SBar[onClick] { } SBackground { - fill: var(--intergalactic-chart-grid-bar-chart-base-bg, oklch(0.88 0.002 175.6)); - opacity: 0.4; + fill: var(--intergalactic-chart-grid-bar-chart-base-bg, oklch(0.92 0.002 178.5)); } SBackground[onClick] { cursor: pointer; @@ -45,13 +44,13 @@ SBarLabel { color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); margin-right: auto; font-size: var(--intergalactic-fs-200, 14px); - line-height: var(--intergalactic-lh-200, 142%); + line-height: var(--intergalactic-lh-200, 1.4286); } SBarPercent { - color: var(--intergalactic-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); + color: var(--intergalactic-text-secondary, oklch(0.097 0.023 156.5 / 0.468)); margin-right: var(--intergalactic-spacing-2x, 8px); font-size: var(--intergalactic-fs-200, 14px); - line-height: var(--intergalactic-lh-200, 142%); + line-height: var(--intergalactic-lh-200, 1.4286); } SBarValue { min-width: 52px; @@ -59,9 +58,9 @@ SBarValue { justify-content: flex-end; color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); font-size: var(--intergalactic-fs-200, 14px); - line-height: var(--intergalactic-lh-200, 142%); + line-height: var(--intergalactic-lh-200, 1.4286); 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..ff79d85854 100644 --- a/semcore/d3-chart/src/style/bubble.shadow.css +++ b/semcore/d3-chart/src/style/bubble.shadow.css @@ -1,8 +1,8 @@ @import './var.css'; SBubble { - fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); - stroke: var(--intergalactic-chart-grid-border, #fff); + fill: var(--intergalactic-chart-palette-order-1, oklch(0.23 0.01 140)); + stroke: var(--intergalactic-chart-grid-border, #ffffff); stroke-width: 2px; transition-property: cx, cy; transition-duration: var(--duration); @@ -40,7 +40,7 @@ SCenter { text-anchor: middle; /* disable-tokens-validator */ font-size: calc(var(--intergalactic-fs-100, 12px) - 1px); - stroke: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); + stroke: var(--intergalactic-chart-palette-order-1, oklch(0.23 0.01 140)); } SCenter[color] { @@ -52,7 +52,7 @@ SCenter[transparent] { } SLabel { - fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); + fill: var(--intergalactic-chart-palette-order-1, oklch(0.23 0.01 140)); } SLabel[position='right'] { diff --git a/semcore/d3-chart/src/style/donut.shadow.css b/semcore/d3-chart/src/style/donut.shadow.css index afddadf31b..d006aeaff5 100644 --- a/semcore/d3-chart/src/style/donut.shadow.css +++ b/semcore/d3-chart/src/style/donut.shadow.css @@ -1,8 +1,8 @@ @import './var.css'; SPie { - stroke: var(--intergalactic-chart-grid-border, #fff); - fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); + stroke: var(--intergalactic-chart-grid-border, #ffffff); + fill: var(--intergalactic-chart-palette-order-1, oklch(0.23 0.01 140)); } SPie[color] { @@ -31,6 +31,6 @@ SLabel { text-anchor: middle; vertical-anchor: middle; font-size: var(--intergalactic-fs-200, 14px); - line-height: var(--intergalactic-lh-200, 142%); + line-height: var(--intergalactic-lh-200, 1.4286); } \ No newline at end of file diff --git a/semcore/d3-chart/src/style/dot.shadow.css b/semcore/d3-chart/src/style/dot.shadow.css index 18c0d21ae1..b18b4d76f2 100644 --- a/semcore/d3-chart/src/style/dot.shadow.css +++ b/semcore/d3-chart/src/style/dot.shadow.css @@ -8,8 +8,8 @@ SDots { SDot { stroke-width: 1px; - stroke: var(--intergalactic-chart-grid-border, #fff); - fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); + stroke: var(--intergalactic-chart-grid-border, #ffffff); + fill: var(--intergalactic-chart-palette-order-1, oklch(0.23 0.01 140)); 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/line.shadow.css b/semcore/d3-chart/src/style/line.shadow.css index 9d412db00b..cc291b4b45 100644 --- a/semcore/d3-chart/src/style/line.shadow.css +++ b/semcore/d3-chart/src/style/line.shadow.css @@ -3,7 +3,7 @@ SLine { fill: transparent; stroke-width: 3; - stroke: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); + stroke: var(--intergalactic-chart-palette-order-1, oklch(0.23 0.01 140)); transition-property: d; transition-duration: var(--duration); transition-timing-function: ease-in-out; @@ -36,7 +36,7 @@ SLineArea { transition-duration: var(--duration); transition-timing-function: ease-in-out; opacity: 0.3; - fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); + fill: var(--intergalactic-chart-palette-order-1, oklch(0.23 0.01 140)); } SLineArea[color] { fill: var(--color); diff --git a/semcore/d3-chart/src/style/radar.shadow.css b/semcore/d3-chart/src/style/radar.shadow.css index 05a7e1bfe8..0f9c593b09 100644 --- a/semcore/d3-chart/src/style/radar.shadow.css +++ b/semcore/d3-chart/src/style/radar.shadow.css @@ -31,7 +31,7 @@ SAxisLabel[yDirection] { } SPolygon { - fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); + fill: var(--intergalactic-chart-palette-order-1, oklch(0.23 0.01 140)); opacity: 0.2; } @@ -47,9 +47,9 @@ 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)); + fill: var(--intergalactic-chart-palette-order-1, oklch(0.23 0.01 140)); } SPolygonDot[transparent] { @@ -61,7 +61,7 @@ SPolygonDot[color] { } SPolygonLine { - stroke: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); + stroke: var(--intergalactic-chart-palette-order-1, oklch(0.23 0.01 140)); stroke-width: 3; fill: transparent; } @@ -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/reference.shadow.css b/semcore/d3-chart/src/style/reference.shadow.css index ec3f04b7e3..cddafcdecf 100644 --- a/semcore/d3-chart/src/style/reference.shadow.css +++ b/semcore/d3-chart/src/style/reference.shadow.css @@ -5,7 +5,7 @@ SReferenceLine { STitle { font-size: var(--intergalactic-fs-100, 12px); - fill: var(--intergalactic-chart-grid-text-label, oklch(0.088 0.026 147.7 / 0.583)); + fill: var(--intergalactic-chart-grid-text-label, oklch(0.097 0.023 156.5 / 0.468)); transform-origin: var(--transform-origin); } diff --git a/semcore/d3-chart/src/style/scatterplot.shadow.css b/semcore/d3-chart/src/style/scatterplot.shadow.css index 4ecff6c503..77157433e3 100644 --- a/semcore/d3-chart/src/style/scatterplot.shadow.css +++ b/semcore/d3-chart/src/style/scatterplot.shadow.css @@ -1,7 +1,7 @@ @import './var.css'; SScatterPlot { - fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2)); + fill: var(--intergalactic-chart-palette-order-1, oklch(0.23 0.01 140)); transition-property: cx, cy; transition-duration: var(--duration); transition-timing-function: ease-in-out; @@ -29,7 +29,7 @@ SScatterPlot[transparent] { SValue { text-anchor: middle; font-size: var(--intergalactic-fs-50, 10px); - stroke: var(--intergalactic-chart-palette-order-9, oklch(0.53 0.157 279.2)); + stroke: var(--intergalactic-chart-palette-order-9, oklch(0.58 0.168 278.2)); } SValue[color] { diff --git a/semcore/d3-chart/src/style/tooltip.shadow.css b/semcore/d3-chart/src/style/tooltip.shadow.css index 0e5dc23996..53ebfb40c2 100644 --- a/semcore/d3-chart/src/style/tooltip.shadow.css +++ b/semcore/d3-chart/src/style/tooltip.shadow.css @@ -2,7 +2,7 @@ STooltip { font-size: var(--intergalactic-fs-100, 12px); - line-height: var(--intergalactic-lh-100, 133%); + line-height: var(--intergalactic-lh-100, 1.3334); position: relative; background-color: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); border-radius: var(--intergalactic-popper-rounded, 6px); @@ -13,7 +13,7 @@ STooltip { } STitle { - color: var(--intergalactic-text-secondary, oklch(0.088 0.026 147.7 / 0.583)); + color: var(--intergalactic-text-secondary, oklch(0.097 0.023 156.5 / 0.468)); margin-bottom: var(--intergalactic-spacing-2x, 8px); } diff --git a/semcore/d3-chart/src/style/venn.shadow.css b/semcore/d3-chart/src/style/venn.shadow.css index 7d10e659c5..2be6e016ff 100644 --- a/semcore/d3-chart/src/style/venn.shadow.css +++ b/semcore/d3-chart/src/style/venn.shadow.css @@ -1,8 +1,8 @@ @import './var.css'; SCircle { - fill: var(--intergalactic-chart-palette-order-2, oklch(0.82 0.15 170)); - stroke: var(--intergalactic-chart-grid-border, #fff); + fill: var(--intergalactic-chart-palette-order-2, oklch(0.58 0.168 278.2)); + 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 375126cced..becf92cb6d 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,19 +97,29 @@ 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) + // ArrowDown must land on the accordion cell with the chart. Without waiting + // for the focus to actually get there, webkit screenshots the moment before + // and captures the focus ring on the next data row instead. await page.keyboard.press('ArrowDown'); + await expect(locators.chart(page, 'Chart')).toBeFocused(); 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 +127,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 +152,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 +201,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); @@ -300,7 +322,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); @@ -403,7 +429,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); @@ -512,7 +541,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'); @@ -577,7 +608,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); @@ -605,7 +638,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'); @@ -689,7 +724,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'); @@ -757,7 +794,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'); @@ -812,7 +852,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'); @@ -867,7 +910,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'); @@ -905,7 +951,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'); @@ -932,7 +989,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'); @@ -1049,7 +1117,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'); @@ -1430,7 +1500,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', @@ -1472,7 +1545,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..0cb4233a37 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..9cd6d665fe 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..acae6bffce 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..ad5d7aee10 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..7e9519f784 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..acf1027d96 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 1d04df04d8..3b19742b0e 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 47056c556c..e752e5a8f1 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 5681313c40..1aa405f13a 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-false-2-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-2-chromium-linux.png index ffe6db7129..68c21af698 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-2-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-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-with-fixed-Column-withScrollBar-false-2-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-2-firefox-linux.png index 9a79e1294a..9a36109174 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-2-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-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-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 9318995502..1b7e67c787 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 f7efcec1e2..bd26a5eca3 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 9ab6bfcd26..76886b8bc6 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-fixed-Column-withScrollBar-true-2-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-2-chromium-linux.png index 1f023099eb..cfc372e01c 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-2-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-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-with-fixed-Column-withScrollBar-true-2-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-2-firefox-linux.png index 3d0999dbac..ed8fcf8023 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-2-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-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-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..50a966f4df 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..37ac81868f 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..285a4b5ec0 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-cell-with-merged-rows-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-cell-with-merged-rows-1-chromium-linux.png index f597ef7999..850bb5b0c6 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-cell-with-merged-rows-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-cell-with-merged-rows-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-cell-with-merged-rows-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-cell-with-merged-rows-1-firefox-linux.png index 70c0939da3..0ac8e323a7 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-cell-with-merged-rows-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-cell-with-merged-rows-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-cell-with-merged-rows-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-cell-with-merged-rows-1-webkit-linux.png index 845fcc521d..4487b3c237 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-cell-with-merged-rows-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-cell-with-merged-rows-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..cdc2f69585 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..434fd39360 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..86d394e0a7 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..33e2d70317 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..38ffb32738 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..785400de5d 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..33e2d70317 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..38ffb32738 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..785400de5d 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..cdc2f69585 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..434fd39360 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 fcdaff6e68..86d394e0a7 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..cdc2f69585 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..434fd39360 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 fcdaff6e68..86d394e0a7 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-component-inside-accordion-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-component-inside-accordion-1-chromium-linux.png index ec46de33a7..99cbd27a83 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-component-inside-accordion-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-component-inside-accordion-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-component-inside-accordion-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-component-inside-accordion-1-firefox-linux.png index 9ddc22f054..cc3a7cf102 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-component-inside-accordion-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-component-inside-accordion-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-component-inside-accordion-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-component-inside-accordion-1-webkit-linux.png index f6df820412..a0f0ca9d88 100644 Binary files a/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-component-inside-accordion-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-accordion.browser-test.tsx-snapshots/-visual-Accordion-in-table-Verify-table-component-inside-accordion-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 bf2e9befce..22579f4ce2 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 050d7754b5..62cee75480 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 4c05a0ac0d..677b1d3749 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 5d24fc559d..a02d6485d3 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 6b86145c67..afa8713e55 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 15c1b4450d..72d77f2423 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-false-2-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-2-chromium-linux.png index c0db3a1f3f..2fc11af7b7 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-2-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-2-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-2-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-2-firefox-linux.png index 49ab7badc1..3f5c7f6b3d 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-2-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-2-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-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 8b6121ab36..752bb5b4c1 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 beebc923c4..36e4998e07 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 03a3117159..c9482a9ba4 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-fixed-column-withScrollBar-true-2-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-2-chromium-linux.png index 716477ef7f..4050b96164 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-2-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-2-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-2-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-2-firefox-linux.png index 212b97c557..bebadf183b 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-2-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-2-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-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..314432cfac 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..d93b9a650b 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..e5707ee239 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..8120898474 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..4a7709c31f 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..4a470ca153 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..a4b4f471dc 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..ad64c6412b 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..5fa6f1e0d3 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..02865de95e 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..7d5395eabf 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..069bf2c35c 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..fb842347da 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..1713fb9578 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..1181569859 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..5e91308ee4 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..e88695c4e0 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..326c46eb2a 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-base-styles-checks.browser-test.tsx b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx index 55bdec6e55..b026eb1196 100644 --- a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx +++ b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx @@ -25,7 +25,6 @@ test.describe(`${TAG.VISUAL}`, () => { await test.step('Verify header cell styles', async () => { await checkStyles(header, { 'font-size': '12px', - 'line-height': browserName === 'firefox' ? '15.9667px' : '15.96px', 'color': textPrimary, 'padding': '12px', 'background-color': thPrimaryCellBg, @@ -137,7 +136,7 @@ test.describe(`${TAG.VISUAL}`, () => { test('Verify styles Compact', { tag: [TAG.PRIORITY_HIGH, '@data-table'], - }, async ({ page, browserName }) => { + }, async ({ page }) => { await loadPage(page, 'stories/components/data-table/docs/examples/compact.tsx', 'en'); const textPrimary = await getCssVarColor(page, '--intergalactic-text-primary', 'color'); const thPrimaryCellBg = await getCssVarColor(page, '--intergalactic-table-th-primary-cell'); @@ -149,7 +148,6 @@ test.describe(`${TAG.VISUAL}`, () => { await checkStyles(header, { 'font-size': '12px', - 'line-height': browserName === 'firefox' ? '15.9667px' : '15.96px', 'color': textPrimary, 'padding': '12px 8px', 'background-color': thPrimaryCellBg, @@ -187,7 +185,6 @@ test.describe(`${TAG.VISUAL}`, () => { await checkStyles(header, { 'font-size': '12px', - 'line-height': browserName === 'firefox' ? '15.9667px' : '15.96px', 'color': textPrimary, 'padding': '8px', 'background-color': thSecondaryCellBg, diff --git a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Compact-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Compact-1-chromium-linux.png index c4429a677e..9066de7c96 100644 Binary files a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Compact-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Compact-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Compact-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Compact-1-firefox-linux.png index 56e896b2cc..f616a7e760 100644 Binary files a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Compact-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Compact-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Compact-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Compact-1-webkit-linux.png index 98fe75ca8c..53fcb9275a 100644 Binary files a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Compact-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Compact-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Primary-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Primary-1-chromium-linux.png index 10f34adce4..4ed355d5fa 100644 Binary files a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Primary-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Primary-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Primary-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Primary-1-firefox-linux.png index ebbd8ca1a2..5dca0c75bd 100644 Binary files a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Primary-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Primary-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Primary-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Primary-1-webkit-linux.png index d0a5de0980..3fcd704ccf 100644 Binary files a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Primary-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Primary-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Secondary-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Secondary-1-chromium-linux.png index c3dce46393..eeeaa6d58b 100644 Binary files a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Secondary-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Secondary-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Secondary-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Secondary-1-firefox-linux.png index deed0ac777..111a06766d 100644 Binary files a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Secondary-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Secondary-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Secondary-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Secondary-1-webkit-linux.png index 0b359af020..695e6f0a7f 100644 Binary files a/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Secondary-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-base-styles-checks.browser-test.tsx-snapshots/-visual-Verify-styles-Secondary-1-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-colored-cells-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-colored-cells-1-chromium-linux.png index b1d64aed2b..d0b01651a8 100644 Binary files a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-colored-cells-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-colored-cells-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-colored-cells-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-colored-cells-1-firefox-linux.png index 878947bbd2..3b0facedc6 100644 Binary files a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-colored-cells-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-colored-cells-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-colored-cells-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-colored-cells-1-webkit-linux.png index 5224cba082..834068d2c7 100644 Binary files a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-colored-cells-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-colored-cells-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-colored-cells-2-chromium-linux.png b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-colored-cells-2-chromium-linux.png index aa2c086344..a615be8ea6 100644 Binary files a/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-colored-cells-2-chromium-linux.png and b/semcore/data-table/__tests__/data-table-cells.browser-test.tsx-snapshots/-visual-Verify-colored-cells-2-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-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..afeed3fbd5 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..b70f73a2a6 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..d49cef34a9 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..adc9ea78e5 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..11a093e6f6 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..7e95dca1b4 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-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-1-chromium-linux.png index 293228fd48..e5ddb70d86 100644 Binary files a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-1-firefox-linux.png index 8e067125b9..c60831de8b 100644 Binary files a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-1-webkit-linux.png index c83de2586d..8ae7bc56d0 100644 Binary files a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-2-chromium-linux.png b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-2-chromium-linux.png index f096b5521c..f49373bdfb 100644 Binary files a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-2-chromium-linux.png and b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-2-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-2-firefox-linux.png b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-2-firefox-linux.png index 59e243d598..d7f12f1029 100644 Binary files a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-2-firefox-linux.png and b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-2-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-2-webkit-linux.png b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-2-webkit-linux.png index a85ba40c9f..27fe857cfa 100644 Binary files a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-2-webkit-linux.png and b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-Column-sizes-functionality-2-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-alignment-props-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-alignment-props-1-chromium-linux.png index 9ef0e4d354..676e54ecd9 100644 Binary files a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-alignment-props-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-alignment-props-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-alignment-props-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-alignment-props-1-firefox-linux.png index 0352ac7b84..7376b9ef1e 100644 Binary files a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-alignment-props-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-alignment-props-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-alignment-props-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-alignment-props-1-webkit-linux.png index f84eea36a7..f1661db19b 100644 Binary files a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-alignment-props-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-alignment-props-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-merged-columns-keyboard-navigation-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-merged-columns-keyboard-navigation-1-chromium-linux.png index 66a3c82708..353d76b277 100644 Binary files a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-merged-columns-keyboard-navigation-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-merged-columns-keyboard-navigation-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-merged-columns-keyboard-navigation-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-merged-columns-keyboard-navigation-1-firefox-linux.png index 9c1b8e1e95..0caf5e8ebc 100644 Binary files a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-merged-columns-keyboard-navigation-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-merged-columns-keyboard-navigation-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-merged-columns-keyboard-navigation-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-merged-columns-keyboard-navigation-1-webkit-linux.png index 6feb09f0cc..847bb19c8e 100644 Binary files a/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-merged-columns-keyboard-navigation-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-columns.browser-test.tsx-snapshots/-visual-Verify-merged-columns-keyboard-navigation-1-webkit-linux.png differ 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-border-and-Long-title-with-and-without-Ellipsis-correctly-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-border-and-Long-title-with-and-without-Ellipsis-correctly-1-chromium-linux.png index 50ca77c253..df127f2229 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-border-and-Long-title-with-and-without-Ellipsis-correctly-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-border-and-Long-title-with-and-without-Ellipsis-correctly-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-border-and-Long-title-with-and-without-Ellipsis-correctly-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-border-and-Long-title-with-and-without-Ellipsis-correctly-1-firefox-linux.png index 76ad0998f4..fa87eda4e7 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-border-and-Long-title-with-and-without-Ellipsis-correctly-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-border-and-Long-title-with-and-without-Ellipsis-correctly-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-border-and-Long-title-with-and-without-Ellipsis-correctly-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-border-and-Long-title-with-and-without-Ellipsis-correctly-1-webkit-linux.png index 5754ca5667..da9b4f2bc0 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-border-and-Long-title-with-and-without-Ellipsis-correctly-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-border-and-Long-title-with-and-without-Ellipsis-correctly-1-webkit-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-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..0c68262287 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..7f4f63a376 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..51e7db9456 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-mouse-interactions-with-sorting-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-interactions-with-sorting-1-chromium-linux.png index 419ebffd0a..b79bb7f0bd 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-interactions-with-sorting-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-interactions-with-sorting-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-interactions-with-sorting-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-interactions-with-sorting-1-firefox-linux.png index 775de3d487..52eb684cb5 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-interactions-with-sorting-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-interactions-with-sorting-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-interactions-with-sorting-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-interactions-with-sorting-1-webkit-linux.png index 2f45875b6e..8f0333d61a 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-interactions-with-sorting-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-Multi-level-Header-Verify-mouse-interactions-with-sorting-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..f1f92e41ac 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..48a726a591 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..118886f7ff 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..7cc153c8d6 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..c0641a771b 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..b3d732778c 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..1f87bc3013 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..ce4febb2c1 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..893852ac8f 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..0ffd150777 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..442f24eb0f 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..b74aa3b97f 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..8b20815ecc 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..9ee201efe7 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..d6c861a91a 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..0ad7607dc1 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..c97dd637f0 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..2636e7a828 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..faeeeda0dc 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..ea00b3b2d8 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..26ebe4e431 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..0ffd150777 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..442f24eb0f 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..b74aa3b97f 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..8b20815ecc 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..9ee201efe7 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..d6c861a91a 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..0ad7607dc1 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..c97dd637f0 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..2636e7a828 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..faeeeda0dc 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..ea00b3b2d8 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..26ebe4e431 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-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-styles-when-long-text-and-icons-in-header-when-use-primary-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-styles-when-long-text-and-icons-in-header-when-use-primary-1-chromium-linux.png index 2a8096857c..869ea72bc0 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-styles-when-long-text-and-icons-in-header-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-styles-when-long-text-and-icons-in-header-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-styles-when-long-text-and-icons-in-header-when-use-primary-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-styles-when-long-text-and-icons-in-header-when-use-primary-1-firefox-linux.png index acc0ae665a..d12c417e27 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-styles-when-long-text-and-icons-in-header-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-styles-when-long-text-and-icons-in-header-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-styles-when-long-text-and-icons-in-header-when-use-primary-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-styles-when-long-text-and-icons-in-header-when-use-primary-1-webkit-linux.png index e3fa6cce53..f7584550d4 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-styles-when-long-text-and-icons-in-header-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-styles-when-long-text-and-icons-in-header-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-styles-when-long-text-and-icons-in-header-when-use-secondary-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-styles-when-long-text-and-icons-in-header-when-use-secondary-1-chromium-linux.png index e0cfc2f82d..076eed97af 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-styles-when-long-text-and-icons-in-header-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-styles-when-long-text-and-icons-in-header-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-styles-when-long-text-and-icons-in-header-when-use-secondary-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-styles-when-long-text-and-icons-in-header-when-use-secondary-1-firefox-linux.png index b00de65706..7ff0f93f46 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-styles-when-long-text-and-icons-in-header-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-styles-when-long-text-and-icons-in-header-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-styles-when-long-text-and-icons-in-header-when-use-secondary-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-styles-when-long-text-and-icons-in-header-when-use-secondary-1-webkit-linux.png index bb4d985ee5..05115d860c 100644 Binary files a/semcore/data-table/__tests__/data-table-header.browser-test.tsx-snapshots/-visual-One-level-Header-Verify-styles-when-long-text-and-icons-in-header-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-styles-when-long-text-and-icons-in-header-when-use-secondary-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-link-action.browser-test.tsx b/semcore/data-table/__tests__/data-table-link-action.browser-test.tsx new file mode 100644 index 0000000000..8d8f084911 --- /dev/null +++ b/semcore/data-table/__tests__/data-table-link-action.browser-test.tsx @@ -0,0 +1,119 @@ +import { expect, test } from '@semcore/testing-utils/playwright'; +import { loadPage } from '@semcore/testing-utils/shared/helpers'; +import { TAG } from '@semcore/testing-utils/shared/tags'; + +import { controlsFitInCell, locators } from './utils'; + +const STORY = 'stories/components/base-components/ellipsis/tests/examples/in_table_with_link.tsx'; + +/** The URL column of the first data row — the header occupies row 1. */ +const ROW = 2; +const COL = 4; + +const HREF_ACTION = 'Open in new tab'; +const CLICK_ACTION = 'Analyze this URL'; + +/* ===================================================== +@functional +Keyboard access through the grid, and the truncated layout. +===================================================== */ +test.describe(`${TAG.FUNCTIONAL}`, () => { + test('Verify LinkAction renders the link, a divider and both actions', { + tag: [TAG.PRIORITY_MEDIUM, + '@data-table', + '@link-action', + '@link', + '@divider', + '@button', + '@base-components', + ], + }, async ({ page }) => { + // Smoke check that the composition survives a real render pass. + await loadPage(page, STORY, 'en'); + + await expect(locators.linkActionLink(page, ROW, COL)).toBeVisible(); + await expect(locators.linkActionDivider(page, ROW, COL)).toHaveCount(1); + await expect(locators.linkActionHrefAction(page, ROW, COL, HREF_ACTION)).toBeVisible(); + await expect(locators.linkActionClickAction(page, ROW, COL, CLICK_ACTION)).toBeVisible(); + }); + + test('Verify the link and both actions are reachable by keyboard in DOM order', { + tag: [TAG.PRIORITY_HIGH, + TAG.KEYBOARD, + '@data-table', + '@link-action', + '@link', + '@button', + '@base-components', + ], + }, async ({ page }) => { + await loadPage(page, STORY, 'en'); + + // DataTable is a grid: Tab lands on a cell, arrows walk the cells, and Enter steps + // inside one. Only then does Tab move between the controls the cell holds. + await page.keyboard.press('Tab'); + await expect(locators.getCell(page, ROW, 1)).toBeFocused(); + + for (let i = 0; i < COL - 1; i++) { + await page.keyboard.press('ArrowRight'); + } + await expect(locators.getCell(page, ROW, COL)).toBeFocused(); + + await page.keyboard.press('Enter'); + await expect(locators.linkActionLink(page, ROW, COL)).toBeFocused(); + + await page.keyboard.press('Tab'); + await expect(locators.linkActionHrefAction(page, ROW, COL, HREF_ACTION)).toBeFocused(); + + await page.keyboard.press('Tab'); + await expect(locators.linkActionClickAction(page, ROW, COL, CLICK_ACTION)).toBeFocused(); + }); + + test('Verify cropPosition=middle truncates the text and keeps the actions in the cell', { + tag: [TAG.PRIORITY_HIGH, + '@data-table', + '@link-action', + '@link', + '@ellipsis', + '@base-components', + ], + }, async ({ page }) => { + await loadPage(page, STORY, 'en', { cropPosition: 'middle' }); + + await expect(locators.linkActionText(page, ROW, COL)).toContainText('...'); + expect(await controlsFitInCell(page, ROW, COL)).toBe(true); + }); + + test('Verify cropPosition=end keeps the actions in the cell', { + tag: [TAG.PRIORITY_HIGH, + '@data-table', + '@link-action', + '@link', + '@ellipsis', + '@base-components', + ], + }, async ({ page }) => { + await loadPage(page, STORY, 'en', { cropPosition: 'end' }); + + await expect(locators.linkActionHrefAction(page, ROW, COL, HREF_ACTION)).toBeVisible(); + await expect(locators.linkActionClickAction(page, ROW, COL, CLICK_ACTION)).toBeVisible(); + expect(await controlsFitInCell(page, ROW, COL)).toBe(true); + }); + + test('Verify the actions stay in the cell when the ellipsis is off', { + tag: [TAG.PRIORITY_MEDIUM, + '@data-table', + '@link-action', + '@link', + '@button', + '@ellipsis', + '@base-components', + ], + }, async ({ page }) => { + await loadPage(page, STORY, 'en', { withEllipsis: false }); + + await expect(locators.linkActionHrefAction(page, ROW, COL, HREF_ACTION)).toBeVisible(); + await expect(locators.linkActionClickAction(page, ROW, COL, CLICK_ACTION)).toBeVisible(); + expect(await controlsFitInCell(page, ROW, COL)).toBe(true); + }); +}); 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 7abff33dfb..3d1b9cb070 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-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-1-chromium-linux.png index 269adc9cf8..521d3862d2 100644 Binary files a/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-1-firefox-linux.png index d37a03707c..625d5225ab 100644 Binary files a/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-1-webkit-linux.png index a57ef5e12e..9e93043a09 100644 Binary files a/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-2-chromium-linux.png b/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-2-chromium-linux.png index 939cbe8d77..6cc691272c 100644 Binary files a/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-2-chromium-linux.png and b/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-2-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-2-firefox-linux.png b/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-2-firefox-linux.png index d37a03707c..625d5225ab 100644 Binary files a/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-2-firefox-linux.png and b/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-2-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-2-webkit-linux.png b/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-2-webkit-linux.png index 0048e35f68..85d8d3f21d 100644 Binary files a/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-2-webkit-linux.png and b/semcore/data-table/__tests__/data-table-rows.browser-test.tsx-snapshots/-visual-Verify-merged-cells-on-Hover-2-webkit-linux.png differ 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 0abc86da63..5c41613f34 100644 --- a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx +++ b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx @@ -98,7 +98,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"]'); @@ -150,7 +153,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"]'); @@ -256,8 +262,9 @@ test.describe(`${TAG.FUNCTIONAL}`, () => { await expect.poll(async () => { const scrollBarBox = (await scrollBar.boundingBox())!; const columnBox = (await fixedColumn.boundingBox())!; + const scrollBarMargin = 4; - return Math.abs(scrollBarBox.x - (columnBox.x + columnBox.width)); + return Math.abs(scrollBarBox.x - scrollBarMargin - (columnBox.x + columnBox.width)); }, { timeout: 3000 }).toBeLessThanOrEqual(1); } }); 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-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-when-sticky-header-with-top-props-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-when-sticky-header-with-top-props-1-chromium-linux.png index a019fa3dbb..eaebb6803a 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-when-sticky-header-with-top-props-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-when-sticky-header-with-top-props-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-when-sticky-header-with-top-props-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-when-sticky-header-with-top-props-1-firefox-linux.png index 63e4d1ec27..25e01b0e8b 100644 Binary files a/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-when-sticky-header-with-top-props-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-scroll.browser-test.tsx-snapshots/-visual-Verify-keyboard-when-sticky-header-with-top-props-1-firefox-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 cd268012e2..8c0ea55f0f 100644 --- a/semcore/data-table/__tests__/data-table-states.browser-test.tsx +++ b/semcore/data-table/__tests__/data-table-states.browser-test.tsx @@ -1,9 +1,29 @@ import { expect, test } from '@semcore/testing-utils/playwright'; +import type { Page } from '@semcore/testing-utils/playwright'; import { loadPage } from '@semcore/testing-utils/shared/helpers'; import { TAG } from '@semcore/testing-utils/shared/tags'; import { locators, checkStyles, getCssVarColor, getTransparentColor } from './utils'; +const PAGE_ORIGIN = 'https://data-table.test'; + +const setPageOrigin = async (page: Page) => { + await page.route(`${PAGE_ORIGIN}/**`, (route) => + route.fulfill({ contentType: 'text/html', body: '' })); + await page.goto(`${PAGE_ORIGIN}/`); +}; + +const hint = (page: Page) => page.locator('[data-ui-name="Hint"]'); + +/** Same wait as in the ellipsis tests: the hint is rendered, laid out and fully faded in. */ +const waitForHint = async (page: Page) => { + await hint(page).waitFor({ state: 'visible' }); + await page.waitForFunction(() => { + const el = document.querySelector('[data-ui-name="Hint"]'); + return el !== null && getComputedStyle(el).opacity === '1'; + }); +}; + /* ===================================================== @visual Visual states, hover and focus styles, paddings, margins, and snapshots. @@ -13,7 +33,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, browserName }) => { await loadPage(page, 'stories/components/data-table/docs/examples/spin-container-in-table.tsx', 'en'); await locators.button(page, 'Start loading').click(); @@ -33,7 +56,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 +79,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 +108,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 +157,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 +203,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 +239,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'); @@ -210,23 +252,26 @@ test.describe(`${TAG.VISUAL}`, () => { await page.keyboard.press('ArrowRight'); await page.keyboard.press('ArrowRight'); - await page.locator('[data-ui-name="Hint"]').waitFor({ state: 'visible' }); + await waitForHint(page); await expect(page).toHaveScreenshot(); await page.keyboard.press('ArrowDown'); await page.keyboard.press('ArrowDown'); await page.keyboard.press('ArrowDown'); - await page.locator('[data-ui-name="Hint"]').waitFor({ state: 'hidden' }); - await expect(page.locator('[data-ui-name="Hint"]')).toHaveCount(0); + await hint(page).waitFor({ state: 'hidden' }); + await expect(hint(page)).toHaveCount(0); }); - test(`Ellipsis with cropPosition = middle`, { + test(`Ellipsis with Action Link and cropPosition = middle`, { tag: [TAG.PRIORITY_HIGH, '@data-table', '@ellipsis', '@link', - '@base-components'], + '@base-components', + '@pagination', + ], }, async ({ page }) => { + await setPageOrigin(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 await page.keyboard.press('Tab'); @@ -234,15 +279,43 @@ 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 waitForHint(page); + await expect(page).toHaveScreenshot(); - await page.locator('[data-ui-name="Hint"]').waitFor({ state: 'visible' }); + await page.keyboard.press('Escape'); + await page.keyboard.press('Escape'); + await hint(page).waitFor({ state: 'hidden' }); + await expect(hint(page)).toHaveCount(0); + }); + + test(`Ellipsis with Action Link and cropPosition = end`, { + tag: [TAG.PRIORITY_HIGH, + '@data-table', + '@ellipsis', + '@link', + '@base-components', + '@pagination', + ], + }, async ({ page, browserName }) => { + test.skip(browserName === 'webkit', 'hint is unstable shown by keyboard focus in WebKit Playwright'); + + await setPageOrigin(page); + await loadPage(page, 'stories/components/base-components/ellipsis/tests/examples/in_table_with_link.tsx', 'en', { cropPosition: 'end' }); + await page.waitForTimeout(250); // wait for ellipsis apply + await page.keyboard.press('Tab'); + await page.waitForTimeout(200); // wait for ellipsis apply + await page.keyboard.press('ArrowRight'); + await page.keyboard.press('ArrowRight'); + await page.keyboard.press('ArrowRight'); + await page.keyboard.press('Enter'); + await waitForHint(page); await expect(page).toHaveScreenshot(); - await page.keyboard.press('ArrowDown'); - await page.keyboard.press('ArrowDown'); - await page.keyboard.press('ArrowDown'); - await page.locator('[data-ui-name="Hint"]').waitFor({ state: 'hidden' }); - await expect(page.locator('[data-ui-name="Hint"]')).toHaveCount(0); + await page.keyboard.press('Escape'); + await page.keyboard.press('Escape'); + await hint(page).waitFor({ state: 'hidden' }); + await expect(hint(page)).toHaveCount(0); }); }); @@ -250,7 +323,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 }); @@ -305,7 +384,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 }); @@ -317,7 +402,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', @@ -337,7 +428,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, @@ -362,7 +459,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, @@ -394,7 +497,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, @@ -420,7 +529,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, @@ -486,7 +601,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'); @@ -542,7 +661,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; @@ -560,7 +685,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, @@ -580,7 +711,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'); @@ -603,7 +740,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(); @@ -648,7 +791,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 }); } }); @@ -685,7 +828,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'); @@ -740,7 +888,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"]'); @@ -818,7 +968,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'); @@ -1139,7 +1295,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'); @@ -1242,6 +1404,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'); @@ -1274,6 +1447,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'); @@ -1299,7 +1475,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'); @@ -1352,7 +1532,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'); @@ -1373,7 +1559,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'); @@ -1402,7 +1594,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 }); @@ -1463,7 +1661,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 }); @@ -1515,7 +1719,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 }); @@ -1610,7 +1820,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 }); @@ -1685,6 +1901,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 }); @@ -1724,6 +1945,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 }); @@ -1752,7 +1978,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 }); @@ -1801,7 +2033,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 }); @@ -1839,7 +2077,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 }); @@ -1855,7 +2099,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 }); @@ -1880,7 +2130,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); @@ -1961,7 +2216,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); @@ -2151,7 +2412,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); @@ -2234,7 +2501,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 }); @@ -2279,7 +2551,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 }); @@ -2316,7 +2593,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 }); @@ -2352,7 +2633,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..4182f9e69a 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..4ba5fb8c96 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..a4bd064775 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..845daed9ce 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..348472f706 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..1c44ae0644 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..767f893a92 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..4f006df602 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..dc32cd70d2 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..7ac23b436d 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..5dfe3abf4d 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..6b3586198f 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..7548457811 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..20237b0115 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..3c3012bf4f 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..4e3ca925ad 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..141bb07403 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..ba2d935c90 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-Action-Link-and-cropPosition-end-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-Action-Link-and-cropPosition-end-1-chromium-linux.png new file mode 100644 index 0000000000..0ddd37751c Binary files /dev/null and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-Action-Link-and-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-Action-Link-and-cropPosition-end-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-Action-Link-and-cropPosition-end-1-firefox-linux.png new file mode 100644 index 0000000000..718be13374 Binary files /dev/null and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-Action-Link-and-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-Action-Link-and-cropPosition-middle-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-Action-Link-and-cropPosition-middle-1-chromium-linux.png new file mode 100644 index 0000000000..f77ed5c200 Binary files /dev/null and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-Action-Link-and-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-Action-Link-and-cropPosition-middle-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-Action-Link-and-cropPosition-middle-1-firefox-linux.png new file mode 100644 index 0000000000..7cb20a240d Binary files /dev/null and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-Action-Link-and-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-Action-Link-and-cropPosition-middle-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-Action-Link-and-cropPosition-middle-1-webkit-linux.png new file mode 100644 index 0000000000..fb1573c95d Binary files /dev/null and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-Ellipsis-Ellipsis-with-Action-Link-and-cropPosition-middle-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..7be1d1fe8f 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..03aa9877cd 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..02fd388e8e 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 deleted file mode 100644 index 8cae780ec4..0000000000 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 /dev/null 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 deleted file mode 100644 index bb2f46a131..0000000000 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 /dev/null 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 deleted file mode 100644 index 41f762fa7d..0000000000 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 /dev/null 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..28e3113f77 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..6e80c5c488 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..759987533e 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..056aaa0f67 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..9c8c0a93f1 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 6df789e15e..d426237ccc 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..096a5c04f1 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..2728071df0 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 7144915d6d..418380722d 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..74382e72f5 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..31439af4b4 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 new file mode 100644 index 0000000000..147b3bc981 Binary files /dev/null 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..518abebe7b 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..fc140be3c7 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..79a7885ba5 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..2c942ad1de 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..af2477f2f5 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..715c9eec8c 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..f71e173ad2 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..c6cd6a4466 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..1818640521 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 d0587052d3..abb2fe651e 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 2a99815a98..07b136c589 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 c42ce39588..064aeaa307 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..bf2443a7d7 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..903d5dd3b9 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..a479b666fd 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-sideIndents-wide-and-compact-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-1-chromium-linux.png index 76b256a635..8d2293e6e3 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-1-firefox-linux.png index 71d77c6696..00e1a45f22 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-1-webkit-linux.png index 545b726cb3..38ea10f63e 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-2-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-2-chromium-linux.png index f4f7985edf..f1f091d4de 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-2-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-2-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-2-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-2-firefox-linux.png index 76e4baddfc..3c0786143d 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-2-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-2-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-2-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-2-webkit-linux.png index cd85c4dabb..609c938c1a 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-2-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-Verify-sideIndents-wide-and-compact-2-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..a43bddf48c 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..cfd1a263f0 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..e000b0ad76 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..71b1656739 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..78291f9e93 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-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-1-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-1-chromium-linux.png index 76b256a635..8d2293e6e3 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-1-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-1-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-1-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-1-firefox-linux.png index 71d77c6696..00e1a45f22 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-1-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-1-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-1-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-1-webkit-linux.png index 545b726cb3..38ea10f63e 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-1-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-1-webkit-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-2-chromium-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-2-chromium-linux.png index f4f7985edf..f1f091d4de 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-2-chromium-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-2-chromium-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-2-firefox-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-2-firefox-linux.png index 76e4baddfc..3c0786143d 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-2-firefox-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-2-firefox-linux.png differ diff --git a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-2-webkit-linux.png b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-2-webkit-linux.png index cd85c4dabb..609c938c1a 100644 Binary files a/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-2-webkit-linux.png and b/semcore/data-table/__tests__/data-table-states.browser-test.tsx-snapshots/-visual-SelectableRows-legacy-API-Verify-sideIndents-wide-and-compact-2-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 61cb2a81e9..8e0cdd01dc 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/__tests__/link-action.test.tsx b/semcore/data-table/__tests__/link-action.test.tsx new file mode 100644 index 0000000000..a9ccbaa7df --- /dev/null +++ b/semcore/data-table/__tests__/link-action.test.tsx @@ -0,0 +1,184 @@ +import IconM from '@semcore/icon/Cards/m'; +import { render, cleanup, fireEvent } from '@semcore/testing-utils/testing-library'; +import { expect, describe, afterEach, test, vi } from '@semcore/testing-utils/vitest'; +import React from 'react'; + +import { LinkAction } from '../src/components/LinkAction/LinkAction'; + +afterEach(cleanup); + +const EXTERNAL_HREF = 'https://external.example.com/page'; +const RELATIVE_HREF = '/internal/page'; + +const clickAction = (onClick = () => {}) => ({ title: 'Analyze this URL', icon: IconM, onClick }); +const hrefAction = { title: 'Open in new tab', icon: IconM, href: '#target' }; + +/** The main link is the only anchor that wraps a `Link.Text` — action links never do. */ +const getMainLink = (container: HTMLElement) => + [...container.querySelectorAll('a[data-ui-name="Link"]')].find((anchor) => + anchor.querySelector('[data-ui-name="Link.Text"]'), + ); + +const getExternalIcons = (container: HTMLElement) => + container.querySelectorAll('[data-ui-name="Link.ExternalIcon"]'); + +describe('LinkAction', () => { + test('Verify the link renders its text and href', () => { + const { container } = render( + , + ); + + const link = getMainLink(container); + + expect(link).toBeInTheDocument(); + expect(link).toHaveAttribute('href', EXTERNAL_HREF); + expect(link?.querySelector('[data-ui-name="Link.Text"]')?.textContent).toBe('external.example.com/page'); + }); + + test('Verify a divider separates the link from the actions', () => { + const { container } = render( + , + ); + + const divider = container.querySelector('[data-ui-name="Divider"]'); + + expect(divider).toBeInTheDocument(); + expect(divider).toHaveAttribute('aria-orientation', 'vertical'); + }); + + describe('actions', () => { + test('Verify a single onClick action renders an accessible button and fires the handler', () => { + const onClick = vi.fn(); + const { container, getByRole } = render( + , + ); + + const button = getByRole('button', { name: 'Analyze this URL' }); + + expect(container.querySelectorAll('button[data-ui-name="Button"]')).toHaveLength(1); + + fireEvent.click(button); + + expect(onClick).toHaveBeenCalledTimes(1); + }); + + test('Verify a single href action renders an accessible link and does not fire onClick', () => { + const { container, getByRole } = render( + , + ); + + const actionLink = getByRole('link', { name: 'Open in new tab' }); + + expect(actionLink).toHaveAttribute('href', '#target'); + expect(container.querySelectorAll('button[data-ui-name="Button"]')).toHaveLength(0); + }); + + test('Verify both actions are rendered when a tuple is passed', () => { + const onClick = vi.fn(); + const { getByRole } = render( + , + ); + + expect(getByRole('link', { name: 'Open in new tab' })).toBeInTheDocument(); + expect(getByRole('button', { name: 'Analyze this URL' })).toBeInTheDocument(); + }); + }); + + describe('ellipsisSettings', () => { + test('Verify cropPosition reaches Link.Text', () => { + const { container } = render( + , + ); + + const text = getMainLink(container)?.querySelector('[data-ui-name="Link.Text"]'); + + expect(text?.className).toMatch(/trim_middle/); + }); + + /** + * The root flows inline so an untruncated link can wrap with the surrounding text, and + * becomes a flex container once Ellipsis has to measure a single line. + */ + test('Verify the root switches from inline to flex when ellipsisSettings are passed', () => { + const { container: flowing } = render( + , + ); + + expect(flowing.firstElementChild).toHaveStyle('display: inline'); + + cleanup(); + + const { container: truncating } = render( + , + ); + + expect(truncating.firstElementChild).toHaveStyle('display: flex'); + }); + }); + + describe('external link detection', () => { + test('Verify an external href gets the icon, target=_blank and a screen reader announcement', () => { + const { container } = render( + , + ); + + const link = getMainLink(container); + + expect(getExternalIcons(container)).toHaveLength(1); + expect(link).toHaveAttribute('target', '_blank'); + expect(link?.getAttribute('aria-describedby')).toBeTruthy(); + }); + + test('Verify a relative href gets no icon and no target', () => { + const { container } = render( + , + ); + + expect(getExternalIcons(container)).toHaveLength(0); + expect(getMainLink(container)?.getAttribute('target')).toBeNull(); + }); + + test('Verify a same-origin absolute href gets no icon', () => { + const { container } = render( + , + ); + + expect(getExternalIcons(container)).toHaveLength(0); + }); + + test('Verify the external icon is never shown without target=_blank', () => { + const { container } = render( + , + ); + + const hasIcon = getExternalIcons(container).length > 0; + const opensInNewTab = getMainLink(container)?.getAttribute('target') === '_blank'; + + expect(hasIcon).toBe(opensInNewTab); + }); + + test('Verify text starting with "http" does not suppress the external icon', () => { + const { container } = render( + , + ); + + expect(getMainLink(container)).toHaveAttribute('target', '_blank'); + expect(getExternalIcons(container)).toHaveLength(1); + }); + }); +}); diff --git a/semcore/data-table/__tests__/utils.ts b/semcore/data-table/__tests__/utils.ts index 5466711b9f..c37a306184 100644 --- a/semcore/data-table/__tests__/utils.ts +++ b/semcore/data-table/__tests__/utils.ts @@ -29,8 +29,33 @@ export const locators = { page.locator(`[data-ui-name="Head.Column"][aria-colindex="${i}"]`), sortButton: (page: Page, col: any) => locators.getHeadColumn(page, col).locator('button[data-ui-name="ButtonLink"]'), + /** The text-carrying link of a LinkAction; its action links hold no `Link.Text`. */ + linkActionLink: (page: Page, row: number, col: number) => + locators.getCell(page, row, col).locator('a[data-ui-name="Link"]').first(), + linkActionText: (page: Page, row: number, col: number) => + locators.linkActionLink(page, row, col).locator('[data-ui-name="Link.Text"]').first(), + linkActionExternalIcon: (page: Page, row: number, col: number) => + locators.getCell(page, row, col).locator('[data-ui-name="Link.ExternalIcon"]'), + linkActionDivider: (page: Page, row: number, col: number) => + locators.getCell(page, row, col).locator('[data-ui-name="Divider"]'), + /** Icon-only actions carry no text, so `title` is the only source of their name. */ + linkActionHrefAction: (page: Page, row: number, col: number, name: string) => + locators.getCell(page, row, col).getByRole('link', { name }), + linkActionClickAction: (page: Page, row: number, col: number, name: string) => + locators.getCell(page, row, col).getByRole('button', { name }), }; +/** True while every control in the cell still sits within the cell's right edge. */ +export async function controlsFitInCell(page: Page, row: number, col: number) { + return locators.getCell(page, row, col).evaluate((cell) => { + const right = cell.getBoundingClientRect().right; + + return [...cell.querySelectorAll('button, a')].every( + (el) => el.getBoundingClientRect().right <= right + 1, + ); + }); +} + export async function getColumnWidth(page: any, colIndex: any) { const column = await page.locator(`[aria-colindex="${colIndex}"][role="columnheader"]`); const box = await column.boundingBox(); diff --git a/semcore/data-table/package.json b/semcore/data-table/package.json index 160ab64d8a..b6fdc0956b 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": { @@ -36,6 +38,7 @@ "@semcore/spin-container": "workspace:*", "@semcore/tooltip": "workspace:*", "@semcore/base-components": "workspace:*", + "@semcore/link": "workspace:*", "@semcore/icon": "workspace:*", "@types/node": "18.16.15", "csstype": "3.1.3" diff --git a/semcore/data-table/src/components/Body/style.shadow.css b/semcore/data-table/src/components/Body/style.shadow.css index a0cc758ed2..4fa45781ff 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)); } } @@ -151,7 +151,7 @@ SCell { display: flex; height: 100%; font-size: var(--intergalactic-fs-200, 14px); - line-height: var(--intergalactic-lh-200, 142%); + line-height: var(--intergalactic-lh-200, 1.4286); color: var(--intergalactic-text-primary, oklch(0.1 0.03 137 / 0.899)); box-sizing: border-box; border-bottom: 1px solid var(--intergalactic-border-secondary, oklch(0.176 0.033 175.7 / 0.07)); @@ -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 9edb597df2..145653f236 100644 --- a/semcore/data-table/src/components/Head/style.shadow.css +++ b/semcore/data-table/src/components/Head/style.shadow.css @@ -55,7 +55,7 @@ SGroup, SColumn { position: relative; transition: width calc(var(--intergalactic-duration-extra-fast, 100) * 1ms) ease-in-out, min-width calc(var(--intergalactic-duration-extra-fast, 100) * 1ms) ease-in-out, max-width calc(var(--intergalactic-duration-extra-fast, 100) * 1ms) ease-in-out; overflow: hidden; - line-height: var(--intergalactic-lh-100, 133%); + line-height: var(--intergalactic-lh-100, 1.3334); } SGroup { @@ -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..393c3867e8 --- /dev/null +++ b/semcore/data-table/src/components/LinkAction/LinkAction.tsx @@ -0,0 +1,117 @@ +import type { NSEllipsis } from '@semcore/base-components'; +import { Flex, Box } from '@semcore/base-components'; +import Button from '@semcore/button'; +import Divider from '@semcore/divider'; +import type Icon from '@semcore/icon'; +import Link from '@semcore/link'; +import React from 'react'; + +interface ILink { + href: string; + text: string; + ellipsisSettings?: NSEllipsis.Settings; +} + +interface ICommonAction { + icon: typeof Icon; + title: string; +} + +type IAction = ICommonAction & ({ + onClick: (e: React.SyntheticEvent) => void; +} | { + href: string; +}); + +interface IProps { + children?: never; + link: ILink; + actions: IAction | [IAction, IAction]; +} + +export class LinkAction extends React.PureComponent { + private renderAction(action: IAction) { + if ('href' in action) { + return ( + + ); + } + + return ( + @@ -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/notice/docs/examples/basic_notice.tsx b/stories/components/notice/docs/examples/basic_notice.tsx index 354d9fa51f..97c1ae69b7 100644 --- a/stories/components/notice/docs/examples/basic_notice.tsx +++ b/stories/components/notice/docs/examples/basic_notice.tsx @@ -7,12 +7,8 @@ import Notice from '@semcore/ui/notice'; import React from 'react'; const Demo = () => ( - - - - - - + + }> New keyboard shortcuts are available @@ -22,7 +18,7 @@ const Demo = () => ( - @@ -31,11 +27,7 @@ const Demo = () => ( - - - - - + }> Data export is in progress @@ -45,7 +37,7 @@ const Demo = () => ( - @@ -54,11 +46,7 @@ const Demo = () => ( - - - - - + }> Payment method expires soon @@ -68,7 +56,7 @@ const Demo = () => ( - @@ -77,11 +65,7 @@ const Demo = () => ( - - - - - + }> API request limit reached @@ -91,7 +75,7 @@ const Demo = () => ( - @@ -100,11 +84,7 @@ const Demo = () => ( - - - - - + }> Backup completed successfully @@ -114,7 +94,7 @@ const Demo = () => ( - diff --git a/stories/components/notice/docs/examples/custom_notice.tsx b/stories/components/notice/docs/examples/custom_notice.tsx index ca9289efc6..a8fe789917 100644 --- a/stories/components/notice/docs/examples/custom_notice.tsx +++ b/stories/components/notice/docs/examples/custom_notice.tsx @@ -4,10 +4,7 @@ import Notice, { type NSNotice } from '@semcore/ui/notice'; import React from 'react'; const Demo = (props: NSNotice.Props) => ( - - - - + } illustration={undefined}> Strategize your next move with daily and weekly traffic data diff --git a/stories/components/notice/docs/examples/noticesmart.tsx b/stories/components/notice/docs/examples/noticesmart.tsx index 6083037a03..1ce15e3dc8 100644 --- a/stories/components/notice/docs/examples/noticesmart.tsx +++ b/stories/components/notice/docs/examples/noticesmart.tsx @@ -13,7 +13,7 @@ const Demo = () => { return ( } + icon={} aria-label='New tool announcement' closable onClose={() => setFirstHidden(true)} @@ -25,7 +25,7 @@ const Demo = () => { } + icon={} title="We've released a cool new feature!" closable onClose={() => setSecondHidden(true)} @@ -40,7 +40,7 @@ const Demo = () => { } + icon={} aria-label='Maintenance notice' text='Starting new campaigns is temporarily unavailable, but you can continue working with your existing Link Building campaigns.' /> diff --git a/stories/components/notice/tests/Notice.stories.tsx b/stories/components/notice/tests/Notice.stories.tsx index aff2592fa3..807a3b8ee8 100644 --- a/stories/components/notice/tests/Notice.stories.tsx +++ b/stories/components/notice/tests/Notice.stories.tsx @@ -2,8 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react-vite'; import NoticeBigIllustrationExample from './examples/notice_big_illustration'; import NoticeMediumIllustrationExample from './examples/notice_medium_illustration'; -import NoticeSmallIllustrationExample from './examples/notice_small_illustration'; -import NoticeStatesExample from './examples/notice_with_different_states'; +import NoticeSmartFullPropsExample, { defaultNoticeSmartProps } from './examples/noticesmart_full_props'; const meta: Meta = { title: 'Components/Notice/Tests', @@ -14,14 +13,37 @@ export const NoticeMediumIllustration: StoryObj = { render: NoticeMediumIllustrationExample, }; -export const NoticeSmallIllustration: StoryObj = { - render: NoticeSmallIllustrationExample, -}; - export const NoticeBigIllustration: StoryObj = { render: NoticeBigIllustrationExample, }; -export const NoticeStates: StoryObj = { - render: NoticeStatesExample, +const noticeSmartArgTypes = { + theme: { + control: { type: 'select' }, + options: ['info', 'muted', 'warning', 'danger', 'success'], + }, + media: { + control: { type: 'inline-radio' }, + options: ['none', 'icon', 'illustration'], + description: 'icon and illustration are mutually exclusive, so they share one control', + }, + icon: { + control: { type: 'select' }, + options: ['Info', 'ThumbUp', 'Question'], + description: 'Applied when media is set to icon', + }, + withActions: { control: { type: 'boolean' } }, + closable: { control: { type: 'boolean' } }, + hidden: { control: { type: 'boolean' } }, + title: { control: { type: 'text' }, description: 'Empty value removes the title' }, + text: { control: { type: 'text' }, description: 'Empty value removes the text' }, + w: { control: { type: 'number' }, description: 'Notice width, px' }, + duration: { control: { type: 'number' }, description: 'Animation duration, ms' }, + locale: { control: { type: 'select' }, options: ['en', 'es'] }, +} as const; + +export const NoticeSmartFullProps: StoryObj = { + render: NoticeSmartFullPropsExample, + argTypes: noticeSmartArgTypes, + args: defaultNoticeSmartProps, }; diff --git a/stories/components/notice/tests/examples/notice_big_illustration.tsx b/stories/components/notice/tests/examples/notice_big_illustration.tsx index efbd292aa9..0c048b1ebe 100644 --- a/stories/components/notice/tests/examples/notice_big_illustration.tsx +++ b/stories/components/notice/tests/examples/notice_big_illustration.tsx @@ -6,12 +6,8 @@ import Notice from '@semcore/ui/notice'; import React from 'react'; const Demo = () => ( - - - - - - + + }> Your subscription has expired @@ -21,7 +17,7 @@ const Demo = () => ( - @@ -30,11 +26,7 @@ const Demo = () => ( - - - - - + }> Your subscription has expired @@ -44,7 +36,7 @@ const Demo = () => ( - @@ -53,11 +45,7 @@ const Demo = () => ( - - - - - + }> Your subscription has expired @@ -70,7 +58,7 @@ const Demo = () => ( - @@ -79,11 +67,7 @@ const Demo = () => ( - - - - - + }> Your subscription has expired @@ -96,7 +80,7 @@ const Demo = () => ( - @@ -105,11 +89,7 @@ const Demo = () => ( - - - - - + }> Your subscription has expired @@ -119,7 +99,7 @@ const Demo = () => ( - diff --git a/stories/components/notice/tests/examples/notice_medium_illustration.tsx b/stories/components/notice/tests/examples/notice_medium_illustration.tsx index b89a6ea303..ee023a3d05 100644 --- a/stories/components/notice/tests/examples/notice_medium_illustration.tsx +++ b/stories/components/notice/tests/examples/notice_medium_illustration.tsx @@ -6,12 +6,8 @@ import Notice from '@semcore/ui/notice'; import React from 'react'; const Demo = () => ( - - - - - - + + }> Your subscription has expired @@ -21,7 +17,7 @@ const Demo = () => ( - @@ -30,11 +26,7 @@ const Demo = () => ( - - - - - + }> Your subscription has expired @@ -44,7 +36,7 @@ const Demo = () => ( - @@ -53,11 +45,7 @@ const Demo = () => ( - - - - - + }> Your subscription has expired @@ -70,7 +58,7 @@ const Demo = () => ( - @@ -79,11 +67,7 @@ const Demo = () => ( - - - - - + }> Your subscription has expired @@ -96,7 +80,7 @@ const Demo = () => ( - @@ -105,11 +89,7 @@ const Demo = () => ( - - - - - + }> Your subscription has expired @@ -119,7 +99,7 @@ const Demo = () => ( - diff --git a/stories/components/notice/tests/examples/notice_small_illustration.tsx b/stories/components/notice/tests/examples/notice_small_illustration.tsx deleted file mode 100644 index b0f651b951..0000000000 --- a/stories/components/notice/tests/examples/notice_small_illustration.tsx +++ /dev/null @@ -1,133 +0,0 @@ -import Coffee from '@semcore/illustration/Coffee'; -import MailSent from '@semcore/illustration/MailSent'; -import { Flex } from '@semcore/ui/base-components'; -import Button from '@semcore/ui/button'; -import Notice from '@semcore/ui/notice'; -import React from 'react'; - -const Demo = () => ( - - - - - - - - Your subscription has expired - - - 49 out of your 50 projects are now locked. They will be deleted in 7 days (on August 22). - To unlock your projects, please upgrade your subscription. - - - - - - - - - - - - - - - - - Your subscription has expired - - - 49 out of your 50 projects are now locked. They will be deleted in 7 days (on August 22). - To unlock your projects, please upgrade your subscription. - - - - - - - - - - - - - - - - - Your subscription has expired - - - 49 out of your 50 projects are now locked. They will be deleted in 7 days (on August 22). - To unlock your projects, please upgrade your subscription.Please tell us how to improve - something. 49 out of your Star Wars: The Force Awakens shattered box office records upon - its debut becoming the biggest film of all time in. The reports are based on the data from - the Russian Federation and the CIS. - - - - - - - - - - - - - - - - - Your subscription has expired - - - 49 out of your 50 projects are now locked. They will be deleted in 7 days (on August 22). - To unlock your projects, please upgrade your subscription.Please tell us how to improve - something. 49 out of your Star Wars: The Force Awakens shattered box office records upon - its debut becoming the biggest film of all time in. The reports are based on the data from - the Russian Federation and the CIS. - - - - - - - - - - - - - - - - - Your subscription has expired - - - 49 out of your 50 projects are now locked. They will be deleted in 7 days (on August 22). - To unlock your projects, please upgrade your subscription. - - - - - - - - - - -); - -export default Demo; diff --git a/stories/components/notice/tests/examples/notice_with_different_states.tsx b/stories/components/notice/tests/examples/notice_with_different_states.tsx deleted file mode 100644 index dce555e50e..0000000000 --- a/stories/components/notice/tests/examples/notice_with_different_states.tsx +++ /dev/null @@ -1,141 +0,0 @@ -import AlertM from '@semcore/icon/Book/m'; -import InfoM from '@semcore/icon/Info/m'; -import ThumbUpM from '@semcore/icon/ThumbUp/m'; -import WarningM from '@semcore/icon/Warning/m'; -import { Flex } from '@semcore/ui/base-components'; -import Button from '@semcore/ui/button'; -import Notice, { NoticeSmart } from '@semcore/ui/notice'; -import React from 'react'; - -const NoticeSmokeDemo = () => { - const [hidden, setHidden] = React.useState(true); - - return ( - - {/* 1. Minimal Notice */} - - - This is an info notice - - - - {/* 2. Full Featured Notice */} - - - - - - Success! - Everything worked just fine. - - - - - - - - - {/* 3. Title only + Close */} - - - Pay attention - - - - - {/* 4. Icon + Text only */} - - - - - - Something went wrong. - - - - {/* 5. Actions only */} - - - - - - - - - {/* 6. No Content (edge case) */} - - - - - - - - {/* 7. Long text, layout check */} - - - - This is a very long message that should ideally wrap and not break layout or overflow. - - - - - {/* 8. Aria-live announcement */} - - - We'll notify you when it's ready. - - - - {/* 9. Custom theme with color string */} - - Purple - - - Text Notice - - - - - - {/* 10. Duration prop */} - - Duration - - Text Notice - - - - - {/* 11. Hidden toggle */} -
- - -
- - {/* 12. NoticeSmart muted + closable */} - } - text='Muted closable notice' - closable - data-testid='muted-closable' - /> - - {/* 13. NoticeSmart with actions only */} - Retry action} - data-testid='actions-only' - /> -
- ); -}; - -export default NoticeSmokeDemo; diff --git a/stories/components/notice/tests/examples/noticesmart_full_props.tsx b/stories/components/notice/tests/examples/noticesmart_full_props.tsx new file mode 100644 index 0000000000..15a8dc9bb8 --- /dev/null +++ b/stories/components/notice/tests/examples/noticesmart_full_props.tsx @@ -0,0 +1,83 @@ +import InfoM from '@semcore/icon/Info/m'; +import QuestionM from '@semcore/icon/Question/m'; +import ThumbUpM from '@semcore/icon/ThumbUp/m'; +import Coffee from '@semcore/illustration/Coffee'; +import { Flex } from '@semcore/ui/base-components'; +import Button from '@semcore/ui/button'; +import { NoticeSmart } from '@semcore/ui/notice'; +import type { NSNoticeSmart } from '@semcore/ui/notice'; +import React from 'react'; + +type Media = 'none' | 'icon' | 'illustration'; +type IconName = 'Info' | 'ThumbUp' | 'Question'; + +type ExampleProps = Omit & { + /** icon and illustration are mutually exclusive, so one control drives both */ + media: Media; + icon: IconName; + withActions: boolean; +}; + +const ICONS = { Info: InfoM, ThumbUp: ThumbUpM, Question: QuestionM }; + +const mediaProps = (media: Media, iconName: IconName) => { + if (media === 'icon') { + const Icon = ICONS[iconName]; + + return { icon: }; + } + + if (media === 'illustration') { + return { illustration: }; + } + + return {}; +}; + +const Demo = (props: ExampleProps) => { + const { media, icon, withActions, theme, title, text, closable, hidden, duration, locale, w } = props; + const [closed, setClosed] = React.useState(false); + + React.useEffect(() => setClosed(false), [closable, hidden, media, theme]); + + return ( + + + ); +}; + +export const defaultNoticeSmartProps: ExampleProps = { + theme: 'info', + media: 'icon', + icon: 'Info', + withActions: true, + closable: true, + hidden: false, + title: 'New tool was launched', + text: 'Hi there! A cool new tool was launched. Take a look at what it can do for your reports.', +}; + +Demo.defaultProps = defaultNoticeSmartProps; +export default Demo; 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/progress-bar/advanced/examples/all_themes.tsx b/stories/components/progress-bar/advanced/examples/all_themes.tsx index 5a51566c4c..6dad72f519 100644 --- a/stories/components/progress-bar/advanced/examples/all_themes.tsx +++ b/stories/components/progress-bar/advanced/examples/all_themes.tsx @@ -16,6 +16,29 @@ export default function AllThemes() {
+ + + + + + + + + + +
diff --git a/stories/components/progress-bar/advanced/examples/complex_usage_example.tsx b/stories/components/progress-bar/advanced/examples/complex_usage_example.tsx deleted file mode 100644 index 00feb0e31f..0000000000 --- a/stories/components/progress-bar/advanced/examples/complex_usage_example.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import { Box } from '@semcore/ui/base-components'; -import ProgressBar from '@semcore/ui/progress-bar'; -import { Text } from '@semcore/ui/typography'; -import React from 'react'; - -const maxValue = 2000; - -const Demo = () => { - const [value, setValue] = React.useState(0); - - React.useEffect(() => { - const timerFetch = setInterval(() => { - setValue((value) => (value < maxValue ? value + 400 : 0)); - }, 2000); - return () => { - clearInterval(timerFetch); - }; - }, []); - - return ( -
- - {value ? `${value}/${maxValue}` : 'Starting...'} - - -
- ); -}; - -export default Demo; diff --git a/stories/components/progress-bar/advanced/progress-bar.stories.tsx b/stories/components/progress-bar/advanced/progress-bar.stories.tsx index fd7a4ae37c..7303003ac2 100644 --- a/stories/components/progress-bar/advanced/progress-bar.stories.tsx +++ b/stories/components/progress-bar/advanced/progress-bar.stories.tsx @@ -2,7 +2,6 @@ import ProgressBar from '@semcore/ui/progress-bar'; import type { Meta, StoryObj } from '@storybook/react-vite'; import AllThemesExample from './examples/all_themes'; -import ComplexUsageExample from './examples/complex_usage_example'; const meta: Meta = { title: 'Components/ProgressBar/Advanced', @@ -16,7 +15,3 @@ export const all_themes: Story = { name: 'All themes', render: AllThemesExample, }; - -export const ComplexUsage: Story = { - render: ComplexUsageExample, -}; diff --git a/stories/components/progress-bar/docs/examples/customizing_the_bar.tsx b/stories/components/progress-bar/docs/examples/customizing_the_bar.tsx deleted file mode 100644 index f5e59a822d..0000000000 --- a/stories/components/progress-bar/docs/examples/customizing_the_bar.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import ProgressBar from '@semcore/ui/progress-bar'; -import type { NSProgressBar } from '@semcore/ui/progress-bar'; -import React from 'react'; - -type ProgressBarExampleProps = NSProgressBar.Props; -const Demo = (props: ProgressBarExampleProps) => { - return ( - - - - ); -}; - -export const defaultProps: ProgressBarExampleProps = { - size: 'm', - value: 60, - theme: 'progress-bar-bg', - duration: undefined, -}; - -Demo.defaultProps = defaultProps; - -export default Demo; diff --git a/stories/components/progress-bar/docs/progress-bar.stories.tsx b/stories/components/progress-bar/docs/progress-bar.stories.tsx index 5d864aa998..b5574b2f3c 100644 --- a/stories/components/progress-bar/docs/progress-bar.stories.tsx +++ b/stories/components/progress-bar/docs/progress-bar.stories.tsx @@ -2,7 +2,6 @@ import ProgressBar from '@semcore/ui/progress-bar'; import type { Meta, StoryObj } from '@storybook/react-vite'; import BasicUsageExample from './examples/basic-usage'; -import CustomizingTheBarExample, { defaultProps as CustomizingTheBarProps } from './examples/customizing_the_bar'; const meta: Meta = { title: 'Components/ProgressBar/Documentation', @@ -15,21 +14,3 @@ type Story = StoryObj; export const BasicUsage: Story = { render: BasicUsageExample, }; - -export const CustomizingTheBar: StoryObj = { - render: CustomizingTheBarExample, - argTypes: { - size: { - control: { type: 'select' }, - options: ['s', 'm', 'l'], - }, - theme: { - control: { type: 'select' }, - options: ['invert', 'dark', 'violet-100'], - }, - value: { - control: { type: 'number' }, - }, - }, - args: CustomizingTheBarProps, -}; diff --git a/stories/components/progress-bar/tests/examples/customizing_the_bar_with_background.tsx b/stories/components/progress-bar/tests/examples/customizing_the_bar_with_background.tsx index 6c00af1d1d..01957478bf 100644 --- a/stories/components/progress-bar/tests/examples/customizing_the_bar_with_background.tsx +++ b/stories/components/progress-bar/tests/examples/customizing_the_bar_with_background.tsx @@ -1,23 +1,105 @@ -import { Box } from '@semcore/ui/base-components'; +import { Box, Flex } from '@semcore/ui/base-components'; import ProgressBar from '@semcore/ui/progress-bar'; import type { NSProgressBar } from '@semcore/ui/progress-bar'; +import { Text } from '@semcore/ui/typography'; import React from 'react'; -type ProgressBarExampleProps = NSProgressBar.Props; +type ProgressBarExampleProps = NSProgressBar.Props & { + valueTheme?: string; +}; + +const BACKGROUNDS = [ + { bg: 'bg-primary-neutral', textColor: 'text-primary', label: 'Light background' }, + { bg: 'bg-primary-invert', textColor: 'text-primary-invert', label: 'Dark background' }, +] as const; + const Demo = (props: ProgressBarExampleProps) => { + const { theme, size, value, duration, valueTheme } = props; + const valueProps = valueTheme ? { theme: valueTheme } : {}; + return ( - - - - + + {BACKGROUNDS.map((background) => ( + + + + {background.label} + {' '} + — theme= + {String(theme)} + , size= + {String(size)} + {valueTheme ? `, value theme=${valueTheme}` : ''} + + + + + controlled value: {String(value)} + + + + + + + + + value=0 + + + + + + + value=100 + + + + + + + + + no value prop + + {/* `value` is intentionally not passed: the animated pattern renders only when value === undefined */} + + + + + ))} + ); }; export const defaultProps: ProgressBarExampleProps = { + theme: 'default', size: 'm', - value: 80, - theme: undefined, - duration: undefined, + value: 60, + duration: 1000, }; Demo.defaultProps = defaultProps; diff --git a/stories/components/progress-bar/tests/examples/customizing_the_value.tsx b/stories/components/progress-bar/tests/examples/customizing_the_value.tsx deleted file mode 100644 index c2d85ab3b3..0000000000 --- a/stories/components/progress-bar/tests/examples/customizing_the_value.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import { Box } from '@semcore/ui/base-components'; -import ProgressBar from '@semcore/ui/progress-bar'; -import type { NSProgressBar } from '@semcore/ui/progress-bar'; -import React from 'react'; - -type ProgressBarExampleProps = NSProgressBar.Value.Props; -const Demo = (props: ProgressBarExampleProps) => { - return ( - - - - - - - - ); -}; - -export const defaultProps: ProgressBarExampleProps = { - size: 'm', - value: 80, - theme: undefined, - duration: undefined, -}; - -Demo.defaultProps = defaultProps; - -export default Demo; diff --git a/stories/components/progress-bar/tests/progress-bar.stories.tsx b/stories/components/progress-bar/tests/progress-bar.stories.tsx index 400e74dd41..dc535d56e0 100644 --- a/stories/components/progress-bar/tests/progress-bar.stories.tsx +++ b/stories/components/progress-bar/tests/progress-bar.stories.tsx @@ -2,7 +2,6 @@ import ProgressBar from '@semcore/ui/progress-bar'; import type { Meta, StoryObj } from '@storybook/react-vite'; import CustomizingTheBarExample, { defaultProps as CustomizingTheBarProps } from './examples/customizing_the_bar_with_background'; -import CustomizingTheValueExample, { defaultProps as CustomizingTheValueProps } from './examples/customizing_the_value'; const meta: Meta = { title: 'Components/ProgressBar/Tests', @@ -11,35 +10,41 @@ const meta: Meta = { export default meta; -const commonArgTypes = { - size: { - control: { type: 'select' }, - options: ['s', 'm', 'l'], - }, - value: { - control: { type: 'number' }, - }, - duration: { - control: { type: 'number' }, - }, - theme: { - control: { type: 'select' }, - options: ['invert', 'dark', 'violet-100'], - }, -} as const; +/** Built-in themes of the root component. Anything else is resolved as a color token. */ +const BUILT_IN_THEMES = ['default', 'invert', 'brand']; +/** Colors used to exercise the custom-theme path. */ +const COLOR_TOKENS = ['violet-dusty-500', 'pink-400', 'violet-100', 'brand-secondary']; export const CustomizingTheBar: StoryObj = { render: CustomizingTheBarExample, argTypes: { - ...commonArgTypes, + size: { + control: { type: 'select' }, + options: ['s', 'm', 'l'], + description: 'Height and border-radius of the bar', + }, + value: { + control: { type: 'number' }, + description: 'Progress as a percentage. Omit it to get the indeterminate animated bar', + }, + duration: { + control: { type: 'number' }, + description: 'Animation/transition duration in ms', + }, + theme: { + control: { type: 'select' }, + options: [...BUILT_IN_THEMES, ...COLOR_TOKENS], + description: + 'Built-in themes are `default`, `invert` and `brand`. Any other value falls through to the custom-theme path and is resolved as a color token.', + }, + valueTheme: { + control: { type: 'select' }, + // only custom colors: a built-in theme name is not a color token, so it would + // leave ProgressBar.Value without a color + options: [undefined, ...COLOR_TOKENS], + description: + 'Color token passed to `ProgressBar.Value`. Custom colors only. Deprecated on the component itself — prefer the root `theme`.', + }, }, args: CustomizingTheBarProps, }; - -export const CustomizingTheValue: StoryObj = { - render: CustomizingTheValueExample, - argTypes: { - ...commonArgTypes, - }, - args: CustomizingTheValueProps, -}; 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/side-panel/docs/examples/access_to_internal_components.tsx b/stories/components/side-panel/docs/examples/access_to_internal_components.tsx index 2ff26047d3..feec69339e 100644 --- a/stories/components/side-panel/docs/examples/access_to_internal_components.tsx +++ b/stories/components/side-panel/docs/examples/access_to_internal_components.tsx @@ -21,7 +21,7 @@ const Demo = (props: NSSidePanel.Props) => { - Taking the Stage + Taking the Stage diff --git a/stories/components/side-panel/docs/examples/advanced_example.tsx b/stories/components/side-panel/docs/examples/advanced_example.tsx index ca62f13489..d62b0967c0 100644 --- a/stories/components/side-panel/docs/examples/advanced_example.tsx +++ b/stories/components/side-panel/docs/examples/advanced_example.tsx @@ -1,4 +1,6 @@ -import Button from '@semcore/ui/button'; +import ArrowLeft from '@semcore/icon/ArrowLeft/m'; +import { Flex } from '@semcore/ui/base-components'; +import Button, { ButtonLink } from '@semcore/ui/button'; import SidePanel from '@semcore/ui/side-panel'; import type { NSSidePanel } from '@semcore/ui/side-panel'; import React from 'react'; @@ -17,14 +19,16 @@ const Demo = (props: NSSidePanel.Props) => { closable={props.closable} disablePreventScroll={props.disablePreventScroll} > - - Go to Tool Name - SidePanel title + + + + SidePanel title + Content - + - + diff --git a/stories/components/side-panel/docs/examples/basic_example.tsx b/stories/components/side-panel/docs/examples/basic_example.tsx index 9f0858422e..35b55a77d5 100644 --- a/stories/components/side-panel/docs/examples/basic_example.tsx +++ b/stories/components/side-panel/docs/examples/basic_example.tsx @@ -19,7 +19,7 @@ const Demo = (props: NSSidePanel.Props) => { disablePreventScroll={props.disablePreventScroll} > - SidePanel Title + SidePanel Title diff --git a/stories/components/side-panel/docs/examples/disabling_overlay.tsx b/stories/components/side-panel/docs/examples/disabling_overlay.tsx index 77aa8a7550..adb26998ff 100644 --- a/stories/components/side-panel/docs/examples/disabling_overlay.tsx +++ b/stories/components/side-panel/docs/examples/disabling_overlay.tsx @@ -19,7 +19,7 @@ const Demo = (props: NSSidePanel.Props) => { > - SidePanel Title + SidePanel Title diff --git a/stories/components/side-panel/docs/examples/portals.tsx b/stories/components/side-panel/docs/examples/portals.tsx index d613985076..cf875ff6bd 100644 --- a/stories/components/side-panel/docs/examples/portals.tsx +++ b/stories/components/side-panel/docs/examples/portals.tsx @@ -12,7 +12,7 @@ const Demo = () => { setVisible(false)} disablePortal> - SidePanel Title + SidePanel Title diff --git a/stories/components/side-panel/tests/examples/additional-content-in-header.tsx b/stories/components/side-panel/tests/examples/additional-content-in-header.tsx index 55387b1556..4d602c8013 100644 --- a/stories/components/side-panel/tests/examples/additional-content-in-header.tsx +++ b/stories/components/side-panel/tests/examples/additional-content-in-header.tsx @@ -1,4 +1,5 @@ -import Button from '@semcore/ui/button'; +import ArrowLeft from '@semcore/icon/ArrowLeft/m'; +import Button, { ButtonLink } from '@semcore/ui/button'; import SidePanel from '@semcore/ui/side-panel'; import { Text } from '@semcore/ui/typography'; import React from 'react'; @@ -20,9 +21,8 @@ export default function Demo() { - Back - + Static text: {dynamicText} diff --git a/stories/components/side-panel/tests/examples/side-panel-additional-states.tsx b/stories/components/side-panel/tests/examples/side-panel-additional-states.tsx index 23b06ce2cc..1360b6ff07 100644 --- a/stories/components/side-panel/tests/examples/side-panel-additional-states.tsx +++ b/stories/components/side-panel/tests/examples/side-panel-additional-states.tsx @@ -1,8 +1,10 @@ +import ArrowLeft from '@semcore/icon/ArrowLeft/m'; import FileExportM from '@semcore/icon/FileExport/m'; import { Box, Flex } from '@semcore/ui/base-components'; -import Button from '@semcore/ui/button'; +import Button, { ButtonLink } from '@semcore/ui/button'; import SidePanel from '@semcore/ui/side-panel'; import Tooltip from '@semcore/ui/tooltip'; +import { Text } from '@semcore/ui/typography'; import React from 'react'; export type SidePanelDemoProps = { @@ -12,7 +14,6 @@ export type SidePanelDemoProps = { withAdditionalHeaderContent?: boolean; withTooltipInBody?: boolean; withFooter?: boolean; - backText?: string; backWMax?: number; animationsDisabled?: boolean; forcedAdvancedMode?: boolean; @@ -25,22 +26,26 @@ export const defaultSidePanelDemoProps: SidePanelDemoProps = { withAdditionalHeaderContent: false, withTooltipInBody: false, withFooter: false, - backText: 'Go to Tool Name', animationsDisabled: false, forcedAdvancedMode: false, }; const Demo = (props: SidePanelDemoProps) => { const [visible, setVisible] = React.useState(false); - const backText = props.backText ?? defaultSidePanelDemoProps.backText; + const ellipsisProps = { + 'ellipsis': props.ellipsisTitle, + 'ellipsis:maxLine': props.ellipsisMaxLine && props.ellipsisMaxLine > 1 ? props.ellipsisMaxLine : undefined, + }; const content = ( <> {props.withClose && } - {backText} - - Heading 6, 16px Heading 6, 16px + + + + Heading 6, 16px Heading 6, 16px + {props.withAdditionalHeaderContent && ( @@ -61,9 +66,9 @@ const Demo = (props: SidePanelDemoProps) => { )} {props.withFooter && ( - + - + )} diff --git a/stories/components/side-panel/tests/side-panel.stories.tsx b/stories/components/side-panel/tests/side-panel.stories.tsx index cdb81dab71..6ac7afd60c 100644 --- a/stories/components/side-panel/tests/side-panel.stories.tsx +++ b/stories/components/side-panel/tests/side-panel.stories.tsx @@ -22,7 +22,6 @@ export const AdditionalStates: StoryObj = { withAdditionalHeaderContent: { control: { type: 'boolean' } }, withTooltipInBody: { control: { type: 'boolean' } }, withFooter: { control: { type: 'boolean' } }, - backText: { control: { type: 'text' } }, backWMax: { control: { type: 'number' } }, }, }; 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/docs/examples/basic-usage.tsx b/stories/components/typography/docs/examples/basic-usage.tsx index 1f381ef1cb..4f80b08912 100644 --- a/stories/components/typography/docs/examples/basic-usage.tsx +++ b/stories/components/typography/docs/examples/basic-usage.tsx @@ -1,9 +1,9 @@ -import { Blockquote, List, Text } from '@semcore/ui/typography'; +import { List, Text } from '@semcore/ui/typography'; import React from 'react'; const Demo = () => (
- + H1, 48px, --fs-800 @@ -15,7 +15,7 @@ const Demo = () => ( Paragraph example. - + H3, 32px, --fs-600 @@ -33,6 +33,12 @@ const Demo = () => ( Paragraph example. + + H6, 18px, --fs-350 + + + Paragraph example. + H6, 16px, --fs-300 @@ -58,11 +64,6 @@ const Demo = () => ( Carpe diem. Seize the day, boys. Make your lives extraordinary. -
- I've seen things you people wouldn't believe. Attack ships on fire off the shoulder of Orion. - I watched C-beams glitter in the dark near the Tannhäuser Gate. All those moments will be lost - in time, like tears in rain. Time to die. -
); diff --git a/stories/components/typography/docs/examples/font-size-and-line-height.tsx b/stories/components/typography/docs/examples/font-size-and-line-height.tsx index 1a638fbb67..8fd39acbb2 100644 --- a/stories/components/typography/docs/examples/font-size-and-line-height.tsx +++ b/stories/components/typography/docs/examples/font-size-and-line-height.tsx @@ -12,6 +12,9 @@ const Demo = () => ( 16px / --fs-300,--lh-300 + + 18px / --fs-350,--lh-350 + 20px / --fs-400,--lh-400 diff --git a/stories/components/typography/docs/examples/formattext-nested-lists.tsx b/stories/components/typography/docs/examples/formattext-nested-lists.tsx index 2b408ba267..3d9e708035 100644 --- a/stories/components/typography/docs/examples/formattext-nested-lists.tsx +++ b/stories/components/typography/docs/examples/formattext-nested-lists.tsx @@ -7,13 +7,34 @@ type ExampleProps = { const Demo = (props: ExampleProps) => ( -
    +
    1. List item one
    2. - List item two with subitems: + List item two with nested ordered list: +
        +
      1. Level 2 item
      2. +
      3. + Level 2 item with nested list: +
          +
        1. Level 3 item
        2. +
        3. Level 3 item
        4. +
        5. Level 3 item
        6. +
        +
      4. +
      5. Level 2 item
      6. +
      +
    3. +
    4. + List item three with nested unordered list:
        -
      • Subitem 1
      • -
      • Subitem 2
      • +
      • Unordered subitem
      • +
      • + Unordered subitem with nested list: +
          +
        • Deep unordered subitem
        • +
        • Deep unordered subitem
        • +
        +
    5. Final list item
    6. diff --git a/stories/components/typography/docs/examples/headings-other.tsx b/stories/components/typography/docs/examples/headings-other.tsx index 40baf63373..4c6fafd94d 100644 --- a/stories/components/typography/docs/examples/headings-other.tsx +++ b/stories/components/typography/docs/examples/headings-other.tsx @@ -7,12 +7,16 @@ const Demo = () => ( 20px / --fs-400,--lh-400 + + 18px / --fs-350,--lh-350 + 16px / --fs-300,--lh-300 14px / --fs-200,--lh-200 + ); diff --git a/stories/components/typography/docs/examples/native-typography-tags.tsx b/stories/components/typography/docs/examples/native-typography-tags.tsx index b601eaa3ac..fdd5d76904 100644 --- a/stories/components/typography/docs/examples/native-typography-tags.tsx +++ b/stories/components/typography/docs/examples/native-typography-tags.tsx @@ -82,12 +82,6 @@ const Demo = (props: ExampleProps) => (
    7. I'm gonna make him an offer he can't refuse.
    8. Carpe diem. Seize the day, boys. Make your lives extraordinary.
    -
    - I've seen things you people wouldn't believe. Attack ships on fire off the shoulder of Orion. - I watched C-beams glitter in the dark near the Tannhäuser Gate. All those moments will be lost - in time, like tears in rain. Time to die. - Roy Batty -
    ); diff --git a/stories/components/typography/tests/examples/nested-list-indent-props.tsx b/stories/components/typography/tests/examples/nested-list-indent-props.tsx new file mode 100644 index 0000000000..e7488a9d04 --- /dev/null +++ b/stories/components/typography/tests/examples/nested-list-indent-props.tsx @@ -0,0 +1,95 @@ +import { Box, Flex } from '@semcore/ui/base-components'; +import { Text } from '@semcore/ui/typography'; +import React from 'react'; + +type SizeOption = 'none' | '100' | '200' | '300' | '350'; + +type ExampleProps = { + size: SizeOption; + formatTags: boolean; +}; + +const nestedList = ( +
      +
    1. + Level 1 item +
        +
      1. + Level 2 item +
          +
        1. Level 3 item
        2. +
        3. Level 3 item
        4. +
        +
      2. +
      +
    2. +
    +); + +const Demo = (props: ExampleProps) => { + const { size, formatTags } = props; + const sizeProp = size === 'none' ? undefined : (Number(size) as 100 | 200 | 300 | 350); + + const baselineRef = React.useRef(null); + const controlledRef = React.useRef(null); + const [measured, setMeasured] = React.useState({ baseline: '—', controlled: '—' }); + + React.useEffect(() => { + const readIndent = (root: HTMLDivElement | null) => { + const item = root?.querySelector('li[data-level="3"]'); + + return item ? window.getComputedStyle(item).paddingLeft : '—'; + }; + + setMeasured({ + baseline: readIndent(baselineRef.current), + controlled: readIndent(controlledRef.current), + }); + }, [size, formatTags]); + + const matches = measured.baseline === measured.controlled; + + return ( + + + + + {' — no size prop'} + + + {nestedList} + + + + + + {``} + + + + {nestedList} + + + + + + + + {`padding-left of the level 3 li — without size: ${measured.baseline}, with size: ${measured.controlled}`} + + + {matches ? 'Match' : 'Mismatch — indentation depends on the size prop'} + + + + ); +}; + +export const defaultProps: ExampleProps = { + size: '200', + formatTags: true, +}; + +Demo.defaultProps = defaultProps; + +export default Demo; 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..42d2d7758c 100644 --- a/stories/components/typography/tests/typography.stories.tsx +++ b/stories/components/typography/tests/typography.stories.tsx @@ -4,6 +4,7 @@ import BloquoteExample, { defaultProps as BloquoteProps } from './examples/block import FormattedNestedListMarginsExample, { defaultProps as FormattedNestedListMarginsProps } from './examples/formatted-nested-list-margins'; import ListAxeExample from './examples/list-axe-test'; import ListNestedExample, { defaultProps as ListNestedProps } from './examples/nested-list'; +import NestedListIndentExample, { defaultProps as NestedListIndentProps } from './examples/nested-list-indent-props'; import TextFontAndSizeExample from './examples/text-font-size-and-weight-headers-and-paragrapsh'; import DifferentTextPropsExample, { defaultProps as DifferentTextProps } from './examples/text-with-diff-combimations'; @@ -18,7 +19,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' } }, @@ -112,3 +113,16 @@ export const FormattedNestedListMargins: StoryObj = { + render: NestedListIndentExample, + argTypes: { + size: { + control: { type: 'select' }, + options: ['none', '100', '200', '300', '350'], + name: 'size (none = prop not passed)', + }, + formatTags: { control: { type: 'boolean' } }, + }, + args: NestedListIndentProps, +}; 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/all-components.stories.tsx b/stories/patterns/core/advanced/all-components.stories.tsx index ae58675ca6..c8f8a890f5 100644 --- a/stories/patterns/core/advanced/all-components.stories.tsx +++ b/stories/patterns/core/advanced/all-components.stories.tsx @@ -1,6 +1,7 @@ import type { Meta, StoryObj } from '@storybook/react-vite'; import AllComponentsExample from './all-components'; +import ChartPaletteExample from './chart-palette'; const meta: Meta = { title: 'Patterns/Core/Advanced', @@ -16,3 +17,8 @@ export const AllComponents: Story = { layout: 'fullscreen', }, }; + +export const ChartPalette: Story = { + name: 'Chart palette', + render: ChartPaletteExample, +}; diff --git a/stories/patterns/core/advanced/chart-palette-data.ts b/stories/patterns/core/advanced/chart-palette-data.ts new file mode 100644 index 0000000000..ceeef49305 --- /dev/null +++ b/stories/patterns/core/advanced/chart-palette-data.ts @@ -0,0 +1,16 @@ +export const chartPaletteLines = Array.from({ length: 20 }, (_, i) => ({ + x: i, + ...Object.fromEntries( + Array.from({ length: 24 }, (_, lineIndex) => [ + `line${lineIndex + 1}`, + Math.abs(Math.sin(Math.exp(i) + lineIndex * 0.7)) * 10, + ]), + ), +})); + +export const chartSemanticLines = Array.from({ length: 20 }, (_, i) => ({ + x: i, + critical: Math.abs(Math.sin(Math.exp(i) + 0.2)) * 10, + success: Math.abs(Math.sin(Math.exp(i) + 1.5)) * 10, + warning: Math.abs(Math.sin(Math.exp(i) + 3)) * 10, +})); diff --git a/stories/patterns/core/advanced/chart-palette.tsx b/stories/patterns/core/advanced/chart-palette.tsx new file mode 100644 index 0000000000..2c0c080657 --- /dev/null +++ b/stories/patterns/core/advanced/chart-palette.tsx @@ -0,0 +1,39 @@ +import { Flex } from '@semcore/ui/base-components'; +import { Chart } from '@semcore/ui/d3-chart'; +import React from 'react'; + +import { chartPaletteLines, chartSemanticLines } from './chart-palette-data'; + +const semanticColorMap = { + critical: 'chart-data-critical', + success: 'chart-data-success', + warning: 'chart-data-warning', +}; + +const Demo = () => { + return ( + + + + + ); +}; + +export default Demo; diff --git a/stories/patterns/core/advanced/components/Components/index.tsx b/stories/patterns/core/advanced/components/Components/index.tsx index ad2bba833e..0443785868 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/advanced/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' && ( url.replace(/^(http|https):\/\//, ''); @@ -12,16 +12,49 @@ const parseKd = (kd: string) => { 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/', + 'intergalactic/', + '', + 'n/a', + '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 +68,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 +90,24 @@ 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); - + renderCell={(props: CellRenderProps) => { 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 +115,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 c2052af473..622a456cd2 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 @@ -6,6 +6,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 { Text } from '@semcore/ui/typography'; import React from 'react'; import type { FC } 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} + + + ))} + + + +