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/semcore/badge/src/style/badge.shadow.css b/semcore/badge/src/style/badge.shadow.css index 458bcd6525..4490e33e73 100644 --- a/semcore/badge/src/style/badge.shadow.css +++ b/semcore/badge/src/style/badge.shadow.css @@ -44,7 +44,7 @@ SBadge[theme='default'] { 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.983 0.03 140 / 0.183)); + background-color: var(--intergalactic-badge-bg-invert, oklch(0.969 0.057 140 / 0.118)); } SBadge[theme='light'] { 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 08485f3945..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-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 93f74e7554..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-2-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-2-firefox-linux.png index 33f5058228..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 86992825ee..8be8115945 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-2-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-focus-state-2-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-1-firefox-linux.png b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-bottom-1-firefox-linux.png index bcb1f6a428..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-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 ea60781a63..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-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 838dd50d2d..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-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 3619c5035a..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 496f038f71..598276bc69 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-left-end-1-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 8b9c2d4e5b..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-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 8673d3a7ef..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-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 9476ba0df4..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 fbd1160072..36c1f84276 100644 Binary files a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-1-webkit-linux.png and b/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-1-webkit-linux.png differ diff --git a/semcore/base-components/__tests__/hint.browser-test.tsx-snapshots/-visual-Verify-hint-with-placement-right-end-1-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 fc95882157..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-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 ffc4711ba6..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-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 b3e7b5ff5e..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-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 837b63ffc3..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-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 63116d2d27..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-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 c0f7e49e2c..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/src/components/hint/style/hint.shadow.css b/semcore/base-components/src/components/hint/style/hint.shadow.css index e0be2076a1..63c65c796f 100644 --- a/semcore/base-components/src/components/hint/style/hint.shadow.css +++ b/semcore/base-components/src/components/hint/style/hint.shadow.css @@ -9,7 +9,7 @@ SHintPopper { pointer-events: none; background: var(--intergalactic-tooltip-bg-invert, oklch(0.23 0.01 140)); - border: 1px solid var(--intergalactic-tooltip-border-invert, oklch(0.48 0.004 145.9)); + 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); 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 f84f3c81fb..788f59c9dc 100644 Binary files a/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Base-trigger-and-few-tags-1-firefox-linux.png and b/semcore/base-trigger/__tests__/base-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Base-trigger-and-few-tags-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/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 caa55de321..92b8a97e01 100644 Binary files a/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-2-firefox-linux.png and b/semcore/base-trigger/__tests__/button-trigger.browser-test.tsx-snapshots/-visual-Verify-ellipsis-in-Button-trigger-and-few-tags-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/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 54cf17a599..88c47ea90e 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__/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 0235db78c9..a73aec6dc2 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-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 a638aa8fc4..967edcdfc3 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-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 5a07164d25..c04ce85a93 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-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 a7d49f9806..2e4c20b364 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-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 ecd6e5f5aa..05f1e01f53 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-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 72b38d8fa9..1d713d18e5 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-both-addons-counter-undefined-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-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 30d031182e..9755eb2b2d 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-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 9ff4188a92..05d0ec56fb 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-100-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-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 e7fc3549b8..01e8031e04 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-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 a6a7fe3f16..e7e04ad07e 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonLeft-badge-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-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 1e65c30f2f..cc69916d6f 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-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 8576208855..31991e21e6 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-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 239e789fdb..5b0f51a0db 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-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 8c59c06408..762637e7c7 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-both-addons-tag-undefined-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-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 71bebab5bd..5c34ae9fc5 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-3-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-3-firefox-linux.png index e667972735..45c58dc8ca 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-3-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-200-no-addons-text-success-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-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 4715b2d2a8..77b3231b17 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonLeft-counter-cropPosition-middle-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 c88785f4fe..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-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 78965d5f6a..cc0103ae19 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-addonRight-tag-middle-lastRequired-2-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 64f92745c9..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-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 a9d7958132..7c14c8bdbe 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-both-addons-undefined-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 6319fbc354..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-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 f69c204759..380c7223e0 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-300-no-addons-text-critical-ellipsis-true-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-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 index 1779514d90..7768ffb59b 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-1-firefox-linux.png 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-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 index f8277f03c9..795d660e65 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-350-addonLeft-cropPosition-middle-2-firefox-linux.png 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-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 index 04ec4e3ca6..261ea220c7 100644 Binary files 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 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-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 index ea2d2bd208..483d5bfa3f 100644 Binary files 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 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-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 index 132eb5b9f8..66a377475e 100644 Binary files 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 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-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 index cd18baa514..bd0b55b4b2 100644 Binary files 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 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-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 index 00bb9e063d..345274ef5d 100644 Binary files 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 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-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 index 99d5bbbd30..2c8f8f0209 100644 Binary files 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 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-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 438d096655..735d32f89d 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-webkit-linux.png index 77de6fe5b4..0805403c3f 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-2-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 8d5774314d..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 9f0b6b37d1..514a0dc937 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonLeft-tag-cropPosition-middle-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-1-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 977c3fccfa..a8a9661d35 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-addonRight-middle-lastRequired-2-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 758d2b65bc..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-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 f688b7df58..8a88e4f8a8 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-both-addons-badge-undefined-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 fcf07595c1..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-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 70146093b2..5d89687a60 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-400-no-addons-ellipsis-true-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 c331207a52..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-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 e66d5223a1..104ba31eec 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonLeft-cropPosition-middle-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 256801003d..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-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 3a5e9589a2..de480fee64 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-addonRight-badge-middle-lastRequired-2-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 18bf82ac8c..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-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 35ff52754f..f49a1dc3ae 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-both-addons-counter-undefined-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 1cf904121a..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-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 f2b49797a8..2ec0080fe8 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-500-no-addons-ellipsis-true-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 9a8cd61548..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-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 1d98a5b780..32c3d8da8d 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonLeft-badge-cropPosition-middle-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 f2f5d68443..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-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 e79543cc99..aff12f9b62 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-addonRight-counter-middle-lastRequired-2-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 78f8cfe0e9..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-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 bb2d43153f..bf14f760c1 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-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 4f5f1f545f..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 ef62938ceb..45f1745cea 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-both-addons-tag-undefined-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-1-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 5b7b8f587b..26c21f3f9a 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-600-no-addons-text-success-ellipsis-true-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-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 a078ed3382..097708e5a6 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-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 bdd53d1adb..6c258eaa05 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-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 66cfa050bb..d5b4930141 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-webkit-linux.png index 2d707d4b2a..c45e618e48 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-1-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-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 c7b3156acb..183e53df4d 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-webkit-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-webkit-linux.png index 5d9e7960e9..12ebd17fb9 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-webkit-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-addonRight-tag-middle-lastRequired-2-2-webkit-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-1-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 d26d6d9fbe..1fb016d401 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-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 dbd52414f9..7e0bcf2c11 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-2-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-both-addons-undefined-2-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-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 86156815b2..312d2206da 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png index 9ab53f3abc..2f7e859a91 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-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 150a9d3f9d..61ea82214f 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonLeft-tag-cropPosition-middle-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 591651a573..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-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 24b6259f22..5386a4ec11 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-addonRight-merged-middle-lastRequired-2-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 f563cc6737..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-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 64973aa3e4..346a616bba 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-both-addons-badge-undefined-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 3f636ebe1a..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-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 21d70ee310..a9ad4f283e 100644 Binary files a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/base-trigger/__tests__/link-trigger.browser-test.tsx-snapshots/-visual-Verify-Link-Trigger-size-800-no-addons-ellipsis-true-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 933fce3a2c..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/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 78cbcf09a9..0ededb0973 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-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 eda43b9ec2..728835c6fe 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-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 dc0faa1859..8ae28bf346 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-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 ccd0e9c90a..fab7a2def0 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-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 fcfab3dcd3..dfc3fd2a32 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-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 8d6f56eb6c..573799a97b 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-both-addons-counter-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-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 f96ac32ff8..a1cbe15460 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-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 a16fa64a5a..94dcbb437a 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-100-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-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 218ae229d4..55399a7a9e 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-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 cffdee20d2..2cf961a38f 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-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 84ef11619b..68c2207cc4 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-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..a6dfb045f5 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-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 e223b1b6ab..b6b9ebcd59 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-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..3c612be336 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-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 1e24207435..cbe74745f6 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-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..470a0b9239 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-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 b8e183376d..168efc1f12 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-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 4088abfe95..ebe0611d69 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-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 0e3ac8406b..8da67237a9 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-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 d4f17a743d..56adedf831 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-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 dee2144e3c..2490b4c3fb 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-both-addons-end-maxLine-2-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 1b8d7e2b65..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-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 85fee381b8..9aee43bb92 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png index 2f55e5f31f..ee5a598be0 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-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 index 980260a459..c82458446e 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-1-firefox-linux.png 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-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 index 89fc77dcc6..e8e894e4c1 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonLeft-cropPosition-middle-2-firefox-linux.png 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-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 index 3039d50cc4..ce8afb4138 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png 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-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 index 4f8223a463..285a83927e 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png 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-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 index 37348b9b84..4d1d50fccb 100644 Binary files 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 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-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 index e0215b56cd..d1d1f91098 100644 Binary files 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 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-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 index 8999baaf6b..49b98815ff 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-1-firefox-linux.png 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-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 index 694b052da9..dcfae4edb2 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-350-no-addons-ellipsis-true-3-firefox-linux.png 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-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 81b9635cc4..9188038d7f 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-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 479b5f4d99..f3941bf21d 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-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 68d9ac1061..4c56efdcaf 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-addonRight-middle-lastRequired-2-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 fa3aae88ac..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-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 70d7f77a1c..81b3c78a02 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-both-addons-badge-end-maxLine-2-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 97d6bfa9a0..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-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 7f560c91e0..8f5439e1f7 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-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 dddd61e446..bda6e703e1 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-400-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-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 3e5ef5e53c..d1847572f4 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonLeft-cropPosition-middle-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 5f6a7e15c6..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-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 f0984d3a25..a415def52c 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-addonRight-badge-middle-lastRequired-2-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 7eb1a4de7a..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-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 5e91155265..5eb62ef94d 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-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 f8e7e84866..829e66409d 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-both-addons-counter-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-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 0c2f07997c..a93d0f7d87 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-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 72ce6c6681..b76dfc36d6 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-500-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-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 6ad3f79503..ff77571d1e 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-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 6be42718eb..dc147dd238 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-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 0b5a5f6de5..6d59d6d887 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-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..c866f98e3d 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-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 0c67d463dd..6c78184974 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-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..3522cf507f 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-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 aef0cebb44..ff9063dd18 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-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..e0e7eaf432 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-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 a017b520c2..7514cf26d1 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-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 0202e23042..760ad4b393 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-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 27fc1fa833..6b4e20e225 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-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 18a39fa190..3eebe4ff39 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-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 fc99c3c1e8..a3be1b7581 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-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 5e10bbbd52..baa1459819 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-both-addons-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-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 0a6e95f716..e6c7ed575b 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png index 41b7ce6bfc..e611bd1d42 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-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 6a789dcd92..24a5fec7b0 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-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 79f7e7474f..20bdc62dbc 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-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 21124a037f..19e7201815 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-addonRight-merged-middle-lastRequired-2-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 cf04409982..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-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 c755f2c5bd..6dc917c18c 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-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 a2bd338a1d..5333392ba4 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-2-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-both-addons-badge-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-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 171b1db59a..5c763bcabc 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-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 2c2d6273ca..764389150b 100644 Binary files a/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/button/__tests__/button-link.browser-test.tsx-snapshots/-visual-Verify-ButtonLink-size-800-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/button/__tests__/button.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 ee99ae0879..99c839ba91 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-08fcb--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-08fcb--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-08fcb--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-08fcb--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index ee92faf6c1..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-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 7c15f21d74..c6bd2922bb 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-34c71--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-34c71--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-34c71--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-34c71--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index 5f1eb71a4d..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-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 0a91520887..ae59cea03c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-firefox-linux.png index 11701827e1..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 0ce2b6da03..d2197d56d1 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3838f-ctive-false-loading-false-hintPlacement-right-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-3ddf6--active-false-loading-false-hintPlacement-top-1-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 5a23a7ec1d..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-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 8a29a3d757..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-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 0ba2f34058..60081c0ba3 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-77aa6--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-77aa6--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-77aa6--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-77aa6--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index fc81f1788f..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-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 6edf3e84de..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-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 b6974884bf..d9b3042cee 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-firefox-linux.png index 312797833c..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 5945c2e273..c9d97c49ed 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-cbef9-active-false-loading-false-hintPlacement-left-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-l-them-ebf18--active-false-loading-false-hintPlacement-top-1-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 2f1b352401..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-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 a312e9e65e..c01ef7439c 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-13b18--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-13b18--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-13b18--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-13b18--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index c62e3dbe73..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-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 22dca913ea..aa7c00bd08 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-firefox-linux.png index 5e99c745ee..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 673314c525..1fec62a061 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-26666-active-false-loading-false-hintPlacement-left-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2d1b1--active-false-loading-false-hintPlacement-top-1-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 fc8f5d1cc0..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-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 afd12f29a7..a2d55f9e31 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2ee6c--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2ee6c--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2ee6c--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-2ee6c--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index da1af7f51e..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-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 22a5999dc7..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-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 7e223c6c16..e38df595c9 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-833ee--active-false-loading-false-hintPlacement-top-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-833ee--active-false-loading-false-hintPlacement-top-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-833ee--active-false-loading-false-hintPlacement-top-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-833ee--active-false-loading-false-hintPlacement-top-1-firefox-linux.png index 01dbeae620..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-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 09797e9fe7..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-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 3194e9a76e..5dc8077714 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-chromium-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-chromium-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-firefox-linux.png b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-firefox-linux.png index 77c21de4eb..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 86a5e55d09..98ccade131 100644 Binary files a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-webkit-linux.png and b/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cf7df-ctive-false-loading-false-hintPlacement-right-1-webkit-linux.png differ diff --git a/semcore/button/__tests__/button.browser-test.tsx-snapshots/-visual-Verify-Addon-only-example-size-m-them-cff73--active-false-loading-false-hintPlacement-top-1-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 a597b90197..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/src/component/Button/button.shadow.css b/semcore/button/src/component/Button/button.shadow.css index 0f20452d60..ef26833390 100644 --- a/semcore/button/src/component/Button/button.shadow.css +++ b/semcore/button/src/component/Button/button.shadow.css @@ -187,18 +187,18 @@ SButton[theme='secondary-muted'] { SButton[theme='secondary-invert'] { color: var(--intergalactic-control-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); - background-color: var(--intergalactic-control-secondary-invert, oklch(0.983 0.03 140 / 0.183)); + background-color: var(--intergalactic-control-secondary-invert, oklch(0.969 0.057 140 / 0.118)); &:hover { 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.986 0.025 140 / 0.203)); + background-color: var(--intergalactic-control-secondary-invert-hover, oklch(0.98 0.036 140 / 0.164)); } &:active, &[active] { 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.988 0.021 140 / 0.222)); + oklch(0.986 0.025 140 / 0.203)); } } @@ -241,13 +241,13 @@ SButton[theme='tertiary-invert'] { &:hover { 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.986 0.025 140 / 0.203)); + background-color: var(--intergalactic-control-tertiary-invert-hover, oklch(0.98 0.036 140 / 0.164)); } &:active, &[active] { 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.988 0.021 140 / 0.222)); + background-color: var(--intergalactic-control-tertiary-invert-active, oklch(0.986 0.025 140 / 0.203)); } } 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 a724fd2384..2834614308 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-2-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-prev-and-next-buttons-when-indicators-preview-bounded-true-2-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-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 4238595a8e..6998f6029b 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-firefox-linux.png index 8421dff345..aee26ac9f7 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-webkit-linux.png index f88963f059..94ba4a20a8 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-20a10--defaultIndex-undefined-or-index-undefined-1-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-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 3f7f2a18ce..20f25921af 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-firefox-linux.png index 6ef75e4a26..f089fea0a9 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-webkit-linux.png index d022148da0..cf4e4903b8 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-50fbc--defaultIndex-undefined-or-index-undefined-2-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-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 ff0f8c6f01..fddb2c34fa 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-firefox-linux.png index 213a9ffcbc..bdf7555bde 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-webkit-linux.png index 4fcf9dccfd..937f49aae4 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-defa-99f1c--defaultIndex-undefined-or-index-undefined-5-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-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 641fefe9bc..a1d9d113cc 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-firefox-linux.png index 1ce8fda7a6..af0f120fdb 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-webkit-linux.png index c5083e607f..d2b6394228 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-2d3a7--300-and-defaultIndex-undefined-or-index-1-2-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-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 2eb4a8197a..fecdf28c53 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-firefox-linux.png index 89769e5742..a481e82ab6 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-webkit-linux.png index 6299d116c1..7492969022 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6328e--300-and-defaultIndex-undefined-or-index-1-1-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-chromium-linux.png index 383e53e43b..49adffce44 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-firefox-linux.png index ab1c419635..35cc208f57 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-webkit-linux.png index 2367af3695..122fb55301 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-hide-6773c--300-and-defaultIndex-undefined-or-index-1-4-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-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 368704c960..bbac237893 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-14412--500-and-defaultIndex-2-or-index-undefined-4-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-14412--500-and-defaultIndex-2-or-index-undefined-4-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-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 1b07e8f4eb..bab7b436d7 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-firefox-linux.png index 3ce2fc05f4..88ef0b1bed 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-webkit-linux.png index b93a5776b8..f0f7ed6c50 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-494d7--500-and-defaultIndex-2-or-index-undefined-1-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-8b027--500-and-defaultIndex-2-or-index-undefined-6-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-8b027--500-and-defaultIndex-2-or-index-undefined-6-chromium-linux.png index c18ac9d04f..3abfb39e4d 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-8b027--500-and-defaultIndex-2-or-index-undefined-6-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-8b027--500-and-defaultIndex-2-or-index-undefined-6-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-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 9922b74fa0..499670a581 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-firefox-linux.png index bce5faade9..15d39d3db1 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-webkit-linux.png index 09e0874502..3f3e3eac9a 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-b2aeb--500-and-defaultIndex-2-or-index-undefined-5-webkit-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-chromium-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-chromium-linux.png index bfae5c48ae..7f10a71052 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-chromium-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-chromium-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-firefox-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-firefox-linux.png index d122bf2c70..01ad9a85a0 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-firefox-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-firefox-linux.png differ diff --git a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-webkit-linux.png b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-webkit-linux.png index 72792229f5..b68b2e3b4a 100644 Binary files a/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-webkit-linux.png and b/semcore/carousel/__tests__/carousel.browser-test.tsx-snapshots/-visual-Verify-Carousel-with-indicators-prev-e9bf7--500-and-defaultIndex-2-or-index-undefined-2-webkit-linux.png differ diff --git a/semcore/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 bba2fb46aa..2a57f81b55 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-firefox-linux.png index fab7ac82b8..710143c591 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-1-webkit-linux.png index 757f41c64d..02af47dbd0 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 da2c32db0a..010f8bb7e7 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-firefox-linux.png index 3d39d1279d..dd137f5b0d 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-webkit-linux.png index 45dfdaec0d..37282fc6e9 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-ColorPicker-Item-PaletteManager-Item-and-ColorPicker-Input-2-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-chromium-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-chromium-linux.png index 9cdc859b1b..7679a72857 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-firefox-linux.png index 1a52ebd8f2..1446d80f4f 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-webkit-linux.png index df1dfdc90a..4f9d636464 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-Keyboard-navigation-when-No-palette-2-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-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 ebd0cbf995..edb834c911 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-firefox-linux.png index cf3f99929f..dacd83cdea 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-webkit-linux.png index 32338ba4aa..3fe2ee09a0 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-2-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-chromium-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-chromium-linux.png index 9889777534..0f0debcfb4 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-firefox-linux.png index 97d95f51a8..1c5fcae3a4 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-webkit-linux.png index 08733f9981..8a3e369bd8 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-default-item-states-for-active-and-background-colors-3-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-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 6b9b7e8448..08ff5aa409 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-chromium-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-chromium-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-firefox-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-firefox-linux.png index f00463678d..4198c53d0c 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-firefox-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-firefox-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-webkit-linux.png b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-webkit-linux.png index eec2579921..941c7a1339 100644 Binary files a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-webkit-linux.png and b/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-predefined-palette-1-webkit-linux.png differ diff --git a/semcore/color-picker/__tests__/color-picker.browser-test.tsx-snapshots/-visual-Verify-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 a41123af58..bdd34cae2d 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 091930e750..962f862488 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 5746b2eeb1..5dbae0e3c9 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/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-chromium-linux.png index 9dcbff6518..38d7a7fafb 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-firefox-linux.png index ac59548dd6..fcd4eb95ac 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-webkit-linux.png index 52373dc41f..71231e1228 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-keyboard-2-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-chromium-linux.png index 8743bcbcf5..12433a74ca 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-firefox-linux.png index 27f7057c44..1378c35d21 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-webkit-linux.png index b431cdb59b..1f0e9cb702 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Basic-usage-mouse-1-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-chromium-linux.png index 7d9f162861..660d2aefc7 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-firefox-linux.png index 5eacbecd0e..13c2d89c72 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-webkit-linux.png index 002ae53a25..0ae864c8b7 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-1-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-chromium-linux.png index 668ddb8d6b..b2976b1a95 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-firefox-linux.png index b0ef027f9e..7e5f674972 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-webkit-linux.png index 689a721ab5..4d400ba411 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-Number-only-input-keyboard-interactions-2-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-chromium-linux.png index 79cb79aad5..fd040a9fbb 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-firefox-linux.png index 086c616db4..b5d38122bf 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-webkit-linux.png index 64e5b098a5..d470b1d34d 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-1-webkit-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-chromium-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-chromium-linux.png index e583b353a4..5e4adddfbc 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-chromium-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-chromium-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-firefox-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-firefox-linux.png index 119964f132..667e05726a 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-firefox-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-firefox-linux.png differ diff --git a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-webkit-linux.png b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-webkit-linux.png index 29d2687352..ef2b0713da 100644 Binary files a/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-webkit-linux.png and b/semcore/inline-input/__tests__/inline-input.browser-test.tsx-snapshots/-visual-Verify-custom-icon-and-text-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx b/semcore/input-tags/__tests__/input-tags.browser-test.tsx index 99620aff03..a59daf2936 100644 --- a/semcore/input-tags/__tests__/input-tags.browser-test.tsx +++ b/semcore/input-tags/__tests__/input-tags.browser-test.tsx @@ -93,33 +93,39 @@ test.describe(`${TAG.VISUAL} `, () => { await test.step('Verify inputTagsM styles', async () => { await testHelpers.verifyCSSForAll(input_tags_m, { - 'padding-left': '4px', - 'padding-right': '6px', + 'padding-top': '2px', + 'padding-bottom': '2px', + 'padding-left': '12px', + 'padding-right': '12px', }); }); await test.step('Verify inputTagsL styles', async () => { await testHelpers.verifyCSSForAll(input_tags_l, { - 'padding-left': '8px', - 'padding-right': '10px', + 'padding-top': '4px', + 'padding-bottom': '4px', + 'padding-left': '12px', + 'padding-right': '12px', }); }); await test.step('Verify InputTags.Tag styles', async () => { await testHelpers.verifyCSSForAll(locators.tag(page), { - margin: '2px', + 'margin-top': '2px', + 'margin-right': '2px', + 'margin-bottom': '2px', + 'margin-left': '0px', }); }); - await test.step('Verify TagContainer.Tag styles', async () => { - const tagContainer = page.locator(`li[data-ui-name="TagContainer.Tag"]`); - await testHelpers.verifyCSSForAll(tagContainer, { + await test.step('Verify InputTags.Tag.Text styles', async () => { + await testHelpers.verifyCSSForAll(locators.inputText(page), { 'padding-left': '4px', - 'padding-right': '4px', - 'border': '1px', + 'padding-right': '2px', + 'border-width': '1px', }); - await testHelpers.verifyAttributesForAll(tagContainer, { - tabindex: '-1', + await testHelpers.verifyAttributesForAll(locators.inputText(page), { + tabindex: item.disabled ? '-1' : '0', }); }); diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png index 76efa6899d..a6fffcdf4c 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png index ebb0b9546a..689550494b 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png index 810f7dfdb9..d0e727e695 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-03e27--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-chromium-linux.png index 7b72f0f34f..2327578862 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-firefox-linux.png index 25104811e4..de7334b90e 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-webkit-linux.png index 3d3d247839..8f47d389c7 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-106c5--xl-size-and-disabled-false-and-editable-true-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png index 12c15dee41..0b6e884d3b 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png index 16bcc87af9..7703868f59 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png index dcae944dba..f220f51433 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-13096-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-chromium-linux.png index 7e4150aa41..dbd019acb3 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-firefox-linux.png index fd711dc301..bce2950bf5 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-webkit-linux.png index 47df3360c4..5db433754d 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-14f75-l-size-and-disabled-true-and-interactive-true-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-chromium-linux.png index 55d60cad58..b00422042e 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-firefox-linux.png index 21eda531c6..4cb5c38768 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-webkit-linux.png index 6de990b9d4..bd0e95cd47 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-23af9-size-and-disabled-true-and-editable-undefined-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png index dd136d5576..ed9375da94 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png index e1bf0d8fb1..40f861a206 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png index 8cd2b809b9..3c6cc5457a 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-2d46e-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-chromium-linux.png index b068a7ee9c..bd81ce2f1f 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-firefox-linux.png index 78ebc44899..294fdefb7b 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-webkit-linux.png index bf9e98cb48..f7e196f8c8 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-36cb5--and-disabled-false-and-interactive-undefined-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png index c7e987c51a..0233259371 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png index 417edf660e..aa72f29a2f 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png index f1a03c4ac7..fb29d8dfd3 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-38d1e-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-5d736--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-5d736--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png index 0f0b0748a8..34015a89ee 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-5d736--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-5d736--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-6bda9--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-6bda9--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png index bc82bbb84e..cd471d909b 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-6bda9--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-6bda9--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png index 6d72008499..716d639645 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png index 1b6d1d94c7..c3e2a0ff9e 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png index 17a14bd918..8b7ffe9c97 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-86214--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png index 282e6b7ccf..c6b7186280 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png index 14c39a1b8d..52b8f26d50 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png index 0ae244566e..0c8c7ccd18 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-97ada-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png index 1878f9ca60..764f32c9fa 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png index a0b62881b1..c57875a8f7 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png index f52053f3f4..8d64a294b5 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-9a882-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png index 1cbe9562a4..952545d85c 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png index 270491a6a0..50c0aa667d 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png index 9afbcc192a..8b23aa04a1 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b2d75--size-l-disabled-true-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b55c6--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b55c6--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png index 27c7a4ffeb..4132ab7652 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b55c6--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-b55c6--size-m-disabled-true-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-chromium-linux.png index 3f3b07079c..25155f44fc 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-firefox-linux.png index c78146eb6b..08858589d8 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-webkit-linux.png index 07b1c55257..2b806b1f7e 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bc4de-e-and-disabled-true-and-interactive-undefined-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png index 682c2a5fe8..c3bf582946 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png index ea2cba3e64..6ecdd9525a 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png index cbcbe1def4..53c4e3e693 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-bdc1c-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png index 3aea643102..b1ada00962 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png index 74d4ce1ff7..9a54fdf5f3 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png index 9b51c36fc5..f3cea15cd3 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cbf65-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png index ccf5439f22..606d74ccf8 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png index bc3a6d3e2a..ae79b20680 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png index 836da61401..9f886fa701 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-ccd47-size-l-disabled-false-unfocused-and-focused-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png index df40b1389b..be3904e76f 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png index e42bf94a53..020d5dcb37 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png index 3b20dae796..14caa01034 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-cd909-size-m-disabled-false-unfocused-and-focused-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-chromium-linux.png index 0d5edefec2..a5abdeb261 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-firefox-linux.png index bb8d518b2c..dc758e7b23 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-webkit-linux.png index f5637a782e..91215255b5 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dc55e-ize-and-disabled-false-and-editable-undefined-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-chromium-linux.png index eaffda532a..6f129abc4a 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-firefox-linux.png index c7c8dac3b7..f5ab9c9edb 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-webkit-linux.png index 2d5d3a4a97..73eeffd0ef 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-dded3--size-and-disabled-false-and-interactive-true-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png index 007db0e208..306ac0404c 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png index 1c2f9ad095..0b56a8199e 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png index 02ebde6539..870b418cea 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-e3006-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png index a18f8ea3ee..b9f40a1516 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png index 4ad45c9520..244a989b48 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png index 96c72a96b2..b28679ce3f 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-edd95-size-l-disabled-false-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-chromium-linux.png index 224a60fd04..7b95f22c0b 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-firefox-linux.png index 5a9decae39..20ad1fc942 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-webkit-linux.png index 8113667064..f387995778 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-f374a-size-and-disabled-true-and-editable-undefined-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png index 9ec497077a..4ba35522f9 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png index 4113c728ad..b6016baffe 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png index 38a0415c26..1fd616327d 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-InputTa-fbe55-size-m-disabled-false-unfocused-and-focused-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-chromium-linux.png index 37d4b5ccba..6ebe991c03 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-firefox-linux.png index 00d3cc9b06..71ac7ece87 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-webkit-linux.png index 007e346d34..5baca0856b 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--0322b-elect-visual-states-when-interacting-by-mouse-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-chromium-linux.png index 3793188894..500d5fde5a 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-firefox-linux.png index f1ceb3946d..acfd4465d1 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-webkit-linux.png index de7c7aa569..f35f975427 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--38d3e-ct-visual-states-when-interacting-by-keyboard-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-chromium-linux.png index b16176c951..248914fc50 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-firefox-linux.png index ccad398c13..89ae39f21a 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-webkit-linux.png index dab8da7451..34211b9bde 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--3e039-ct-visual-states-when-interacting-by-keyboard-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-chromium-linux.png index 1ff99830c8..de872350a6 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-firefox-linux.png index fc17e9eb3a..ceb1c52575 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-webkit-linux.png index 84b075185a..26d6cd7751 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--4585e-tags-can-be-added-removed-and-edited-by-mouse-3-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-chromium-linux.png index cb599b97fe..0de73a0294 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-firefox-linux.png index 5ec07a9fd9..e55f3e35c4 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-webkit-linux.png index 3988e4d11e..e7286eb909 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--5cc80-without-width-limitation-and-email-validation-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-chromium-linux.png index a443fd0841..1812355713 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-firefox-linux.png index 16378ac9a2..3f35f0d3a6 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-webkit-linux.png index e239bd0443..36aefff6e1 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--68bb1-tags-can-be-added-removed-and-edited-by-mouse-4-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-chromium-linux.png index 8bc0da90e6..6fc2f466f3 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-firefox-linux.png index cef8b95a2a..bef417667d 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-webkit-linux.png index 9a00ec1d10..8885bb38c2 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--7e0be-elect-visual-states-when-interacting-by-mouse-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-chromium-linux.png index 23e522c1dd..32589b1d0b 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-firefox-linux.png index cc5643e5de..5076226308 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-webkit-linux.png index 8502fc9418..dab36722ca 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--8a7f2--examples-Verify-input-tag-with-default-value-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-chromium-linux.png index 66b0b7dfca..db637f65d5 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-firefox-linux.png index fc17e9eb3a..ceb1c52575 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-webkit-linux.png index fd5968337b..43d76301fa 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9560b-tags-can-be-added-removed-and-edited-by-mouse-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-chromium-linux.png index 9a8333db43..c7729455c1 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-firefox-linux.png index 23954e4012..247d2d0669 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-webkit-linux.png index 9f65c559ce..c0e6099d30 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--9cbc6-ct-visual-states-when-interacting-by-keyboard-3-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-chromium-linux.png index b8914a3b79..9e2100d3a8 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-firefox-linux.png index df5a7f832b..e90811895d 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-webkit-linux.png index 506371abe2..5a1bfcfdfd 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--b9339-without-width-limitation-and-email-validation-3-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-chromium-linux.png index 1e9787def9..9d8c719b9e 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-firefox-linux.png index 9ba308d0ce..ec0130c235 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-webkit-linux.png index b59e6c4234..f670db03e0 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--ecf5e--examples-Verify-input-tag-with-default-value-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-chromium-linux.png index 0e48e31690..1689ca5295 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-firefox-linux.png index 5ec07a9fd9..e55f3e35c4 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-webkit-linux.png index c6aa291378..dd73552ce2 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--efe77-without-width-limitation-and-email-validation-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-chromium-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-chromium-linux.png index 00c5b76433..d1148f7153 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-chromium-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-firefox-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-firefox-linux.png index e714f3e25d..10f7771157 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-firefox-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-webkit-linux.png b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-webkit-linux.png index d657e0fc56..a7f555f978 100644 Binary files a/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-webkit-linux.png and b/semcore/input-tags/__tests__/input-tags.browser-test.tsx-snapshots/-visual-Input-tags-visual-states-after-mouse--f7010-tags-can-be-added-removed-and-edited-by-mouse-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-chromium-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-chromium-linux.png index 9d60a4bcca..f62e50e2ce 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-chromium-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-firefox-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-firefox-linux.png index d3c233043a..72df8e454e 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-firefox-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-webkit-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-webkit-linux.png index 7670d55c8e..2f056c4fe1 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-webkit-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-1-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-chromium-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-chromium-linux.png index 579bdc2b2a..db6688cfea 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-chromium-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-firefox-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-firefox-linux.png index 528e2c4cc4..baec97d429 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-firefox-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-webkit-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-webkit-linux.png index ad66255b8b..632ec8e1ba 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-webkit-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-2-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-chromium-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-chromium-linux.png index 69cd4d4a51..d654dabec1 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-chromium-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-firefox-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-firefox-linux.png index b11b2c0734..2bde21fec4 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-firefox-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-webkit-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-webkit-linux.png index 8b8dbb0fd9..df6a1f9228 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-webkit-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-3-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-chromium-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-chromium-linux.png index 163248475a..d98f72ef20 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-chromium-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-firefox-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-firefox-linux.png index 0d17218766..03aa842cdb 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-firefox-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-webkit-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-webkit-linux.png index b4f3b12a2e..1086e3d1a5 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-webkit-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-4-webkit-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-chromium-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-chromium-linux.png index bf5345fe48..4e4554fd55 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-chromium-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-chromium-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-firefox-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-firefox-linux.png index 536d1b2e00..08820bf1dc 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-firefox-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-firefox-linux.png differ diff --git a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-webkit-linux.png b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-webkit-linux.png index ec466455d6..11ce19bcaa 100644 Binary files a/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-webkit-linux.png and b/semcore/input-tags/__tests__/ux-patterns-with-input-tags/select-and-input.browser-test.tsx-snapshots/-visual-Verify-Input-tags-and-select-5-webkit-linux.png differ diff --git a/semcore/input-tags/src/style/input-tag.shadow.css b/semcore/input-tags/src/style/input-tag.shadow.css index 08af38ed01..4ce8540053 100644 --- a/semcore/input-tags/src/style/input-tag.shadow.css +++ b/semcore/input-tags/src/style/input-tag.shadow.css @@ -1,13 +1,9 @@ SInputTags { box-sizing: border-box; cursor: text; - align-items: flex-start; + align-items: center; /* reset for ScrollArea because cut box-shadow */ overflow: initial; - - li:first-of-type { - padding-left: var(--intergalactic-spacing-05x, 2px); - } } SInputTags[disabled] { @@ -43,13 +39,13 @@ SInputTags>div[data-ui-name='ScrollArea.Bar'][orientation='vertical'] { SInputTags[size='m'] { min-height: var(--intergalactic-form-control-m, 32px); height: auto; - padding: 0 calc(var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px)) 0 var(--intergalactic-spacing-1x, 4px); + padding: var(--intergalactic-spacing-content-padding-xxsmall, 2px) var(--intergalactic-spacing-content-padding-medium, 12px); } SInputTags[size='l'] { min-height: var(--intergalactic-form-control-l, 44px); height: auto; - padding: 0 calc(var(--intergalactic-spacing-2x, 8px) + var(--intergalactic-spacing-05x, 2px)) 0 var(--intergalactic-spacing-2x, 8px); + padding: var(--intergalactic-spacing-content-padding-xsmall, 4px) var(--intergalactic-spacing-content-padding-medium, 12px); } SInputTags STag:focus-visible, SInputTags STagContainerClose:focus-visible { @@ -59,20 +55,20 @@ SInputTags STag:focus-visible, SInputTags STagContainerClose:focus-visible { } } -STagContainer { - margin: var(--intergalactic-spacing-05x, 2px); +STagContainer[size='m'] { + margin: var(--intergalactic-spacing-05x, 2px) var(--intergalactic-spacing-05x, 2px) var(--intergalactic-spacing-05x, 2px) 0; } -STagContainer[editable] { - cursor: pointer; +STagContainer[size='l'] { + margin: var(--intergalactic-spacing-05x, 2px) var(--intergalactic-spacing-05x, 2px) var(--intergalactic-spacing-05x, 2px) 0; } -SInputTags[size='m'] SValue { - height: calc(var(--intergalactic-form-control-m, 32px) - var(--intergalactic-spacing-1x, 4px)); +STagContainer[size='xl'] { + margin: var(--intergalactic-spacing-05x, 2px) var(--intergalactic-spacing-05x, 2px) var(--intergalactic-spacing-05x, 2px) 0; } -SInputTags[size='l'] SValue { - height: calc(var(--intergalactic-form-control-l, 44px) - var(--intergalactic-spacing-1x, 4px)); +STagContainer[editable] { + cursor: pointer; } SValue { diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png index 6d58d80d10..a0732bddee 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png index e5412cb352..2ffdf4c295 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonLeft-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png index 0b8aae0c65..dc60b78420 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png index e6ebe4b5f9..b5d3d4b85a 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-1-firefox-linux.png index fd27b55c69..c4531e9f66 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-2-firefox-linux.png index 4702e3cb3c..8cf9e5adef 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-both-addons-counter-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-1-firefox-linux.png index 3ebfc2ffb2..3fe7807e3c 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-3-firefox-linux.png index 23ef0ed3c5..fd2a3e562e 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-100-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-1-firefox-linux.png index fa760f92ab..350b0b3bd9 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-2-firefox-linux.png index 4a5d32e420..50a466fe3a 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonLeft-badge-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png index 357f82cbfd..7617cfe789 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png index 8dad9cf96d..76838a11d6 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-1-firefox-linux.png index 1e0cb676e7..1a7ce49ef6 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-2-firefox-linux.png index e720ebbe70..b24e331a57 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-both-addons-spin-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-1-firefox-linux.png index 85348afd7d..43937009a6 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-3-firefox-linux.png index bc0012e379..b2b8e2a001 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-3-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-200-no-addons-text-success-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png index 311e6b23b0..43c85b16b9 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png index b7c3b6490f..27a9bcb5c6 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonLeft-counter-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png index 9c4c7a162a..6166168f39 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png index 05f6a49938..d9a60b8a75 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-1-firefox-linux.png index dade75f645..dbbca582dd 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-2-firefox-linux.png index c3f5020dce..d5838f7ca8 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-both-addons-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png index c4ae239f44..f1c5da5df0 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png index 507538a331..d852fa051d 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-300-no-addons-text-critical-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-addonLeft-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-addonLeft-cropPosition-middle-1-firefox-linux.png index 41b1018dc3..03a5bfb37b 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-addonLeft-cropPosition-middle-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-addonLeft-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-addonLeft-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-addonLeft-cropPosition-middle-2-firefox-linux.png index 0a09ba1fa5..03ad00e9b1 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-addonLeft-cropPosition-middle-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-addonLeft-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png index 5a40565cef..8ac79fc3b1 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png index 6803d90f9c..538a4eb8e4 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-both-addons-counter-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-both-addons-counter-end-maxLine-2-1-firefox-linux.png index 88f6f4382d..3cfc179fdf 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-both-addons-counter-end-maxLine-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-both-addons-counter-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-both-addons-counter-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-both-addons-counter-end-maxLine-2-2-firefox-linux.png index 6b9982f4ae..cda0c11ee0 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-both-addons-counter-end-maxLine-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-both-addons-counter-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-no-addons-ellipsis-true-1-firefox-linux.png index 0eb751d90e..21ecfa7571 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-no-addons-ellipsis-true-3-firefox-linux.png index 33890e8fdc..d1a2115612 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-350-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-1-firefox-linux.png index aed075f076..404b1df892 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-2-firefox-linux.png index 715bf1517e..5f289d0894 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonLeft-spin-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png index be467f7f35..c67ca5cc71 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-2-firefox-linux.png index 6fa1724dc1..5a740560d4 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-addonRight-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-1-firefox-linux.png index 8cdc384cb4..695be03719 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-2-firefox-linux.png index db9a43304b..c1aa6fa752 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-both-addons-badge-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-1-firefox-linux.png index 2e1075e309..619637260e 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-3-firefox-linux.png index f3c9bf5799..237d7504cd 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-400-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png index 4548a36a32..c3080a876a 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-2-firefox-linux.png index 8ff854463c..96568bbeea 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonLeft-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png index 88e0e3c2b4..e85f02af3f 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png index 259d70b692..f1f4705d9e 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-addonRight-badge-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-1-firefox-linux.png index e46a2b6e6a..125de0acd7 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-2-firefox-linux.png index 5663a31851..3da4d2f396 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-both-addons-counter-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-1-firefox-linux.png index d9b5f8a121..f2e53a7b3f 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-3-firefox-linux.png index 73811c6884..ad26c56bd3 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-500-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-1-firefox-linux.png index 1be662c07f..680e8781cf 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-2-firefox-linux.png index 747917f0b1..a10fc19007 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonLeft-badge-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png index 22c305bdef..22fc284b83 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png index 9b985896ef..a7a805a77b 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-addonRight-counter-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-1-firefox-linux.png index 9222d9ab05..b481d9076c 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-2-firefox-linux.png index e1bb0ad7f6..20ab807986 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-both-addons-spin-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-1-firefox-linux.png index 0321dd1bcf..9b0257687a 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-3-firefox-linux.png index 962cc22cf5..60a69d4fb5 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-3-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-600-no-addons-text-success-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png index 10c0dec94a..99b75b16ca 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png index 915b67bf8f..b67a5d9e17 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonLeft-counter-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png index 6dc10d6982..d31be06ada 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png index 3dc151be85..f75cb173b4 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-addonRight-spin-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-1-firefox-linux.png index b42d3d1e7c..960a8a107a 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-2-firefox-linux.png index 1f499a752c..967d03f363 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-both-addons-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png index 3b9848a3c6..a542e824c7 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png index c49dbac52e..28ea7212ec 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-700-no-addons-text-critical-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-1-firefox-linux.png index 25c1ccb756..e6d63c2bdf 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-2-firefox-linux.png index af801b8c58..4d48c1b8c4 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonLeft-spin-cropPosition-middle-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png index c64f23e5d8..145b64772d 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-2-firefox-linux.png index ede3a04bde..c7c86366ef 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-addonRight-merged-middle-lastRequired-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-1-firefox-linux.png index 271bcfbb74..0b6cb26197 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-2-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-2-firefox-linux.png index df6887ed18..cf2f810c44 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-2-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-both-addons-badge-end-maxLine-2-2-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-1-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-1-firefox-linux.png index 8ee838e01d..64b0e7103e 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-1-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-1-firefox-linux.png differ diff --git a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-3-firefox-linux.png b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-3-firefox-linux.png index aec4046800..501b79bc06 100644 Binary files a/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-3-firefox-linux.png and b/semcore/link/__tests__/link.browser-test.tsx-snapshots/-visual-Verify-Link-size-800-no-addons-ellipsis-true-3-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx index 0386d52c64..4a2fd2ce8b 100644 --- a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx +++ b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx @@ -584,10 +584,15 @@ test.describe(`${TAG.VISUAL}`, () => { await locators.closeButton(page).waitFor({ state: 'visible' }); await locators.closeHint(page).waitFor({ state: 'visible' }); + await page.keyboard.press('Tab'); await page.keyboard.press('Tab'); await page.keyboard.press('Tab'); await locators.closeHint(page).waitFor({ state: 'visible' }); + await page.waitForFunction(() => { + const el = document.querySelector('[data-ui-name="Hint"]'); + return el && getComputedStyle(el).opacity === '1'; + }); await expect(page).toHaveScreenshot(); }); diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-chromium-linux.png index 3a5edf1b1d..a0c575c0e5 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-firefox-linux.png index e5bb8bba44..e2fc6a8618 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Basic-notice-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-chromium-linux.png index ad87f7956b..ae4efc3619 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-firefox-linux.png index 02bde7e49c..3628b46189 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-webkit-linux.png index 1d897f7272..a8285e884d 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Failture-state-1-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-chromium-linux.png index 7ba167fe30..43fc27f745 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-firefox-linux.png index 6ed5a436d1..f931404648 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-webkit-linux.png index f961f0cb6d..1242837d40 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Loading-state-2-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-chromium-linux.png index 4e2b7b6571..23cb234579 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-firefox-linux.png index fdb3c9326b..d54d99c226 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-webkit-linux.png index 6f87940d50..980d213ed3 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Reload-action-1-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-chromium-linux.png index 35bafbc1fb..2375c132f8 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-firefox-linux.png index 080035367b..6e538a8a14 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-webkit-linux.png index 4aab172ff0..148446e890 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Notice-with-Undo-action-1-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-chromium-linux.png index c1a0ce7930..d32605d105 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-firefox-linux.png index b313597937..37b7a4229f 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-webkit-linux.png index 2e358bbe95..38e6b55805 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-Warning-notice-with-interactive-element-1-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-chromium-linux.png index 3491c359a0..90589c8476 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-chromium-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-firefox-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-firefox-linux.png index 19eb7693ca..b1f781f412 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-firefox-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-firefox-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-webkit-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-webkit-linux.png index d940e4303d..3c898e4e8f 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-webkit-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-bubble-in-SM2-container-2-webkit-linux.png differ diff --git a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-with-illustration-1-chromium-linux.png b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-with-illustration-1-chromium-linux.png index 08f658a6cd..a41c0a398d 100644 Binary files a/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-with-illustration-1-chromium-linux.png and b/semcore/notice-bubble/__tests__/notice-bubble.browser-test.tsx-snapshots/-visual-Verify-notice-with-illustration-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx b/semcore/tag/__tests__/tag.browser-test.tsx index bdacd19320..3b786521fa 100644 --- a/semcore/tag/__tests__/tag.browser-test.tsx +++ b/semcore/tag/__tests__/tag.browser-test.tsx @@ -23,48 +23,59 @@ Visual states, hover and focus styles, paddings, margins, and snapshots. test.describe(`${TAG.VISUAL}`, () => { test.describe('Base states and styles', () => { const tagVariables = [ - // Base tags without addons (sizes m, l, xl) - pairwise with colors + // Base tags without addons (sizes m, l, xl). `color` is only supported by the primary theme. { size: 'm', theme: 'primary', color: 'gray-500', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, - { size: 'l', theme: 'secondary', color: 'blue-500', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, - { size: 'xl', theme: 'additional', color: 'green-500', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, + { size: 'l', theme: 'secondary', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, + { size: 'xl', theme: 'additional', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, - // Disabled state - pairwise with different theme/color - { size: 'm', theme: 'muted', color: 'salad-500', disabled: true, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, + // Disabled state - pairwise with theme/color + { size: 'm', theme: 'primary', color: 'salad-500', disabled: true, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, + { size: 'm', theme: 'additional', disabled: true, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, - // Interactive with addons - pairwise colors + // Invert on a dark background - all three themes, pairwise with sizes + { size: 'm', theme: 'primary', invert: true, color: 'blue-500', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, + { size: 'l', theme: 'secondary', invert: true, disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: false, showClose: false }, + { size: 'xl', theme: 'additional', invert: true, disabled: false, interactive: false, showAddonLeft: true, showAddonRight: false, useTagContainer: false, showClose: false }, + + // Interactive with addons { size: 'm', theme: 'primary', color: 'orange-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: false, showClose: false }, - { size: 'm', theme: 'secondary', color: 'yellow-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: false, showClose: false }, - { size: 'm', theme: 'additional', color: 'red-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: false, showClose: false }, + { size: 'm', theme: 'secondary', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: false, showClose: false }, + { size: 'm', theme: 'additional', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: false, showClose: false }, - // TagContainer with close button - pairwise colors + // TagContainer with close button { size: 'm', theme: 'primary', color: 'pink-500', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: true, showClose: true }, - { size: 'm', theme: 'secondary', color: 'violet-500', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: true, showClose: true }, + { size: 'm', theme: 'secondary', disabled: false, interactive: false, showAddonLeft: false, showAddonRight: false, useTagContainer: true, showClose: true }, - // TagContainer with icon and close - pairwise colors + // TagContainer with icon and close { size: 'm', theme: 'primary', color: 'white-500', disabled: false, interactive: false, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, - { size: 'm', theme: 'secondary', color: 'gray-500', disabled: false, interactive: false, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, - // TagContainer disabled with icon - pairwise with invert theme - { size: 'm', theme: 'invert', color: 'blue-500', disabled: true, interactive: true, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, + // TagContainer disabled with icon and close + { size: 'm', theme: 'primary', color: 'blue-500', disabled: true, interactive: true, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, + + // TagContainer invert, interactive with icon and close - all three themes + { size: 'm', theme: 'primary', invert: true, color: 'violet-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, + { size: 'm', theme: 'secondary', invert: true, disabled: false, interactive: true, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, + { size: 'm', theme: 'additional', invert: true, disabled: false, interactive: true, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, - // TagContainer interactive with addons without close - pairwise colors + // TagContainer interactive with addons without close { size: 'm', theme: 'primary', color: 'green-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: true, showClose: false }, - { size: 'm', theme: 'secondary', color: 'salad-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: true, showClose: false }, - { size: 'm', theme: 'additional', color: 'orange-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: true, showClose: false }, + { size: 'm', theme: 'secondary', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: true, showClose: false }, + { size: 'm', theme: 'additional', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: true, useTagContainer: true, showClose: false }, - // TagContainer interactive with addon and close - pairwise colors + // TagContainer interactive with addon and close { size: 'm', theme: 'primary', color: 'yellow-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, - { size: 'm', theme: 'secondary', color: 'red-500', disabled: false, interactive: true, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, - // TagContainer disabled with addon and close - pairwise colors - { size: 'm', theme: 'muted', color: 'pink-500', disabled: true, interactive: false, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, + // TagContainer disabled with addon and close - pairwise themes + { size: 'm', theme: 'secondary', disabled: true, interactive: false, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, - // TagContainer active with addon and close - pairwise colors - { size: 'm', theme: 'invert', color: 'violet-500', disabled: false, active: true, interactive: false, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, + // TagContainer active with addon and close - pairwise themes + { size: 'm', theme: 'primary', color: 'violet-500', disabled: false, active: true, interactive: false, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, + { size: 'm', theme: 'additional', invert: true, disabled: false, active: true, interactive: false, showAddonLeft: true, showAddonRight: false, useTagContainer: true, showClose: true }, ]; tagVariables.forEach((item) => { const description = `Verify Tag size ${item.size}, theme ${item.theme}, ` + + `invert ${item.invert || false}, ` + `color ${item.color || 'default'}, ` + `disabled ${item.disabled}, active ${item.active || false}, ` + `interactive ${item.interactive}, ` + diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png new file mode 100644 index 0000000000..e7f05aac5e Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png new file mode 100644 index 0000000000..596174f948 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png new file mode 100644 index 0000000000..687ee08a41 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0014a-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png new file mode 100644 index 0000000000..0c4485dd4f Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png new file mode 100644 index 0000000000..147470c152 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png new file mode 100644 index 0000000000..8d05139f80 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-00bb3-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png new file mode 100644 index 0000000000..e050fb4a33 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png new file mode 100644 index 0000000000..d395369d57 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png new file mode 100644 index 0000000000..a330335cc9 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-01714-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-40e23-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-08a74-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-40e23-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-08a74-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-40e23-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-08a74-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-40e23-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-08a74-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-40e23-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-08a74-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-40e23-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-08a74-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-chromium-linux.png new file mode 100644 index 0000000000..29e815aacb Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-firefox-linux.png new file mode 100644 index 0000000000..9d2137015e Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-webkit-linux.png new file mode 100644 index 0000000000..2fefba0c4b Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0980c-s-L-true-R-true-container-false-close-false-2-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5bbd-s-L-false-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0991d-s-L-false-R-false-container-true-close-true-1-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5bbd-s-L-false-R-false-container-true-close-true-1-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0991d-s-L-false-R-false-container-true-close-true-1-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5bbd-s-L-false-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0991d-s-L-false-R-false-container-true-close-true-1-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5bbd-s-L-false-R-false-container-true-close-true-1-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0991d-s-L-false-R-false-container-true-close-true-1-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5bbd-s-L-false-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0991d-s-L-false-R-false-container-true-close-true-1-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5bbd-s-L-false-R-false-container-true-close-true-1-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0991d-s-L-false-R-false-container-true-close-true-1-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png new file mode 100644 index 0000000000..a517656fc8 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png new file mode 100644 index 0000000000..3ebbbb4cf9 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png new file mode 100644 index 0000000000..201df3ef92 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-0a6f6-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png new file mode 100644 index 0000000000..4b3bb61a4a Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png new file mode 100644 index 0000000000..62914794ca Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png new file mode 100644 index 0000000000..962e744ddc Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1b321-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..5fce80ff60 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..e22e16ad62 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..af1f841f7a Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cfdb--L-true-R-false-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-chromium-linux.png deleted file mode 100644 index 4a8b6d85c7..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-firefox-linux.png deleted file mode 100644 index d15592f2d8..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-webkit-linux.png deleted file mode 100644 index 1678488459..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-23b25-s-L-true-R-true-container-false-close-false-3-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..dd9f429bed Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..05a1bcc0ba Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..f23e974d80 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-265c0-L-false-R-false-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cc5b-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-284a9-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cc5b-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-284a9-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cc5b-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-284a9-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cc5b-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-284a9-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cc5b-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-284a9-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-1cc5b-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-284a9-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d7bb8-s-L-true-R-true-container-false-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2c035-s-L-true-R-true-container-false-close-false-3-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d7bb8-s-L-true-R-true-container-false-close-false-3-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2c035-s-L-true-R-true-container-false-close-false-3-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d7bb8-s-L-true-R-true-container-false-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2c035-s-L-true-R-true-container-false-close-false-3-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d7bb8-s-L-true-R-true-container-false-close-false-3-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2c035-s-L-true-R-true-container-false-close-false-3-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d7bb8-s-L-true-R-true-container-false-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2c035-s-L-true-R-true-container-false-close-false-3-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d7bb8-s-L-true-R-true-container-false-close-false-3-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2c035-s-L-true-R-true-container-false-close-false-3-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-chromium-linux.png deleted file mode 100644 index a35621a9ac..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-firefox-linux.png deleted file mode 100644 index d325c1921c..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-webkit-linux.png deleted file mode 100644 index 0df4e2f783..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2e08a-L-false-R-false-container-false-close-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png deleted file mode 100644 index a42270dc37..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png deleted file mode 100644 index 6f09acd7c1..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png deleted file mode 100644 index c32f4387f1..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-2fbfb-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-chromium-linux.png new file mode 100644 index 0000000000..ea8dda96ea Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-firefox-linux.png new file mode 100644 index 0000000000..a03c9ede23 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-webkit-linux.png new file mode 100644 index 0000000000..c5ea0a79f8 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-38022-s-L-false-R-false-container-true-close-true-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png new file mode 100644 index 0000000000..e050fb4a33 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png new file mode 100644 index 0000000000..c0dc003f40 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png new file mode 100644 index 0000000000..2af7204277 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3d737-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png new file mode 100644 index 0000000000..a37de96b5f Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png new file mode 100644 index 0000000000..3029473c4b Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png new file mode 100644 index 0000000000..89e39d6ba9 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-3e0ab-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-chromium-linux.png deleted file mode 100644 index 4e2b95a67e..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-firefox-linux.png deleted file mode 100644 index 662031e719..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-webkit-linux.png deleted file mode 100644 index ea9e887431..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-45009-s-L-true-R-true-container-false-close-false-3-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png new file mode 100644 index 0000000000..1d651f1a1a Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png new file mode 100644 index 0000000000..d395369d57 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png new file mode 100644 index 0000000000..a165c4f30b Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-478d3-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..8d470e4b64 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..6a0ee44e7f Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..cc5d5a0e46 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-4b1cd-L-false-R-false-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png new file mode 100644 index 0000000000..1ae20b682d Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png new file mode 100644 index 0000000000..5b81565fe7 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png new file mode 100644 index 0000000000..dcc7312a13 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-5146c-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-chromium-linux.png new file mode 100644 index 0000000000..f90b18f138 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-firefox-linux.png new file mode 100644 index 0000000000..6ac97ff27d Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-webkit-linux.png new file mode 100644 index 0000000000..2a56d06257 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-626d0-s-L-true-R-true-container-false-close-false-3-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png deleted file mode 100644 index eb48e4abe1..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png deleted file mode 100644 index 738fbfef0d..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png deleted file mode 100644 index e03a95da8a..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-6dfea-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-chromium-linux.png deleted file mode 100644 index 5b5e1f81a2..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-firefox-linux.png deleted file mode 100644 index ef315b6de2..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-webkit-linux.png deleted file mode 100644 index dc4bcb38b9..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-70a18-s-L-true-R-true-container-false-close-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png deleted file mode 100644 index 157da82d41..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png deleted file mode 100644 index 9435b38bac..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png deleted file mode 100644 index 947910bf4d..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-73240-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png deleted file mode 100644 index 68f6e76853..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png deleted file mode 100644 index 8823b6aa6b..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png deleted file mode 100644 index 645f91802e..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ab20-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-chromium-linux.png deleted file mode 100644 index 1e2601f290..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-firefox-linux.png deleted file mode 100644 index 970431d5a4..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-webkit-linux.png deleted file mode 100644 index de87c522fb..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7b108-L-false-R-false-container-false-close-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-697c5-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ba47-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-697c5-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ba47-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-697c5-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ba47-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-697c5-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ba47-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-697c5-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ba47-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-697c5-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7ba47-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-dffe8-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7dea4-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-dffe8-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7dea4-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-dffe8-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7dea4-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-dffe8-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7dea4-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-dffe8-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7dea4-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-dffe8-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7dea4-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..70adbd2d6f Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..269480d9b2 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..63df956490 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-7fb8a-L-false-R-false-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png new file mode 100644 index 0000000000..f90b18f138 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png new file mode 100644 index 0000000000..6ac97ff27d Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png new file mode 100644 index 0000000000..2a56d06257 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80591-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..bbe1600868 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..c03b8c1347 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..5258cb0919 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-80837-L-false-R-false-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png new file mode 100644 index 0000000000..e88ce2b0ed Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png new file mode 100644 index 0000000000..a009279140 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png new file mode 100644 index 0000000000..6ca6c27630 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-812dd-ns-L-true-R-true-container-true-close-false-3-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png new file mode 100644 index 0000000000..45f2a31226 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png new file mode 100644 index 0000000000..8558554219 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png new file mode 100644 index 0000000000..c267a71118 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-83710-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png deleted file mode 100644 index f356b7a077..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png deleted file mode 100644 index c480a504a7..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png deleted file mode 100644 index a60251e242..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-84f92-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png new file mode 100644 index 0000000000..875b540a9e Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png new file mode 100644 index 0000000000..29c1c89e23 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png new file mode 100644 index 0000000000..5699b6f971 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85138-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-chromium-linux.png new file mode 100644 index 0000000000..faa0dc54b2 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-firefox-linux.png new file mode 100644 index 0000000000..829adc8f26 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-webkit-linux.png new file mode 100644 index 0000000000..c1c77b2321 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-88c03-s-L-true-R-true-container-false-close-false-2-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-52bb7-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8b2f9-L-false-R-false-container-false-close-false-1-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-52bb7-L-false-R-false-container-false-close-false-1-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8b2f9-L-false-R-false-container-false-close-false-1-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-52bb7-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8b2f9-L-false-R-false-container-false-close-false-1-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-52bb7-L-false-R-false-container-false-close-false-1-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8b2f9-L-false-R-false-container-false-close-false-1-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-52bb7-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8b2f9-L-false-R-false-container-false-close-false-1-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-52bb7-L-false-R-false-container-false-close-false-1-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8b2f9-L-false-R-false-container-false-close-false-1-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..49c22a4560 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..1d24fbf75d Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..1205d1d472 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-8ec38-L-false-R-false-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-04105-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-92288-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-04105-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-92288-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-04105-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-92288-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-04105-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-92288-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-04105-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-92288-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-04105-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-92288-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png new file mode 100644 index 0000000000..faa0dc54b2 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png new file mode 100644 index 0000000000..829adc8f26 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png new file mode 100644 index 0000000000..c1c77b2321 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-94e8b-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..c7a6851434 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..829adc8f26 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..bf550101c0 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-97a3f-s-L-true-R-true-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png deleted file mode 100644 index 9151e5bfa7..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png deleted file mode 100644 index 4331ea4ea3..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png deleted file mode 100644 index 88f77342d0..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9966a-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png new file mode 100644 index 0000000000..a514ae069f Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png new file mode 100644 index 0000000000..e654880911 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png new file mode 100644 index 0000000000..a98594b9e9 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9afba-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..463b56a351 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..9d2137015e Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..86abed854a Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9d573-s-L-true-R-true-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png deleted file mode 100644 index 38eae7686a..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png deleted file mode 100644 index e10fb3927a..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png deleted file mode 100644 index 5fd696b9ed..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-9efc0-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd3f4-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a25e9-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd3f4-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a25e9-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd3f4-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a25e9-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd3f4-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a25e9-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd3f4-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a25e9-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd3f4-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a25e9-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-chromium-linux.png deleted file mode 100644 index f28584bd87..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-firefox-linux.png deleted file mode 100644 index 0e8b107bf7..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-webkit-linux.png deleted file mode 100644 index 3e73e1b4b4..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a5e83-s-L-true-R-true-container-false-close-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png new file mode 100644 index 0000000000..e7b963c083 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png new file mode 100644 index 0000000000..147470c152 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png new file mode 100644 index 0000000000..abcb0c2c2d Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a7702-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png new file mode 100644 index 0000000000..29e815aacb Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png new file mode 100644 index 0000000000..9d2137015e Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png new file mode 100644 index 0000000000..2fefba0c4b Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-a97b6-ns-L-true-R-true-container-true-close-false-2-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png deleted file mode 100644 index 90f852da87..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png deleted file mode 100644 index 1c98154458..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png deleted file mode 100644 index 2be4101fe9..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-af545-ns-L-true-R-false-container-true-close-true-2-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-chromium-linux.png deleted file mode 100644 index e7cee9df23..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-firefox-linux.png deleted file mode 100644 index ef315b6de2..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-webkit-linux.png deleted file mode 100644 index 56b51c6d37..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b076e-s-L-true-R-true-container-false-close-false-2-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-chromium-linux.png deleted file mode 100644 index cb22b83105..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-firefox-linux.png deleted file mode 100644 index f1da8c0205..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-webkit-linux.png deleted file mode 100644 index e2acfaa9df..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-b434d-L-false-R-false-container-false-close-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..c7a6851434 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..829adc8f26 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..bf550101c0 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-bd896-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d36c6-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-c0cea-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d36c6-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-c0cea-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d36c6-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-c0cea-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d36c6-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-c0cea-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d36c6-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-c0cea-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d36c6-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-c0cea-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-953b8-s-L-true-R-true-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d51d8-s-L-true-R-true-container-false-close-false-1-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-953b8-s-L-true-R-true-container-false-close-false-1-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d51d8-s-L-true-R-true-container-false-close-false-1-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-953b8-s-L-true-R-true-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d51d8-s-L-true-R-true-container-false-close-false-1-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-953b8-s-L-true-R-true-container-false-close-false-1-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d51d8-s-L-true-R-true-container-false-close-false-1-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-953b8-s-L-true-R-true-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d51d8-s-L-true-R-true-container-false-close-false-1-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-953b8-s-L-true-R-true-container-false-close-false-1-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d51d8-s-L-true-R-true-container-false-close-false-1-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png new file mode 100644 index 0000000000..114d6fa998 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png new file mode 100644 index 0000000000..309b81ec1d Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png new file mode 100644 index 0000000000..cfb92543df Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d55fc-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png deleted file mode 100644 index 2cc0854b1a..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png deleted file mode 100644 index 0f972f7308..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png deleted file mode 100644 index 016dbe6842..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d61a3-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png deleted file mode 100644 index 4d03ff9d92..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png deleted file mode 100644 index 46c8a802c0..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png deleted file mode 100644 index a9fff2ed73..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-d783c-ns-L-true-R-false-container-true-close-true-4-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png new file mode 100644 index 0000000000..36122b83a2 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png new file mode 100644 index 0000000000..29c1c89e23 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png new file mode 100644 index 0000000000..da41a86e85 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e4e90-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png new file mode 100644 index 0000000000..6dd9e21cb9 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png new file mode 100644 index 0000000000..6d741a6c76 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png new file mode 100644 index 0000000000..7ef39c9f7a Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e5f97-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e8889-s-L-true-R-true-container-false-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e6bdb-s-L-true-R-true-container-false-close-false-2-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e8889-s-L-true-R-true-container-false-close-false-2-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e6bdb-s-L-true-R-true-container-false-close-false-2-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e8889-s-L-true-R-true-container-false-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e6bdb-s-L-true-R-true-container-false-close-false-2-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e8889-s-L-true-R-true-container-false-close-false-2-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e6bdb-s-L-true-R-true-container-false-close-false-2-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e8889-s-L-true-R-true-container-false-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e6bdb-s-L-true-R-true-container-false-close-false-2-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e8889-s-L-true-R-true-container-false-close-false-2-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e6bdb-s-L-true-R-true-container-false-close-false-2-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png deleted file mode 100644 index 82a706b3d3..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png deleted file mode 100644 index e10fb3927a..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png deleted file mode 100644 index 7719f20aed..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7017-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85ae9-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7aa5-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85ae9-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7aa5-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85ae9-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7aa5-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85ae9-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7aa5-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85ae9-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7aa5-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png similarity index 100% rename from semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-85ae9-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png rename to semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7aa5-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png deleted file mode 100644 index 981e584bb1..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png deleted file mode 100644 index 1c98154458..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png deleted file mode 100644 index 8c6388b6ab..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-e7d46-ns-L-true-R-false-container-true-close-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-chromium-linux.png new file mode 100644 index 0000000000..e88ce2b0ed Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-firefox-linux.png new file mode 100644 index 0000000000..a009279140 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-webkit-linux.png new file mode 100644 index 0000000000..6ca6c27630 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-ee6a5-s-L-true-R-true-container-false-close-false-3-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-chromium-linux.png deleted file mode 100644 index 58f7a0eb3a..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-firefox-linux.png deleted file mode 100644 index 0e8b107bf7..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-webkit-linux.png deleted file mode 100644 index 6f44044753..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f3fd0-s-L-true-R-true-container-false-close-false-2-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..c85ad9ce4a Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..dcbee94622 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..8cff9ac909 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f71a2-L-false-R-false-container-false-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png new file mode 100644 index 0000000000..463b56a351 Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png new file mode 100644 index 0000000000..9d2137015e Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png new file mode 100644 index 0000000000..86abed854a Binary files /dev/null and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f8238-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-chromium-linux.png deleted file mode 100644 index 7c2a3354aa..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-firefox-linux.png deleted file mode 100644 index b4bcae53c8..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-webkit-linux.png deleted file mode 100644 index bc546a9c16..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-f82d6-s-L-false-R-false-container-true-close-true-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png deleted file mode 100644 index 3474aaa36d..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png deleted file mode 100644 index 8823b6aa6b..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png deleted file mode 100644 index 324fd600d7..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fb10b-ns-L-true-R-true-container-true-close-false-1-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png deleted file mode 100644 index b300948c78..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-chromium-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png deleted file mode 100644 index 6343841f78..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-firefox-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png deleted file mode 100644 index 0815a806f1..0000000000 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Base-states-and-styles-Verify-Tag-size-fe385-ns-L-true-R-false-container-true-close-true-3-webkit-linux.png and /dev/null differ diff --git a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Verify-tag-with-ellipsis-visual-1-webkit-linux.png b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Verify-tag-with-ellipsis-visual-1-webkit-linux.png index 135a5938cf..cf99888287 100644 Binary files a/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Verify-tag-with-ellipsis-visual-1-webkit-linux.png and b/semcore/tag/__tests__/tag.browser-test.tsx-snapshots/-visual-Verify-tag-with-ellipsis-visual-1-webkit-linux.png differ diff --git a/semcore/tag/src/Tag.tsx b/semcore/tag/src/Tag.tsx index 6f36e64f70..b9e28fdf50 100644 --- a/semcore/tag/src/Tag.tsx +++ b/semcore/tag/src/Tag.tsx @@ -69,6 +69,16 @@ class RootTag extends Component< } }; + resolvedTheme() { + const { theme, invert } = this.asProps; + + if (invert === true) { + return `${theme}-invert`; + } + + return theme; + } + render() { const STag = Root; const { @@ -82,6 +92,7 @@ class RootTag extends Component< resolveColor, id: outerId, uid, + theme, } = this.asProps; const id = outerId || `igc-${uid}-tag`; const isInteractiveView = !disabled && interactive; @@ -93,7 +104,8 @@ class RootTag extends Component< id={id} use:interactive={isInteractive} use:interactiveView={isInteractiveView} - tag-color={resolveColor(color)} + use:theme={this.resolvedTheme()} + tag-color={theme === 'primary' ? resolveColor(color) : undefined} onKeyDown={this.handleKeyDown} use:tabIndex={isInteractive ? 0 : -1} role={isInteractive ? 'button' : undefined} @@ -153,6 +165,7 @@ class RootTagContainer extends Component< addonLeft, addonRight, active, + invert, } = this.asProps; const id = outerId || `igc-${uid}-tag`; @@ -168,6 +181,7 @@ class RootTagContainer extends Component< addonLeft, addonRight, active, + invert, }; } @@ -198,7 +212,7 @@ class RootTagContainer extends Component< return { disabled, size, - theme, + 'theme': this.resolvedTheme(), color, 'id': `${id}-clear`, 'aria-labelledby': `${id}-clear ${id}-text`, @@ -207,6 +221,16 @@ class RootTagContainer extends Component< }; } + resolvedTheme() { + const { theme, invert } = this.asProps; + + if (invert === true) { + return `${theme}-invert`; + } + + return theme; + } + render() { const STagContainer = Root; const { styles, Children, forcedAdvancedMode } = this.asProps; diff --git a/semcore/tag/src/Tag.type.ts b/semcore/tag/src/Tag.type.ts index d928d2d486..32a2fdbd83 100644 --- a/semcore/tag/src/Tag.type.ts +++ b/semcore/tag/src/Tag.type.ts @@ -27,8 +27,10 @@ declare namespace NSTag { * @default primary */ theme?: NSTag.Theme; - /** Tag color text */ - color?: string; + /** + * Flag for invert the tag to display in a dark theme or on a dark background. + */ + invert?: boolean; /** Tag size * @default m */ @@ -39,7 +41,15 @@ declare namespace NSTag { addonRight?: React.ElementType; /** Specifies the locale for i18n support */ locale?: string; - }; + } & ({ + theme?: 'primary'; + /** Tag color text */ + color?: string; + } | { + theme?: 'secondary' | 'additional'; + /** Tag color text */ + color?: never; + }); type DefaultProps = { theme: 'primary'; color: 'gray-500'; diff --git a/semcore/tag/src/style/tag.shadow.css b/semcore/tag/src/style/tag.shadow.css index e951c4c3cc..7d4ac6eca0 100644 --- a/semcore/tag/src/style/tag.shadow.css +++ b/semcore/tag/src/style/tag.shadow.css @@ -45,12 +45,12 @@ STagContainerClose { align-items: center; justify-content: center; vertical-align: middle; - border: 1px solid var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); /* TODO: --intergalactic-tag-primary-border */ + border: 1px solid var(--intergalactic-tag-primary-border, oklch(1 0 0)); box-sizing: border-box; - background-color: var(--intergalactic-bg-primary-neutral, oklch(1 0 0)); /* TODO: --intergalactic-tag-primary-bg-normal */ + background-color: var(--intergalactic-tag-primary-bg-normal, oklch(1 0 0)); border-radius: var(--intergalactic-tag-rounded, 24px); - padding-left: var(--intergalactic-spacing-1x, 4px); - padding-right: var(--intergalactic-spacing-1x, 4px); + padding-left: var(--intergalactic-spacing-content-gap-small, 4px); + padding-right: var(--intergalactic-spacing-content-gap-small, 4px); font-family: inherit; font-weight: var(--intergalactic-medium, 500); color: var(--tag-color); @@ -135,7 +135,7 @@ STag[size="xl"], STagContainerClose[size="xl"] { height: 40px; min-width: 40px; - padding: 0 var(--intergalactic-spacing-2x, 8px); + padding: 0 var(--intergalactic-spacing-content-gap-large, 8px); & SText { font-size: var(--intergalactic-fs-300, 16px); @@ -167,62 +167,96 @@ STagContainer[theme="primary"] SAddon { } STag[theme="secondary"], -STagContainerClose[theme="secondary"], -STag[theme="additional"], -STagContainerClose[theme="additional"] { - /* chenge to ...? secondary: change to --intergalactic-tag-secondary-border; additional: change to --intergalactic-tag-additional-bg-normal */ - &::before { - opacity: 0.01; +STagContainerClose[theme="secondary"] { + color: var(--intergalactic-tag-secondary-text, #6a6c6a); + background-color: var(--intergalactic-tag-secondary-bg-normal, #ffffff); + border-color: var(--intergalactic-tag-secondary-border, oklch(0.95 0.002 180)); + + &::before, + &::after { + display: none; } &[interactiveView]:hover, &[interactiveView]:active, &[active] { - &:before { - opacity: 0.1; - } + background-color: var(--intergalactic-tag-secondary-bg-hover-active, #f4f5f5); } } -STag[theme="secondary"], -STagContainerClose[theme="secondary"], STag[theme="additional"], -STagContainerClose[theme="additional"], -STag[theme="secondary-invert"], -STagContainerClose[theme="secondary-invert"], -STag[theme="additional-invert"], -STagContainerClose[theme="additional-invert"] { +STagContainerClose[theme="additional"] { + color: var(--intergalactic-tag-additional-text, #6a6c6a); + background-color: var(--intergalactic-tag-additional-bg-normal, oklch(1 0 0)); + border-color: var(--intergalactic-tag-additional-border, oklch(0.95 0.002 180)); + border-style: dashed; + + &::before, &::after { - opacity: 0.5; + display: none; + } + + &[interactiveView]:hover, + &[interactiveView]:active, + &[active] { + background-color: var(--intergalactic-tag-additional-bg-hover-active, oklch(0.98 0.001 180)); } } STag[theme="primary-invert"], STagContainerClose[theme="primary-invert"] { - background-color: var( - --intergalactic-tag-primary-white-normal, - oklch(1 0 0) - ); - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); + background-color: var(--intergalactic-tag-primary-bg-invert-normal, oklch(0.969 0.057 140 / 0.118)); + color: var(--intergalactic-tag-primary-text-invert, #ffffff); + border-color: transparent; + + &[interactiveView]:hover, + &[interactiveView]:active, + &[active] { + background-color: var(--intergalactic-tag-primary-bg-invert-hover-active, oklch(0.99 0.017 140 / 0.242)); + } } STag[theme="secondary-invert"], -STagContainerClose[theme="secondary-invert"], +STagContainerClose[theme="secondary-invert"] { + background-color: var(--intergalactic-tag-secondary-bg-invert-normal, transparent); + color: var(--intergalactic-tag-secondary-text-invert, oklch(0.997 0.004 165.9 / 0.684)); + border-color: var(--intergalactic-tag-secondary-border-invert, oklch(0.989 0.019 140 / 0.232)); + + &::before, + &::after { + display: none; + } + + &[interactiveView]:hover, + &[interactiveView]:active, + &[active] { + background-color: var(--intergalactic-tag-secondary-bg-invert-hover-active, oklch(0.98 0.036 140 / 0.164)); + } +} + STag[theme="additional-invert"], STagContainerClose[theme="additional-invert"] { - color: var(--intergalactic-text-primary-invert, oklch(0.999 0.001 180 / 0.949)); /* TODO:--intergalactic-tag-secondary-white-text */ -} + background-color: var(--intergalactic-tag-additional-bg-invert-normal, transparent); + color: var(--intergalactic-tag-additional-text-invert, oklch(0.997 0.004 165.9 / 0.684)); + border-color: var(--intergalactic-tag-additional-border-invert, oklch(0.995 0.008 147.4 / 0.391)); + border-style: dashed; -STag[theme="additional"] { + &::before, &::after { - border-style: dashed; + display: none; + } + + &[interactiveView]:hover, + &[interactiveView]:active, + &[active] { + background-color: var(--intergalactic-tag-additional-bg-invert-hover-active, oklch(0.98 0.036 140 / 0.164)); } } SText { display: flex; - padding-left: var(--intergalactic-spacing-1x, 4px); - padding-right: var(--intergalactic-spacing-1x, 4px); + padding-left: var(--intergalactic-spacing-content-gap-small, 4px); + padding-right: var(--intergalactic-spacing-content-gap-small, 4px); position: relative; } @@ -258,6 +292,20 @@ STagContainer { align-items: center; justify-content: center; + STag[theme="secondary"]:not(:last-child), + STag[theme="additional"]:not(:last-child), + STag[theme="secondary-invert"]:not(:last-child), + STag[theme="additional-invert"]:not(:last-child) { + border-right: 0; + } + + STagContainerClose[theme="secondary"], + STagContainerClose[theme="additional"], + STagContainerClose[theme="secondary-invert"], + STagContainerClose[theme="additional-invert"] { + border-left: 0; + } + STag, SAddon { &:not(:last-child) { @@ -319,7 +367,7 @@ STagContainer { svg { padding-left: 0; - padding-right: var(--intergalactic-spacing-1x, 4px); + padding-right: var(--intergalactic-spacing-content-gap-small, 4px); } svg path { @@ -333,8 +381,8 @@ STagContainer { STagContainerClose[size="xl"] { svg { - padding-left: var(--intergalactic-spacing-1x, 4px); - padding-right: var(--intergalactic-spacing-2x, 8px); + padding-left: var(--intergalactic-spacing-content-gap-small, 4px); + padding-right: var(--intergalactic-spacing-content-gap-large, 8px); } } } diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-chromium-linux.png index dfa6157971..16f1c17950 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-firefox-linux.png index 1267be436d..e2e851f3ba 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-webkit-linux.png index bed8628b46..22f7a15cff 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Description-tooltip-Verify-theme-invert-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-chromium-linux.png index cfed8c4505..d1707acb11 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-firefox-linux.png index 890146430b..fc1a5dd46e 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-webkit-linux.png index 1f404cc039..324f15833c 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Hint-Verify-theme-invert-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-chromium-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-chromium-linux.png index 582e19dcdc..38c3aff469 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-chromium-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-chromium-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-firefox-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-firefox-linux.png index df4fb6aea4..18331d9676 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-firefox-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-firefox-linux.png differ diff --git a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-webkit-linux.png b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-webkit-linux.png index 6452e0e723..9da0f9119a 100644 Binary files a/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-webkit-linux.png and b/semcore/tooltip/__tests__/tooltip.browser-test.tsx-snapshots/-visual-Tooltip-Verify-theme-invert-1-webkit-linux.png differ diff --git a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-2-firefox-linux.png b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-2-firefox-linux.png index 1b9a39fc26..44bdcbcf91 100644 Binary files a/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-2-firefox-linux.png and b/semcore/tooltip/__tests__/ux-patterns-with-tooltips/summary.browser-test.tsx-snapshots/-visual-Verify-Summary-with-error-2-firefox-linux.png differ diff --git a/semcore/tooltip/src/style/tooltip.shadow.css b/semcore/tooltip/src/style/tooltip.shadow.css index 52a02a59eb..ae1b7b9452 100644 --- a/semcore/tooltip/src/style/tooltip.shadow.css +++ b/semcore/tooltip/src/style/tooltip.shadow.css @@ -22,7 +22,7 @@ STooltip { STooltip[theme='invert'] { color: var(--intergalactic-tooltip-text-invert, oklch(0.999 0.001 180 / 0.949)); background-color: var(--intergalactic-tooltip-bg-invert, oklch(0.23 0.01 140)); - border: 1px solid var(--intergalactic-tooltip-border-invert, oklch(0.48 0.004 145.9)); + border: 1px solid var(--intergalactic-tooltip-border-invert, oklch(0.35 0.006 140)); } STooltip[theme='warning'] { @@ -52,7 +52,7 @@ SArrow { } SArrow[theme='invert'] { - border-color: var(--intergalactic-tooltip-border-invert, oklch(0.48 0.004 145.9)); + border-color: var(--intergalactic-tooltip-border-invert, oklch(0.35 0.006 140)); &::before { border-color: var(--intergalactic-tooltip-bg-invert, oklch(0.23 0.01 140)); diff --git a/stories/components/data-table/advanced/examples/table_perf/cells/payment_status.tsx b/stories/components/data-table/advanced/examples/table_perf/cells/payment_status.tsx index a68dbefdf4..1cee2a7dce 100644 --- a/stories/components/data-table/advanced/examples/table_perf/cells/payment_status.tsx +++ b/stories/components/data-table/advanced/examples/table_perf/cells/payment_status.tsx @@ -9,7 +9,7 @@ type PaymentStatusProps = { status: 'success' | 'failed'; short?: boolean; testIdPrefix?: string; -} & Omit; +}; const colorsMap = { success: 'green-500', diff --git a/stories/components/input-tags/docs/examples/wrapping_email_in_tag.tsx b/stories/components/input-tags/docs/examples/wrapping_email_in_tag.tsx index eab878fa57..69aa0dce3f 100644 --- a/stories/components/input-tags/docs/examples/wrapping_email_in_tag.tsx +++ b/stories/components/input-tags/docs/examples/wrapping_email_in_tag.tsx @@ -7,9 +7,8 @@ import React from 'react'; const isValidEmail = (value: string) => /.+@.+\..+/i.test(value.toLowerCase()); const defaultTags = ['bob@email.com', 'alice@domain.net', 'mary@website.com', 'steve@company.com']; -type ExampleInputTagsProps = InputTagsTagProps; -const Demo = (props: ExampleInputTagsProps) => { +const Demo = (props: InputTagsTagProps) => { const [tags, setTags] = React.useState(defaultTags); const [value, setValue] = React.useState(''); @@ -49,19 +48,24 @@ const Demo = (props: ExampleInputTagsProps) => { Participants - {tags.map((tag, idx) => ( - - {tag} - - - ))} + {tags.map((tag, idx) => { + const tagProps = (props.theme === 'primary' || props.theme === undefined) + ? { theme: props.theme, color: isValidEmail(tag) ? 'green-500' : 'red-500' } + : { theme: props.theme }; + + return ( + + {tag} + + + ); + })} { ); }; -export const defaultPropsEmail: ExampleInputTagsProps = { +export const defaultPropsEmail: InputTagsTagProps = { size: 'l', - theme: 'primary', disabled: false, editable: undefined, }; diff --git a/stories/components/input-tags/docs/input-tags.stories.tsx b/stories/components/input-tags/docs/input-tags.stories.tsx index d7527fa593..07629ad28a 100644 --- a/stories/components/input-tags/docs/input-tags.stories.tsx +++ b/stories/components/input-tags/docs/input-tags.stories.tsx @@ -12,7 +12,7 @@ const meta: Meta = { export default meta; -export const WrappingEmailInTag: StoryObj = { +export const WrappingEmailInTag: StoryObj = { render: WrappingEmailInTagExample, argTypes: { size: { @@ -27,7 +27,7 @@ export const WrappingEmailInTag: StoryObj = { }, theme: { control: { type: 'select' }, - options: ['primary', 'secondary', 'valid'], + options: ['primary', 'secondary', 'additional'], }, }, args: defaultPropsEmail, diff --git a/stories/components/input-tags/tests/examples/tags-with-addons.tsx b/stories/components/input-tags/tests/examples/tags-with-addons.tsx index 204a8eabc5..858b6d2982 100644 --- a/stories/components/input-tags/tests/examples/tags-with-addons.tsx +++ b/stories/components/input-tags/tests/examples/tags-with-addons.tsx @@ -1,24 +1,25 @@ import Check from '@semcore/icon/Check/m'; import Edit from '@semcore/icon/Edit/m'; -import { Box, Flex } from '@semcore/ui/base-components'; +import { Flex } from '@semcore/ui/base-components'; import InputTags from '@semcore/ui/input-tags'; import type { InputTagsTagProps } from '@semcore/ui/input-tags'; import React from 'react'; -type ExampleInputTagsProps = InputTagsTagProps; +const Demo = (props: InputTagsTagProps) => { + const tagProps = props.color + ? ({ theme: 'primary', color: props.color } as const) + : { theme: props.theme }; -const Demo = (props: ExampleInputTagsProps) => { return ( @@ -31,14 +32,11 @@ const Demo = (props: ExampleInputTagsProps) => { Addon text and close @@ -48,12 +46,9 @@ const Demo = (props: ExampleInputTagsProps) => { { @@ -88,10 +80,9 @@ const Demo = (props: ExampleInputTagsProps) => { @@ -108,14 +99,14 @@ const Demo = (props: ExampleInputTagsProps) => { ); }; -export const defaultPropsEmail: ExampleInputTagsProps = { +export const defaultPropsEmail: InputTagsTagProps = { size: 'l', - theme: 'primary', + // theme: 'primary', disabled: undefined, addonRight: undefined, addonLeft: undefined, interactive: undefined, - color: 'gray-500', + // color: 'gray-500', }; Demo.defaultProps = defaultPropsEmail; diff --git a/stories/components/input-tags/tests/input-tags.stories.tsx b/stories/components/input-tags/tests/input-tags.stories.tsx index dc7d0dc76b..4308cd9ea8 100644 --- a/stories/components/input-tags/tests/input-tags.stories.tsx +++ b/stories/components/input-tags/tests/input-tags.stories.tsx @@ -11,7 +11,7 @@ const meta: Meta = { export default meta; -export const EnteringAndEditingTags: StoryObj = { +export const EnteringAndEditingTags: StoryObj = { render: EnteringAndEditingTagsExample, argTypes: { size: { @@ -32,7 +32,7 @@ export const EnteringAndEditingTags: StoryObj = { +export const TagsWithAddons: StoryObj = { render: TagsWithAddonsExample, argTypes: { size: { @@ -74,7 +74,7 @@ export const TagsWithAddons: StoryObj = { }, theme: { control: { type: 'select' }, - options: ['primary', 'secondary', 'valid'], + options: ['primary', 'secondary', 'additional'], }, color: { control: { type: 'select' }, diff --git a/stories/components/tag/advanced/examples/all-tags.tsx b/stories/components/tag/advanced/examples/all-tags.tsx index a21bceacc2..01cf88e796 100644 --- a/stories/components/tag/advanced/examples/all-tags.tsx +++ b/stories/components/tag/advanced/examples/all-tags.tsx @@ -1,5 +1,5 @@ import MathPlusM from '@semcore/icon/MathPlus/m'; -import { Flex } from '@semcore/ui/base-components'; +import { Box, Flex } from '@semcore/ui/base-components'; import Tag, { TagContainer } from '@semcore/ui/tag'; import React from 'react'; @@ -20,25 +20,80 @@ const SIZES = ['m', 'l', 'xl'] as const; export default function AllTags() { return ( - - - 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/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/tools/theme/src/colors/index.ts b/tools/theme/src/colors/index.ts index 7798323064..01183a2c47 100644 --- a/tools/theme/src/colors/index.ts +++ b/tools/theme/src/colors/index.ts @@ -248,9 +248,9 @@ export const L_INV_BG_PRIMARY_HOVER = 0.36; export const L_INV_BG_PRIMARY_ACTIVE = 0.4; /** Secondary bg */ -export const L_INV_BG_SECONDARY = 0.3; -export const L_INV_BG_SECONDARY_HOVER = 0.32; -export const L_INV_BG_SECONDARY_ACTIVE = 0.34; +export const L_INV_BG_SECONDARY = 0.23; +export const L_INV_BG_SECONDARY_HOVER = 0.28; +export const L_INV_BG_SECONDARY_ACTIVE = 0.32; /** Skeleton bg */ export const L_INV_BG_SKELETON = 0.5; @@ -277,4 +277,4 @@ export const L_INV_ICON_PRIMARY_HOVER = 0.8; /** Border primary | ⚠️ APCA 15+ on secondary bg */ export const L_INV_BORDER_PRIMARY = 0.5; // inputs, buttons, table header /** Border secondary */ -export const L_INV_BORDER_SECONDARY = 0.48; +export const L_INV_BORDER_SECONDARY = 0.35; diff --git a/tools/theme/src/theme.ts b/tools/theme/src/theme.ts index fc62bb8896..7196616f74 100644 --- a/tools/theme/src/theme.ts +++ b/tools/theme/src/theme.ts @@ -1593,12 +1593,32 @@ export const theme: Theme = { description: 'Background of the additional Tag in its normal state.', }, tag_additional_border: { - value: '{semanticTokens.colors.border_primary_DEFAULT}', + value: neutral.at(L_BORDER_PRIMARY_DIMMED), description: 'Border color of the additional Tag.', }, - tag_primary_bg_hover: { + tag_additional_text: { + value: '#6a6c6a', + description: 'Text color for the additional tag.', + }, + tag_additional_bg_invert_normal: { + value: 'transparent', + description: 'Additional tag on bold or dark backgrounds—minimal fill in the normal state.', + }, + tag_additional_bg_invert_hover_active: { + value: neutral.opaqueInvAt(L_INV_BG_SECONDARY_HOVER), + description: 'Hover and active states of the additional tag on dark backgrounds.', + }, + tag_additional_text_invert: { + value: neutral.opaqueInvAt(L_INV_TEXT_SECONDARY), + description: 'Text color for the additional tag on dark backgrounds.', + }, + tag_additional_border_invert: { + value: '{semanticTokens.colors.border_primary_invert}', + description: 'Inverted border color of the additional Tag.', + }, + tag_primary_bg_hover_active: { value: '{semanticTokens.colors.bg_primary_neutral_hover}', - description: 'Hover state of the primary Tag background.', + description: 'Hover and active states of the primary Tag background.', }, tag_primary_bg_normal: { value: '{semanticTokens.colors.bg_primary_neutral_DEFAULT}', @@ -1680,17 +1700,17 @@ export const theme: Theme = { value: '#8029ec', description: 'Violet text for the primary violet tag.', }, - tag_primary_white_hover_active: { - value: '{semanticTokens.colors.bg_primary_neutral_hover}', - description: 'Hover and active (selected) state of the primary white tag.', + tag_primary_bg_invert_hover_active: { + value: neutral.opaqueInvAt(L_INV_BG_PRIMARY_HOVER), + description: 'Hover and active states of the primary tag on dark backgrounds.', }, - tag_primary_white_normal: { - value: '{semanticTokens.colors.bg_primary_neutral_DEFAULT}', + tag_primary_bg_invert_normal: { + value: neutral.opaqueInvAt(L_INV_BG_PRIMARY), description: 'Primary tag on bold or dark backgrounds—translucent fill for contrast in the normal state.', }, - tag_primary_white_text: { + tag_primary_text_invert: { value: '#ffffff', - description: 'White text for the primary white tag.', + description: 'Text color for the primary tag on dark backgrounds.', }, tag_primary_yellow_hover_active: { value: '#fcd8b3', @@ -1705,36 +1725,36 @@ export const theme: Theme = { description: 'Yellow text for the primary yellow tag.', }, tag_secondary_border_DEFAULT: { - value: '{semanticTokens.colors.border_primary_DEFAULT}', + value: neutral.at(L_BORDER_PRIMARY_DIMMED), description: 'Border color of the secondary Tag.', }, tag_secondary_border_invert: { value: '{semanticTokens.colors.border_secondary_invert}', description: 'Inverted border color of the secondary Tag.', }, - tag_secondary_gray_text: { + tag_secondary_text: { value: '#6a6c6a', - description: 'Gray text for the default secondary tag.', + description: 'Text color for the default secondary tag.', }, - tag_secondary_hover_active: { + tag_secondary_bg_hover_active: { value: '#f4f5f5', description: 'Hover and active (selected) states of the background color for the default secondary tag.', }, - tag_secondary_normal: { + tag_secondary_bg_normal: { value: '#ffffff', description: 'Background color for the default secondary tag.', }, - tag_secondary_white_hover_active: { - value: 'rgba(255, 255, 255, 0.1)', - description: 'Active state of the secondary white tag.', + tag_secondary_bg_invert_hover_active: { + value: neutral.opaqueInvAt(L_INV_BG_SECONDARY_HOVER), + description: 'Hover and active states of the secondary tag on dark backgrounds.', }, - tag_secondary_white_normal: { - value: 'rgba(255, 255, 255, 0)', + tag_secondary_bg_invert_normal: { + value: 'transparent', description: 'Secondary/outline tag on bold or dark backgrounds—minimal fill in the normal state.', }, - tag_secondary_white_text: { - value: '#ffffff', - description: 'White text for the secondary white tag.', + tag_secondary_text_invert: { + value: neutral.opaqueInvAt(L_INV_TEXT_SECONDARY), + description: 'Text color for the secondary tag on dark backgrounds.', }, text_advertising: { value: advertising.at(L_TEXT_PRIMARY), @@ -3039,9 +3059,18 @@ type SemanticColors = { primary: { bg: { normal: Value; - hover: Value; + hover: { + active: Value; + }; + invert: { + normal: Value; + hover: { + active: Value; + }; + }; }; border: Value; + text_invert: Value; gray: { normal: Value; hover: { @@ -3091,32 +3120,25 @@ type SemanticColors = { }; text: Value; }; - white: { - normal: Value; - hover: { - active: Value; - }; - text: Value; - }; }; secondary: { border: { DEFAULT: Value; invert: Value; }; - normal: Value; - hover: { - active: Value; - }; - white: { + text: Value; + text_invert: Value; + bg: { normal: Value; hover: { active: Value; }; - text: Value; - }; - gray: { - text: Value; + invert: { + normal: Value; + hover: { + active: Value; + }; + }; }; }; additional: { @@ -3125,8 +3147,17 @@ type SemanticColors = { hover: { active: Value; }; + invert: { + normal: Value; + hover: { + active: Value; + }; + }; }; border: Value; + border_invert: Value; + text: Value; + text_invert: Value; }; }; chart: { diff --git a/website/docs/style/design-tokens/base-tokens.json b/website/docs/style/design-tokens/base-tokens.json index 68e89375bf..ce0c46a74c 100644 --- a/website/docs/style/design-tokens/base-tokens.json +++ b/website/docs/style/design-tokens/base-tokens.json @@ -867,7 +867,7 @@ }, { "name": "--intergalactic-border-tooltip-invert", - "value": "oklch(0.48 0.004 145.9)" + "value": "oklch(0.35 0.006 140)" }, { "name": "--intergalactic-border-table-accent", diff --git a/website/docs/style/design-tokens/design-tokens.json b/website/docs/style/design-tokens/design-tokens.json index 0d24b7ccb1..c68f98debf 100644 --- a/website/docs/style/design-tokens/design-tokens.json +++ b/website/docs/style/design-tokens/design-tokens.json @@ -121,7 +121,7 @@ }, { "name": "--intergalactic-badge-bg-invert", - "value": "oklch(0.983 0.03 140 / 0.183)", + "value": "oklch(0.969 0.057 140 / 0.118)", "description": "Background color of the inverted Badge.", "components": [ "badge" @@ -242,7 +242,6 @@ "modal", "side-panel", "slider", - "tag", "textarea", "wizard" ] @@ -532,7 +531,7 @@ }, { "name": "--intergalactic-border-secondary-invert", - "value": "oklch(0.995 0.008 145.9 / 0.369)", + "value": "oklch(0.989 0.019 140 / 0.232)", "description": "Inverted version of the neutral secondary border. Use it for borders on the dark or color background.", "components": [] }, @@ -1188,7 +1187,7 @@ }, { "name": "--intergalactic-control-secondary-invert", - "value": "oklch(0.983 0.03 140 / 0.183)", + "value": "oklch(0.969 0.057 140 / 0.118)", "description": "Background of the inverted version of the secondary control.", "components": [ "button" @@ -1196,7 +1195,7 @@ }, { "name": "--intergalactic-control-secondary-invert-active", - "value": "oklch(0.988 0.021 140 / 0.222)", + "value": "oklch(0.986 0.025 140 / 0.203)", "description": "Active (selected) state of the inverted version of the secondary control.", "components": [ "button" @@ -1204,7 +1203,7 @@ }, { "name": "--intergalactic-control-secondary-invert-hover", - "value": "oklch(0.986 0.025 140 / 0.203)", + "value": "oklch(0.98 0.036 140 / 0.164)", "description": "Hover state of the inverted version of the secondary control.", "components": [ "button" @@ -1373,7 +1372,7 @@ }, { "name": "--intergalactic-control-tertiary-invert-active", - "value": "oklch(0.988 0.021 140 / 0.222)", + "value": "oklch(0.986 0.025 140 / 0.203)", "description": "Active (selected) state of the inverted version of the tertiary control.", "components": [ "button" @@ -1381,7 +1380,7 @@ }, { "name": "--intergalactic-control-tertiary-invert-hover", - "value": "oklch(0.986 0.025 140 / 0.203)", + "value": "oklch(0.98 0.036 140 / 0.164)", "description": "Hover state of the inverted version of the tertiary control.", "components": [ "button" @@ -2480,31 +2479,79 @@ "name": "--intergalactic-tag-additional-bg-hover-active", "value": "oklch(0.98 0.001 180)", "description": "Hover and active states of the additional Tag background.", - "components": [] + "components": [ + "tag" + ] }, { "name": "--intergalactic-tag-additional-bg-normal", "value": "oklch(1 0 0)", "description": "Background of the additional Tag in its normal state.", - "components": [] + "components": [ + "tag" + ] }, { "name": "--intergalactic-tag-additional-border", - "value": "oklch(0.137 0.026 175.7 / 0.161)", + "value": "oklch(0.95 0.002 180)", "description": "Border color of the additional Tag.", - "components": [] + "components": [ + "tag" + ] + }, + { + "name": "--intergalactic-tag-additional-text", + "value": "#6a6c6a", + "description": "Text color for the additional tag.", + "components": [ + "tag" + ] }, { - "name": "--intergalactic-tag-primary-bg-hover", + "name": "--intergalactic-tag-additional-bg-invert-normal", + "value": "transparent", + "description": "Additional tag on bold or dark backgrounds—minimal fill in the normal state.", + "components": [ + "tag" + ] + }, + { + "name": "--intergalactic-tag-additional-bg-invert-hover-active", + "value": "oklch(0.98 0.036 140 / 0.164)", + "description": "Hover and active states of the additional tag on dark backgrounds.", + "components": [ + "tag" + ] + }, + { + "name": "--intergalactic-tag-additional-text-invert", + "value": "oklch(0.997 0.004 165.9 / 0.684)", + "description": "Text color for the additional tag on dark backgrounds.", + "components": [ + "tag" + ] + }, + { + "name": "--intergalactic-tag-additional-border-invert", + "value": "oklch(0.995 0.008 147.4 / 0.391)", + "description": "Inverted border color of the additional Tag.", + "components": [ + "tag" + ] + }, + { + "name": "--intergalactic-tag-primary-bg-hover-active", "value": "oklch(0.98 0.001 180)", - "description": "Hover state of the primary Tag background.", + "description": "Hover and active states of the primary Tag background.", "components": [] }, { "name": "--intergalactic-tag-primary-bg-normal", "value": "oklch(1 0 0)", "description": "Background of the primary Tag in its normal state.", - "components": [] + "components": [ + "tag" + ] }, { "name": "--intergalactic-tag-primary-blue-hover-active", @@ -2528,7 +2575,9 @@ "name": "--intergalactic-tag-primary-border", "value": "oklch(1 0 0)", "description": "Border color of the primary Tag.", - "components": [] + "components": [ + "tag" + ] }, { "name": "--intergalactic-tag-primary-gray-hover-active", @@ -2621,24 +2670,28 @@ "components": [] }, { - "name": "--intergalactic-tag-primary-white-hover-active", - "value": "oklch(0.98 0.001 180)", - "description": "Hover and active (selected) state of the primary white tag.", - "components": [] + "name": "--intergalactic-tag-primary-bg-invert-hover-active", + "value": "oklch(0.99 0.017 140 / 0.242)", + "description": "Hover and active states of the primary tag on dark backgrounds.", + "components": [ + "tag" + ] }, { - "name": "--intergalactic-tag-primary-white-normal", - "value": "oklch(1 0 0)", + "name": "--intergalactic-tag-primary-bg-invert-normal", + "value": "oklch(0.969 0.057 140 / 0.118)", "description": "Primary tag on bold or dark backgrounds—translucent fill for contrast in the normal state.", "components": [ "tag" ] }, { - "name": "--intergalactic-tag-primary-white-text", + "name": "--intergalactic-tag-primary-text-invert", "value": "#ffffff", - "description": "White text for the primary white tag.", - "components": [] + "description": "Text color for the primary tag on dark backgrounds.", + "components": [ + "tag" + ] }, { "name": "--intergalactic-tag-primary-yellow-hover-active", @@ -2660,51 +2713,67 @@ }, { "name": "--intergalactic-tag-secondary-border", - "value": "oklch(0.137 0.026 175.7 / 0.161)", + "value": "oklch(0.95 0.002 180)", "description": "Border color of the secondary Tag.", - "components": [] + "components": [ + "tag" + ] }, { "name": "--intergalactic-tag-secondary-border-invert", - "value": "oklch(0.995 0.008 145.9 / 0.369)", + "value": "oklch(0.989 0.019 140 / 0.232)", "description": "Inverted border color of the secondary Tag.", - "components": [] + "components": [ + "tag" + ] }, { - "name": "--intergalactic-tag-secondary-gray-text", + "name": "--intergalactic-tag-secondary-text", "value": "#6a6c6a", - "description": "Gray text for the default secondary tag.", - "components": [] + "description": "Text color for the default secondary tag.", + "components": [ + "tag" + ] }, { - "name": "--intergalactic-tag-secondary-hover-active", + "name": "--intergalactic-tag-secondary-bg-hover-active", "value": "#f4f5f5", "description": "Hover and active (selected) states of the background color for the default secondary tag.", - "components": [] + "components": [ + "tag" + ] }, { - "name": "--intergalactic-tag-secondary-normal", + "name": "--intergalactic-tag-secondary-bg-normal", "value": "#ffffff", "description": "Background color for the default secondary tag.", - "components": [] + "components": [ + "tag" + ] }, { - "name": "--intergalactic-tag-secondary-white-hover-active", - "value": "rgba(255, 255, 255, 0.1)", - "description": "Active state of the secondary white tag.", - "components": [] + "name": "--intergalactic-tag-secondary-bg-invert-hover-active", + "value": "oklch(0.98 0.036 140 / 0.164)", + "description": "Hover and active states of the secondary tag on dark backgrounds.", + "components": [ + "tag" + ] }, { - "name": "--intergalactic-tag-secondary-white-normal", - "value": "rgba(255, 255, 255, 0)", + "name": "--intergalactic-tag-secondary-bg-invert-normal", + "value": "transparent", "description": "Secondary/outline tag on bold or dark backgrounds—minimal fill in the normal state.", - "components": [] + "components": [ + "tag" + ] }, { - "name": "--intergalactic-tag-secondary-white-text", - "value": "#ffffff", - "description": "White text for the secondary white tag.", - "components": [] + "name": "--intergalactic-tag-secondary-text-invert", + "value": "oklch(0.997 0.004 165.9 / 0.684)", + "description": "Text color for the secondary tag on dark backgrounds.", + "components": [ + "tag" + ] }, { "name": "--intergalactic-text-advertising", @@ -2928,7 +2997,6 @@ "date-picker", "feature-highlight", "notice-bubble", - "tag", "wizard" ] }, @@ -3001,7 +3069,7 @@ }, { "name": "--intergalactic-tooltip-border-invert", - "value": "oklch(0.48 0.004 145.9)", + "value": "oklch(0.35 0.006 140)", "description": "Border of the Tooltip with dark theme.", "components": [ "base-components", @@ -3229,6 +3297,7 @@ "description": "Tiny padding for content inside controls and surfaces.", "components": [ "counter", + "input-tags", "notice-bubble", "pills" ] @@ -3242,6 +3311,7 @@ "counter", "dropdown", "dropdown-menu", + "input-tags", "pills" ] }, @@ -3275,6 +3345,7 @@ "card", "dropdown", "input", + "input-tags", "modal", "pills", "time-picker", @@ -3321,7 +3392,8 @@ "components": [ "base-trigger", "dropdown-menu", - "inline-input" + "inline-input", + "tag" ] }, { @@ -3350,7 +3422,8 @@ "dropdown", "notice-bubble", "radio", - "select" + "select", + "tag" ] }, {