diff --git a/.github/workflows/app-storybook-generate-baseline.yml b/.github/workflows/app-storybook-generate-baseline.yml index ef7ac6832..57ad3c746 100644 --- a/.github/workflows/app-storybook-generate-baseline.yml +++ b/.github/workflows/app-storybook-generate-baseline.yml @@ -1,16 +1,5 @@ name: Storybook Regenerate Baseline -# Baseline tool for the visual layer. The PR/push CHECK lives in the ordered -# governance pipeline (governance.yml → job "visual", gated by the Governance -# Gate); this workflow is dispatch-only and exists to regenerate the committed -# linux baselines in apps/storybook/.storybook/test-visual/__image_snapshots__/linux/. -# -# Baselines are platform-specific, so ONLY this workflow (or a linux container) -# may generate them. To bootstrap or intentionally update: run it with -# update_baselines=true, download the "visual-baselines-linux" artifact and -# commit its contents. Dispatching with the default (false) runs a one-off -# comparison against the committed baselines, outside any PR. - on: workflow_dispatch: inputs: @@ -18,6 +7,10 @@ on: description: 'Regenerate linux baselines and upload them as an artifact (commit manually)' type: boolean default: false + modes: + description: 'Comma-separated visual modes to (re)generate, e.g. light-desktop,dark-mobile (empty = full matrix; see .storybook/visual-modes.js)' + type: string + default: '' permissions: contents: read @@ -30,7 +23,7 @@ jobs: visual: name: Storybook Generate Baseline runs-on: ubuntu-latest - timeout-minutes: 30 + timeout-minutes: 60 steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 @@ -63,6 +56,8 @@ jobs: - name: Regenerate baselines if: ${{ github.event.inputs.update_baselines == 'true' }} run: pnpm --filter storybook run test:visual:update + env: + VISUAL_MODES: ${{ github.event.inputs.modes }} - name: Upload regenerated baselines if: ${{ github.event.inputs.update_baselines == 'true' }} diff --git a/.github/workflows/governance.yml b/.github/workflows/governance.yml index 9daf470df..0c1319c89 100644 --- a/.github/workflows/governance.yml +++ b/.github/workflows/governance.yml @@ -11,8 +11,6 @@ permissions: pull-requests: read jobs: - # Detect whether webkit sources changed. Required checks below stay - # registered on every PR; jobs short-circuit when nothing relevant moved. changes: name: Detect Changes runs-on: ubuntu-latest @@ -34,39 +32,31 @@ jobs: - 'pnpm-lock.yaml' - 'pnpm-workspace.yaml' toolkit: - - 'packages/webkit/**' - '.specs/**' - '.claude/hooks/**' - '.claude/rules/**' - 'apps/storybook/**' - # Stories are fixtures of the unit suite (composeStories), so - # storybook changes retrigger the tests too. + - 'packages/webkit/**' tests: - 'packages/webkit/**' - 'apps/storybook/**' - # Pixels react to any styled layer: components, tokens, icons, stories. visual: - 'packages/webkit/**' - 'packages/theme/**' - 'packages/icons/**' - 'apps/storybook/**' - # Lint canaries guard the lint CONFIGS: anything that can change a - # rule's behavior (configs, the fixtures themselves, tooling deps) - # retriggers the canary job. canary: - 'packages/webkit/**' - 'lint-canaries/**' - 'eslint.config.js' - - 'packages/webkit/eslint.config.js' - - '.stylelintrc.json' - - '.prettierrc.json' - - '.prettierignore' - 'commitlint.config.js' - 'package.json' - 'pnpm-lock.yaml' + - '.stylelintrc.json' + - '.prettierrc.json' + - '.prettierignore' - '.github/workflows/governance.yml' - # Security Scanning (parallel, fast) security: name: Security Scans needs: changes @@ -103,12 +93,6 @@ jobs: working-directory: packages/webkit continue-on-error: true - # Lint Canary (parallel, side by side with Security Scans) — INVERTED logic. - # Every fixture in lint-canaries/ violates one configured lint rule ON - # PURPOSE and must KEEP failing it. A fixture that lints clean means the - # rule was weakened or removed (eslint.config.js / .stylelintrc.json / - # .prettierrc.json / commitlint.config.js), so the job fails and stops the - # pipeline. See lint-canaries/README.md. lint-canary: name: Lint Canary (broken samples must stay broken) needs: changes @@ -132,7 +116,6 @@ jobs: - name: Run lint canaries (every fixture must still fail its rule) run: node lint-canaries/index.js - # Linting & Formatting (parallel) lint: name: Linting & Formatting needs: changes @@ -162,7 +145,6 @@ jobs: - name: Prettier check (fail on diff) run: pnpm prettier --check "packages/webkit/**/*.{js,ts,vue,css,json,md}" - # Type Safety & Coverage (parallel) types: name: TypeScript & Type Coverage needs: changes @@ -191,7 +173,6 @@ jobs: run: npx type-coverage -p . --at-least 95 --detail working-directory: packages/webkit - # Build Verification (needs lint + types) build: name: Build Verification runs-on: ubuntu-latest @@ -212,10 +193,6 @@ jobs: - name: Install dependencies run: pnpm install --frozen-lockfile - - name: Pack dry run - run: pnpm pack:dry - working-directory: packages/webkit - - name: Assert no test files leak into the tarball run: pnpm pack:check working-directory: packages/webkit @@ -224,7 +201,6 @@ jobs: run: pnpm run size working-directory: packages/webkit - # Storybook Smoke Test storybook: name: Storybook Build runs-on: ubuntu-latest @@ -251,10 +227,6 @@ jobs: - name: Verify Storybook output run: test -d apps/storybook/dist && echo "Storybook built successfully" - # Adoption toolkit — the toolkit's own node:test suites (ESLint rules, MCP, CLI, - # stylelint config) + catalog drift check. Everything ships inside @aziontech/webkit; - # the catalog is generated from package.json#exports + .specs, so this asserts the - # committed catalog.json matches a fresh build and can never go stale. toolkit: name: Adoption Toolkit (tests + catalog drift) needs: changes @@ -263,7 +235,7 @@ jobs: steps: - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 with: - fetch-depth: 0 # full history so check-tests can diff a PR against its base + fetch-depth: 0 - name: Setup pnpm uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4 @@ -289,10 +261,6 @@ jobs: - name: Every component has its test (testing.md) run: pnpm --filter @aziontech/webkit run test:gate - # Vitest browser mode (real Chromium), sharded by 4 — behavior/structure/ARIA - # on an unstyled DOM. Ordered after lint + types (same tier as build/storybook). - # `!contains(needs.*.result, 'failure')` keeps it runnable when upstream jobs - # were cleanly skipped (e.g. a storybook-only PR skips the webkit-scoped lint). tests: name: Vitest browser (shard ${{ matrix.shard }}/4) runs-on: ubuntu-latest @@ -332,17 +300,16 @@ jobs: run: pnpm exec vitest run --shard=${{ matrix.shard }}/4 working-directory: packages/webkit - # Visual regression — the styled layer: every story screenshotted via - # @storybook/test-runner and compared against the committed linux baselines - # (test:visual:ci fails on any missing baseline). Last link of the chain: - # pixels only run once behavior (tests) and both builds are green. Baseline - # regeneration lives in app-storybook-test-visual-regression.yml (dispatch). visual: - name: Storybook visual tests + name: Storybook visual tests (shard ${{ matrix.shard }}/4) runs-on: ubuntu-latest needs: [changes, security, lint-canary, lint, types, build, storybook, tests] if: ${{ !cancelled() && !contains(needs.*.result, 'failure') && needs.changes.outputs.visual == 'true' }} timeout-minutes: 30 + strategy: + fail-fast: false + matrix: + shard: [1, 2, 3, 4] steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 @@ -372,19 +339,20 @@ jobs: - name: Build Storybook run: pnpm run storybook:build - - name: Run visual tests + - name: Run visual tests (shard ${{ matrix.shard }}/4) run: pnpm --filter storybook run test:visual:ci + env: + VISUAL_SHARD: ${{ matrix.shard }}/4 - name: Upload diff output on failure if: failure() uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 with: - name: visual-diff-output + name: visual-diff-output-shard-${{ matrix.shard }} path: apps/storybook/.storybook/test-visual/__diff_output__/ retention-days: 7 if-no-files-found: ignore - # Summary Gate — passes when every upstream job is success or cleanly skipped. governance-check: name: Governance Gate runs-on: ubuntu-latest diff --git a/apps/storybook/.storybook/preview.js b/apps/storybook/.storybook/preview.js index 41c4bf6ff..2f38f2660 100644 --- a/apps/storybook/.storybook/preview.js +++ b/apps/storybook/.storybook/preview.js @@ -1,40 +1,24 @@ -import { setup } from '@storybook/vue3' -import PrimeVue from 'primevue/config' -import Tooltip from 'primevue/tooltip' -import { withThemeByClassName } from '@storybook/addon-themes' -import { addons } from '@storybook/preview-api' -import { GLOBALS_UPDATED } from '@storybook/core-events' - -// v3 token build: primitives, --bg-* / --text-* / --border-*, and .text-body-md etc. -// (replaces injectCssVars(), which only emitted --background-* aliases — webkit components use --bg-*) import '@aziontech/theme/globals.css' -import 'primeflex/primeflex.css' import '../src/styles/preview.css' import '@aziontech/theme' import '@aziontech/icons' import '@aziontech/webkit/styles/country-flags' -setup((app) => { - app.use(PrimeVue, { - ripple: false - }) +import { withThemeByClassName } from '@storybook/addon-themes' +import { GLOBALS_UPDATED } from '@storybook/core-events' +import { addons } from '@storybook/preview-api' - app.directive('tooltip', Tooltip) -}) +import { STORYBOOK_VIEWPORTS, THEME_CLASSES } from './visual-modes.js' -// withThemeByClassName only runs as a story decorator, so on pure-MDX docs pages -// (Get Started, Style Guide) the toolbar toggle never updated the html class. -// Mirror the `theme` global onto ourselves so those pages switch too. -const THEME_CLASSES = { - light: ['azion', 'azion-light'], - dark: ['azion', 'azion-dark'] -} function applyThemeClass(name) { - const el = document.documentElement - el.classList.remove('azion', 'azion-light', 'azion-dark') - el.classList.add(...(THEME_CLASSES[name] || THEME_CLASSES.dark)) + const docElement = document.documentElement + + docElement.classList.remove('azion', 'azion-light', 'azion-dark') + docElement.classList.add(...(THEME_CLASSES[name] || THEME_CLASSES.dark)) } + applyThemeClass('dark') + try { addons.getChannel().on(GLOBALS_UPDATED, ({ globals }) => { if (globals && globals.theme) applyThemeClass(globals.theme) @@ -83,6 +67,9 @@ export const parameters = { inputBorderRadius: 4 } }, + viewport: { + viewports: STORYBOOK_VIEWPORTS + }, backgrounds: { default: 'azion azion-dark', values: [ @@ -113,8 +100,8 @@ export const parameters = { export const decorators = [ withThemeByClassName({ themes: { - light: 'azion azion-light', - dark: 'azion azion-dark' + light: THEME_CLASSES.light.join(' '), + dark: THEME_CLASSES.dark.join(' ') }, defaultTheme: 'dark' }) diff --git a/apps/storybook/.storybook/test-runner.js b/apps/storybook/.storybook/test-runner.js index b84772223..27ff1176e 100644 --- a/apps/storybook/.storybook/test-runner.js +++ b/apps/storybook/.storybook/test-runner.js @@ -1,28 +1,77 @@ /** * Storybook test-runner — visual regression over every story. * - * Each story is visited in real Chromium (Playwright), screenshotted at the - * `#storybook-root` element and compared against a committed baseline with - * jest-image-snapshot. This is the styled layer of the test architecture: - * units (packages/webkit, Vitest browser mode) own behavior/structure/ARIA on - * an unstyled DOM; THIS layer owns pixels. See docs/TESTING_AUDIT_2026-07-02.md §2.0. + * Each story is visited in real Chromium (Playwright) and screenshotted at the + * `#storybook-root` element in every mode of the theme × viewport matrix + * declared in ./visual-modes.js (dark|light × desktop|tablet|mobile), then + * compared against a committed baseline with jest-image-snapshot. This is the + * styled layer of the test architecture: units (packages/webkit, Vitest + * browser mode) own behavior/structure/ARIA on an unstyled DOM; THIS layer + * owns pixels. See docs/TESTING_AUDIT_2026-07-02.md §2.0. + * + * Baseline naming: the dark-desktop pass keeps the bare story id + * (`components-actions-button--default.png`) so pre-matrix baselines stay + * valid; every other mode is suffixed (`…--default--light-mobile.png`). * * Baselines are per-platform (font rasterization differs across OSes): * test-visual/__image_snapshots__/linux/ → the CI contract, committed * test-visual/__image_snapshots__/darwin/ → local-only, gitignored - * Update linux baselines via the app-storybook-visual workflow (dispatch with - * update_baselines) or a Linux container — never commit darwin baselines. + * Update linux baselines via the app-storybook-generate-baseline workflow + * (dispatch with update_baselines) or a Linux container — never commit darwin + * baselines. * - * Opt a story out of the snapshot (still visited for render errors) with - * `parameters: { visual: false }`. + * Per-story control via `parameters.visual`: + * false → no snapshots (still visited for render errors) + * { modes: ['dark-desktop', …] } → only those modes (names from visual-modes.js) + * Env filter: VISUAL_MODES=dark-desktop,light-desktop narrows any run — fast + * local iteration and partial baseline regeneration. */ import { getStoryContext, waitForPageReady } from '@storybook/test-runner' import { toMatchImageSnapshot } from 'jest-image-snapshot' +import { + MODES, + resolveModes, + snapshotIdentifier, + THEME_CLASSES, + VIEWPORTS +} from './visual-modes.js' + const TEST_VISUAL_DIR = `${__dirname}/test-visual` const DIFF_DIR = `${TEST_VISUAL_DIR}/__diff_output__` const SNAPSHOT_DIR = `${TEST_VISUAL_DIR}/__image_snapshots__/${process.platform}` +async function setThemeClasses(page, theme) { + await page.evaluate((classes) => { + const el = document.documentElement + el.classList.remove('azion', 'azion-light', 'azion-dark') + el.classList.add(...classes) + }, THEME_CLASSES[theme]) +} + +async function settleFrame(page) { + await page.evaluate( + () => new Promise((resolve) => requestAnimationFrame(() => requestAnimationFrame(resolve))) + ) +} + +async function awaitImages(page) { + await page.evaluate(() => + Promise.all( + Array.from(document.images, (img) => + img.complete + ? img.decode().catch(() => {}) + : new Promise((resolve) => { + img.addEventListener('load', () => resolve(img.decode().catch(() => {})), { + once: true + }) + img.addEventListener('error', resolve, { once: true }) + }) + ) + ) + ) +} + /** @type {import('@storybook/test-runner').TestRunnerConfig} */ module.exports = { setup() { @@ -30,18 +79,8 @@ module.exports = { }, async preVisit(page) { - await page.setViewportSize({ width: 1280, height: 720 }) - - // Park the real pointer: the worker page is reused across stories, so a - // pointer left over an element would leak hover state (hover-open menus, - // tooltips) into the next story's render and screenshot. + await page.setViewportSize(VIEWPORTS.desktop) await page.mouse.move(0, 0) - - // Near-zero durations instead of `animation: none` / reducedMotion: - // components that wait for animationend/transitionend to settle state - // (use-transition-status) would hang forever with animations removed — - // 1ms keeps the events firing while making motion invisible to the - // screenshot. Idempotent: story switches reuse the worker page. await page.evaluate(() => { if (document.getElementById('visual-test-freeze')) return @@ -53,6 +92,20 @@ module.exports = { transition-duration: 1ms !important; transition-delay: 0ms !important; caret-color: transparent !important; + } + + /* preview.css themes the canvas/docs surfaces with + \`transition: all 0.4s ease-in-out !important\` at up to (0,2,0) + specificity, which outranks the * rule above. Mirroring those + selectors verbatim here wins per-longhand: equal specificity + + !important + later in the cascade (this style is appended to
+ last). Keep in sync with preview.css. */ + .sb-main-padded, .docs-story, .docs-story > *, + .azion-dark .sb-main-padded, .azion-dark .docs-story, .azion-dark .docs-story > *, + .sbdocs.sbdocs-wrapper, .azion-dark .sbdocs.sbdocs-wrapper, + .azion-light > body, .azion-dark > body { + transition-duration: 1ms !important; + transition-delay: 0ms !important; }` document.head.appendChild(style) @@ -62,20 +115,45 @@ module.exports = { async postVisit(page, context) { const storyContext = await getStoryContext(page, context) - if (storyContext.parameters?.visual === false) return + const modes = resolveModes(storyContext.parameters?.visual, process.env.VISUAL_MODES) + if (modes.length === 0) return await waitForPageReady(page) await page.evaluate(() => document.fonts.ready) + await awaitImages(page) - const image = await page.locator('#storybook-root').screenshot({ animations: 'disabled' }) - expect(image).toMatchImageSnapshot({ - customSnapshotsDir: SNAPSHOT_DIR, - customSnapshotIdentifier: context.id, - customDiffDir: DIFF_DIR, - // Absorb sub-pixel antialiasing noise; a real change moves far more - // than 0.01% of the element's pixels. - failureThreshold: 0.01, - failureThresholdType: 'percent' - }) + const failures = [] + try { + for (const modeId of modes) { + const { theme, viewport } = MODES[modeId] + + await page.setViewportSize(VIEWPORTS[viewport]) + await setThemeClasses(page, theme) + await settleFrame(page) + + await page.evaluate(() => document.fonts.ready) + await awaitImages(page) + + const image = await page.locator('#storybook-root').screenshot({ animations: 'disabled' }) + try { + expect(image).toMatchImageSnapshot({ + customSnapshotsDir: SNAPSHOT_DIR, + customSnapshotIdentifier: snapshotIdentifier(context.id, modeId), + customDiffDir: DIFF_DIR, + failureThreshold: 0.01, + failureThresholdType: 'percent' + }) + } catch (error) { + failures.push(`[${modeId}] ${error.message}`) + } + } + } finally { + await setThemeClasses(page, 'dark') + await page.setViewportSize(VIEWPORTS.desktop) + } + + if (failures.length > 0) { + throw new Error(`Visual mismatch in ${failures.length} mode(s):\n\n${failures.join('\n\n')}`) + } } } diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--default--dark-mobile.png new file mode 100644 index 000000000..6adf4b4a8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--default--dark-tablet.png new file mode 100644 index 000000000..67f2612c4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--default--light-desktop.png new file mode 100644 index 000000000..05e2eb4f7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--default--light-mobile.png new file mode 100644 index 000000000..40d1b013a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--default--light-tablet.png new file mode 100644 index 000000000..05e2eb4f7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--disabled--dark-mobile.png new file mode 100644 index 000000000..25ad6f065 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--disabled--dark-tablet.png new file mode 100644 index 000000000..63f212a7e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--disabled--light-desktop.png new file mode 100644 index 000000000..b6d73370d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--disabled--light-mobile.png new file mode 100644 index 000000000..4578cd2c5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--disabled--light-tablet.png new file mode 100644 index 000000000..b6d73370d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--icon--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--icon--dark-mobile.png new file mode 100644 index 000000000..b4d1f7a4a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--icon--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--icon--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--icon--dark-tablet.png new file mode 100644 index 000000000..c0ac43d55 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--icon--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--icon--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--icon--light-desktop.png new file mode 100644 index 000000000..d92236952 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--icon--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--icon--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--icon--light-mobile.png new file mode 100644 index 000000000..cece6ecba Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--icon--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--icon--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--icon--light-tablet.png new file mode 100644 index 000000000..d92236952 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--icon--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--loading--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--loading--dark-mobile.png new file mode 100644 index 000000000..ff9696ab4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--loading--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--loading--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--loading--dark-tablet.png new file mode 100644 index 000000000..90665bb04 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--loading--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--loading--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--loading--light-desktop.png new file mode 100644 index 000000000..bab8cf01f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--loading--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--loading--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--loading--light-mobile.png new file mode 100644 index 000000000..d3400730b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--loading--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--loading--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--loading--light-tablet.png new file mode 100644 index 000000000..f1fb048a6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--loading--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--sizes--dark-mobile.png new file mode 100644 index 000000000..f73c691d2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--sizes--dark-tablet.png new file mode 100644 index 000000000..5b3a6b1dc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--sizes--light-desktop.png new file mode 100644 index 000000000..097dbb4d0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--sizes--light-mobile.png new file mode 100644 index 000000000..4473f91a7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--sizes--light-tablet.png new file mode 100644 index 000000000..097dbb4d0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--types--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--types--dark-mobile.png new file mode 100644 index 000000000..b942675f1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--types--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--types--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--types--dark-tablet.png new file mode 100644 index 000000000..73935931d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--types--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--types--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--types--light-desktop.png new file mode 100644 index 000000000..4f9a9da3e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--types--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--types--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--types--light-mobile.png new file mode 100644 index 000000000..246658ad8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--types--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--types--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--types--light-tablet.png new file mode 100644 index 000000000..4f9a9da3e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-button--types--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--default--dark-mobile.png new file mode 100644 index 000000000..21b7749ee Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--default--dark-tablet.png new file mode 100644 index 000000000..60eb14510 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--default--light-desktop.png new file mode 100644 index 000000000..794a64cae Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--default--light-mobile.png new file mode 100644 index 000000000..c4207f043 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--default--light-tablet.png new file mode 100644 index 000000000..9a815d994 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--disabled--dark-mobile.png new file mode 100644 index 000000000..a0c1cfb56 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--disabled--dark-tablet.png new file mode 100644 index 000000000..75e4b573e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--disabled--light-desktop.png new file mode 100644 index 000000000..210e6f649 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--disabled--light-mobile.png new file mode 100644 index 000000000..c3a6cfbe4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--disabled--light-tablet.png new file mode 100644 index 000000000..210e6f649 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--icon--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--icon--dark-mobile.png new file mode 100644 index 000000000..c91acb4e4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--icon--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--icon--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--icon--dark-tablet.png new file mode 100644 index 000000000..8f59167ed Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--icon--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--icon--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--icon--light-desktop.png new file mode 100644 index 000000000..a69f9c84b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--icon--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--icon--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--icon--light-mobile.png new file mode 100644 index 000000000..0dfda5af8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--icon--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--icon--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--icon--light-tablet.png new file mode 100644 index 000000000..84e35c17c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--icon--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--loading--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--loading--dark-mobile.png new file mode 100644 index 000000000..b3b7ebe13 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--loading--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--loading--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--loading--dark-tablet.png new file mode 100644 index 000000000..ee4c290ae Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--loading--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--loading--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--loading--light-desktop.png new file mode 100644 index 000000000..6846cc945 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--loading--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--loading--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--loading--light-mobile.png new file mode 100644 index 000000000..f7709f0b8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--loading--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--loading--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--loading--light-tablet.png new file mode 100644 index 000000000..59073fb0c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--loading--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--sizes--dark-mobile.png new file mode 100644 index 000000000..fadbc1a02 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--sizes--dark-tablet.png new file mode 100644 index 000000000..f8119ad88 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--sizes--light-desktop.png new file mode 100644 index 000000000..2c222e47c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--sizes--light-mobile.png new file mode 100644 index 000000000..3dbaac571 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--sizes--light-tablet.png new file mode 100644 index 000000000..68239f44d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-buttonhighlight--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--default--dark-mobile.png new file mode 100644 index 000000000..7b6e545c7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--default--dark-tablet.png new file mode 100644 index 000000000..55ef1640e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--default--light-desktop.png new file mode 100644 index 000000000..f13862fbd Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--default--light-mobile.png new file mode 100644 index 000000000..910919932 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--default--light-tablet.png new file mode 100644 index 000000000..f13862fbd Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--disabled--dark-mobile.png new file mode 100644 index 000000000..355ac627a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--disabled--dark-tablet.png new file mode 100644 index 000000000..910b6b387 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--disabled--light-desktop.png new file mode 100644 index 000000000..66ab70225 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--disabled--light-mobile.png new file mode 100644 index 000000000..7142735dc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--disabled--light-tablet.png new file mode 100644 index 000000000..66ab70225 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-copybutton--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--default--dark-mobile.png new file mode 100644 index 000000000..b4b7f3f04 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--default--dark-tablet.png new file mode 100644 index 000000000..be723d23a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--default--light-desktop.png new file mode 100644 index 000000000..aa173401e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--default--light-mobile.png new file mode 100644 index 000000000..b69e5ecf2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--default--light-tablet.png new file mode 100644 index 000000000..aa173401e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--disabled--dark-mobile.png new file mode 100644 index 000000000..8a83b72b7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--disabled--dark-tablet.png new file mode 100644 index 000000000..62409ca88 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--disabled--light-desktop.png new file mode 100644 index 000000000..bbe9244a2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--disabled--light-mobile.png new file mode 100644 index 000000000..efc4acfd5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--disabled--light-tablet.png new file mode 100644 index 000000000..bbe9244a2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--loading--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--loading--dark-mobile.png new file mode 100644 index 000000000..a04aef9ed Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--loading--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--loading--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--loading--dark-tablet.png new file mode 100644 index 000000000..681016ed2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--loading--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--loading--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--loading--light-desktop.png new file mode 100644 index 000000000..cf38635fb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--loading--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--loading--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--loading--light-mobile.png new file mode 100644 index 000000000..905784068 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--loading--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--loading--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--loading--light-tablet.png new file mode 100644 index 000000000..8a072a587 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--loading--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--sizes--dark-mobile.png new file mode 100644 index 000000000..85beb9de8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--sizes--dark-tablet.png new file mode 100644 index 000000000..af36666b6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--sizes--light-desktop.png new file mode 100644 index 000000000..5f9d6cb85 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--sizes--light-mobile.png new file mode 100644 index 000000000..8bf89d58b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--sizes--light-tablet.png new file mode 100644 index 000000000..5f9d6cb85 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--types--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--types--dark-mobile.png new file mode 100644 index 000000000..55eb63d50 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--types--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--types--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--types--dark-tablet.png new file mode 100644 index 000000000..b57f6c1ed Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--types--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--types--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--types--light-desktop.png new file mode 100644 index 000000000..4ddaa5c75 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--types--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--types--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--types--light-mobile.png new file mode 100644 index 000000000..0ae3dff9b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--types--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--types--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--types--light-tablet.png new file mode 100644 index 000000000..28fa25d72 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-iconbutton--types--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--default--dark-mobile.png new file mode 100644 index 000000000..0811ab33d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--default--dark-tablet.png new file mode 100644 index 000000000..6ec1ccfcb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--default--light-desktop.png new file mode 100644 index 000000000..fadc48f9a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--default--light-mobile.png new file mode 100644 index 000000000..4967467f6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--default--light-tablet.png new file mode 100644 index 000000000..fadc48f9a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--sizes--dark-mobile.png new file mode 100644 index 000000000..947779279 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--sizes--dark-tablet.png new file mode 100644 index 000000000..9cdbb8349 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--sizes--light-desktop.png new file mode 100644 index 000000000..31b8cceba Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--sizes--light-mobile.png new file mode 100644 index 000000000..877bdd99d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--sizes--light-tablet.png new file mode 100644 index 000000000..31b8cceba Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-minibutton--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--default--dark-mobile.png new file mode 100644 index 000000000..2e02ba481 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--default--dark-tablet.png new file mode 100644 index 000000000..6a679cc8e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--default--light-desktop.png new file mode 100644 index 000000000..a7ff226a6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--default--light-mobile.png new file mode 100644 index 000000000..2aad1126a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--default--light-tablet.png new file mode 100644 index 000000000..a7ff226a6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--with-disabled-option--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--with-disabled-option--dark-mobile.png new file mode 100644 index 000000000..c9aee817a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--with-disabled-option--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--with-disabled-option--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--with-disabled-option--dark-tablet.png new file mode 100644 index 000000000..d1dcb9110 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--with-disabled-option--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--with-disabled-option--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--with-disabled-option--light-desktop.png new file mode 100644 index 000000000..914eb55c4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--with-disabled-option--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--with-disabled-option--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--with-disabled-option--light-mobile.png new file mode 100644 index 000000000..4225b2df2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--with-disabled-option--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--with-disabled-option--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--with-disabled-option--light-tablet.png new file mode 100644 index 000000000..914eb55c4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-segmentedbutton--with-disabled-option--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--default--dark-mobile.png new file mode 100644 index 000000000..1d4803902 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--default--dark-tablet.png new file mode 100644 index 000000000..548bbed27 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--default--light-desktop.png new file mode 100644 index 000000000..0fb7b96c2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--default--light-mobile.png new file mode 100644 index 000000000..468343454 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--default--light-tablet.png new file mode 100644 index 000000000..0fb7b96c2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--disabled--dark-mobile.png new file mode 100644 index 000000000..59d6d5599 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--disabled--dark-tablet.png new file mode 100644 index 000000000..0f624fb51 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--disabled--light-desktop.png new file mode 100644 index 000000000..43687f7c7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--disabled--light-mobile.png new file mode 100644 index 000000000..2ab0e5489 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--disabled--light-tablet.png new file mode 100644 index 000000000..43687f7c7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--loading--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--loading--dark-mobile.png new file mode 100644 index 000000000..2cb1b15d0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--loading--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--loading--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--loading--dark-tablet.png new file mode 100644 index 000000000..00a330336 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--loading--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--loading--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--loading--light-desktop.png new file mode 100644 index 000000000..dea6d1052 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--loading--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--loading--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--loading--light-mobile.png new file mode 100644 index 000000000..b172d720b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--loading--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--loading--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--loading--light-tablet.png new file mode 100644 index 000000000..5928267ff Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--loading--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--sizes--dark-mobile.png new file mode 100644 index 000000000..027199794 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--sizes--dark-tablet.png new file mode 100644 index 000000000..6d5b61c7b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--sizes--light-desktop.png new file mode 100644 index 000000000..094f2023a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--sizes--light-mobile.png new file mode 100644 index 000000000..a5c5bb48e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--sizes--light-tablet.png new file mode 100644 index 000000000..094f2023a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--types--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--types--dark-mobile.png new file mode 100644 index 000000000..4fc39f06f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--types--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--types--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--types--dark-tablet.png new file mode 100644 index 000000000..6dd0ae114 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--types--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--types--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--types--light-desktop.png new file mode 100644 index 000000000..4cdbf4bd2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--types--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--types--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--types--light-mobile.png new file mode 100644 index 000000000..017991f35 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--types--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--types--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--types--light-tablet.png new file mode 100644 index 000000000..4cdbf4bd2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--types--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--update-label-on-select--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--update-label-on-select--dark-mobile.png new file mode 100644 index 000000000..1d4803902 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--update-label-on-select--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--update-label-on-select--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--update-label-on-select--dark-tablet.png new file mode 100644 index 000000000..548bbed27 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--update-label-on-select--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--update-label-on-select--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--update-label-on-select--light-desktop.png new file mode 100644 index 000000000..0fb7b96c2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--update-label-on-select--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--update-label-on-select--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--update-label-on-select--light-mobile.png new file mode 100644 index 000000000..468343454 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--update-label-on-select--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--update-label-on-select--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--update-label-on-select--light-tablet.png new file mode 100644 index 000000000..0fb7b96c2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-actions-splitbutton--update-label-on-select--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--borderless--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--borderless--dark-mobile.png new file mode 100644 index 000000000..8d3d93b73 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--borderless--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--borderless--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--borderless--dark-tablet.png new file mode 100644 index 000000000..ec888c5fc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--borderless--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--borderless--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--borderless--light-desktop.png new file mode 100644 index 000000000..99097d63b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--borderless--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--borderless--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--borderless--light-mobile.png new file mode 100644 index 000000000..b67b1da94 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--borderless--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--borderless--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--borderless--light-tablet.png new file mode 100644 index 000000000..da1242f25 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--borderless--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--default--dark-mobile.png new file mode 100644 index 000000000..ab69e858c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--default--dark-tablet.png new file mode 100644 index 000000000..1d89a9494 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--default--light-desktop.png new file mode 100644 index 000000000..a0ac7aef1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--default--light-mobile.png new file mode 100644 index 000000000..5f9b93b62 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--default--light-tablet.png new file mode 100644 index 000000000..370b6d789 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-animated-lines--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-animated-lines--dark-mobile.png new file mode 100644 index 000000000..2351739c6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-animated-lines--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-animated-lines--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-animated-lines--dark-tablet.png new file mode 100644 index 000000000..4d849dd0f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-animated-lines--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-animated-lines--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-animated-lines--light-desktop.png new file mode 100644 index 000000000..db7b13d54 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-animated-lines--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-animated-lines--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-animated-lines--light-mobile.png new file mode 100644 index 000000000..ebd279217 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-animated-lines--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-animated-lines--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-animated-lines--light-tablet.png new file mode 100644 index 000000000..c92a5857d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-animated-lines--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-diff--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-diff--dark-mobile.png new file mode 100644 index 000000000..fe28f5ece Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-diff--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-diff--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-diff--dark-tablet.png new file mode 100644 index 000000000..6c3f44395 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-diff--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-diff--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-diff--light-desktop.png new file mode 100644 index 000000000..b9a244107 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-diff--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-diff--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-diff--light-mobile.png new file mode 100644 index 000000000..60b7510b5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-diff--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-diff--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-diff--light-tablet.png new file mode 100644 index 000000000..c7112c515 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-diff--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-file-name--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-file-name--dark-mobile.png new file mode 100644 index 000000000..42042b16d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-file-name--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-file-name--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-file-name--dark-tablet.png new file mode 100644 index 000000000..1e45074a2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-file-name--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-file-name--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-file-name--light-desktop.png new file mode 100644 index 000000000..43497fda7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-file-name--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-file-name--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-file-name--light-mobile.png new file mode 100644 index 000000000..d2056d368 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-file-name--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-file-name--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-file-name--light-tablet.png new file mode 100644 index 000000000..293921eea Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-file-name--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-highlighted-line--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-highlighted-line--dark-mobile.png new file mode 100644 index 000000000..ff7b014f6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-highlighted-line--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-highlighted-line--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-highlighted-line--dark-tablet.png new file mode 100644 index 000000000..a67d7b729 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-highlighted-line--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-highlighted-line--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-highlighted-line--light-desktop.png new file mode 100644 index 000000000..62429fa21 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-highlighted-line--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-highlighted-line--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-highlighted-line--light-mobile.png new file mode 100644 index 000000000..8bb79cade Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-highlighted-line--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-highlighted-line--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-highlighted-line--light-tablet.png new file mode 100644 index 000000000..cd764afbe Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--with-highlighted-line--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--without-line-numbers--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--without-line-numbers--dark-mobile.png new file mode 100644 index 000000000..863c931b2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--without-line-numbers--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--without-line-numbers--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--without-line-numbers--dark-tablet.png new file mode 100644 index 000000000..824dafce9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--without-line-numbers--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--without-line-numbers--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--without-line-numbers--light-desktop.png new file mode 100644 index 000000000..e9d2bc430 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--without-line-numbers--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--without-line-numbers--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--without-line-numbers--light-mobile.png new file mode 100644 index 000000000..8042d772a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--without-line-numbers--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--without-line-numbers--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--without-line-numbers--light-tablet.png new file mode 100644 index 000000000..e39ee00f8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-codeblock--without-line-numbers--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--default--dark-mobile.png new file mode 100644 index 000000000..db38cb0a4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--default--dark-tablet.png new file mode 100644 index 000000000..8221522d1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--default--light-desktop.png new file mode 100644 index 000000000..b8485135d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--default--light-mobile.png new file mode 100644 index 000000000..629c0c293 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--default--light-tablet.png new file mode 100644 index 000000000..e66c6060b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--loading--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--loading--dark-mobile.png new file mode 100644 index 000000000..1e5f62d1c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--loading--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--loading--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--loading--dark-tablet.png new file mode 100644 index 000000000..52750fa4c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--loading--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--loading--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--loading--light-desktop.png new file mode 100644 index 000000000..85fd1e00d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--loading--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--loading--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--loading--light-mobile.png new file mode 100644 index 000000000..a506da0ed Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--loading--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--loading--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--loading--light-tablet.png new file mode 100644 index 000000000..03fbf5f84 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-code-logview--loading--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--arrow-position--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--arrow-position--dark-mobile.png new file mode 100644 index 000000000..f630045c5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--arrow-position--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--arrow-position--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--arrow-position--dark-tablet.png new file mode 100644 index 000000000..1fc5db2d3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--arrow-position--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--arrow-position--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--arrow-position--light-desktop.png new file mode 100644 index 000000000..4db5cc676 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--arrow-position--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--arrow-position--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--arrow-position--light-mobile.png new file mode 100644 index 000000000..686a0fb8d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--arrow-position--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--arrow-position--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--arrow-position--light-tablet.png new file mode 100644 index 000000000..41ec7f171 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--arrow-position--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--default--dark-mobile.png new file mode 100644 index 000000000..7177d9ced Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--default--dark-tablet.png new file mode 100644 index 000000000..025c13142 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--default--light-desktop.png new file mode 100644 index 000000000..83dd328a4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--default--light-mobile.png new file mode 100644 index 000000000..6c1ee66f2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--default--light-tablet.png new file mode 100644 index 000000000..fbad115a8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--disabled--dark-mobile.png new file mode 100644 index 000000000..796aed7ba Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--disabled--dark-tablet.png new file mode 100644 index 000000000..f374f037b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--disabled--light-desktop.png new file mode 100644 index 000000000..976525adb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--disabled--light-mobile.png new file mode 100644 index 000000000..507bab854 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--disabled--light-tablet.png new file mode 100644 index 000000000..97c851ed6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--multiple--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--multiple--dark-mobile.png new file mode 100644 index 000000000..a288f1b20 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--multiple--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--multiple--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--multiple--dark-tablet.png new file mode 100644 index 000000000..0c7f95bf4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--multiple--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--multiple--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--multiple--light-desktop.png new file mode 100644 index 000000000..d034f5b9e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--multiple--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--multiple--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--multiple--light-mobile.png new file mode 100644 index 000000000..4d73c24b4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--multiple--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--multiple--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--multiple--light-tablet.png new file mode 100644 index 000000000..dcf655ecb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--multiple--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--sizes--dark-mobile.png new file mode 100644 index 000000000..a355c2439 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--sizes--dark-tablet.png new file mode 100644 index 000000000..af20fb59c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--sizes--light-desktop.png new file mode 100644 index 000000000..2c2466b4d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--sizes--light-mobile.png new file mode 100644 index 000000000..2ba82cbc8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--sizes--light-tablet.png new file mode 100644 index 000000000..46d4150b6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--with-log-view--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--with-log-view--dark-mobile.png new file mode 100644 index 000000000..10aa0ba54 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--with-log-view--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--with-log-view--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--with-log-view--dark-tablet.png new file mode 100644 index 000000000..1b1d00fa0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--with-log-view--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--with-log-view--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--with-log-view--light-desktop.png new file mode 100644 index 000000000..78131e41d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--with-log-view--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--with-log-view--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--with-log-view--light-mobile.png new file mode 100644 index 000000000..ab24096b8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--with-log-view--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--with-log-view--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--with-log-view--light-tablet.png new file mode 100644 index 000000000..ef91bc036 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-accordion--with-log-view--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--default--dark-mobile.png new file mode 100644 index 000000000..228fa49e8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--default--dark-tablet.png new file mode 100644 index 000000000..06a79879e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--default--light-desktop.png new file mode 100644 index 000000000..478dfecee Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--default--light-mobile.png new file mode 100644 index 000000000..bc63fdaeb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--default--light-tablet.png new file mode 100644 index 000000000..f3465deb8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--fallbacks--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--fallbacks--dark-mobile.png new file mode 100644 index 000000000..fa70f30dd Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--fallbacks--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--fallbacks--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--fallbacks--dark-tablet.png new file mode 100644 index 000000000..114a51b35 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--fallbacks--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--fallbacks--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--fallbacks--light-desktop.png new file mode 100644 index 000000000..6906c9345 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--fallbacks--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--fallbacks--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--fallbacks--light-mobile.png new file mode 100644 index 000000000..348d132c8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--fallbacks--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--fallbacks--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--fallbacks--light-tablet.png new file mode 100644 index 000000000..a69f1bfbf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--fallbacks--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--sizes--dark-mobile.png new file mode 100644 index 000000000..4a2a2fdd3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--sizes--dark-tablet.png new file mode 100644 index 000000000..2c63fc28e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--sizes--light-desktop.png new file mode 100644 index 000000000..190c087b9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--sizes--light-mobile.png new file mode 100644 index 000000000..8aa367d4d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--sizes--light-tablet.png new file mode 100644 index 000000000..ece2fb286 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--types--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--types--dark-mobile.png new file mode 100644 index 000000000..46c3ebd8b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--types--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--types--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--types--dark-tablet.png new file mode 100644 index 000000000..fa67ba5b5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--types--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--types--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--types--light-desktop.png new file mode 100644 index 000000000..0d8e2ff8a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--types--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--types--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--types--light-mobile.png new file mode 100644 index 000000000..93d1fdc7d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--types--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--types--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--types--light-tablet.png new file mode 100644 index 000000000..47702a538 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--types--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--variant-grid--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--variant-grid--dark-mobile.png new file mode 100644 index 000000000..8852adb75 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--variant-grid--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--variant-grid--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--variant-grid--dark-tablet.png new file mode 100644 index 000000000..a037e76e0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--variant-grid--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--variant-grid--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--variant-grid--light-desktop.png new file mode 100644 index 000000000..04c74c635 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--variant-grid--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--variant-grid--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--variant-grid--light-mobile.png new file mode 100644 index 000000000..2170354e2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--variant-grid--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--variant-grid--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--variant-grid--light-tablet.png new file mode 100644 index 000000000..cb5a57f1e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-avatar--variant-grid--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--default-logo--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--default-logo--dark-mobile.png new file mode 100644 index 000000000..333aa259b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--default-logo--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--default-logo--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--default-logo--dark-tablet.png new file mode 100644 index 000000000..6046e0654 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--default-logo--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--default-logo--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--default-logo--light-desktop.png new file mode 100644 index 000000000..4ad2f7973 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--default-logo--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--default-logo--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--default-logo--light-mobile.png new file mode 100644 index 000000000..50408853a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--default-logo--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--default-logo--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--default-logo--light-tablet.png new file mode 100644 index 000000000..c22d6fcba Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--default-logo--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--illustrations--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--illustrations--dark-mobile.png new file mode 100644 index 000000000..62f55afea Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--illustrations--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--illustrations--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--illustrations--dark-tablet.png new file mode 100644 index 000000000..1840365b9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--illustrations--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--illustrations--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--illustrations--light-desktop.png new file mode 100644 index 000000000..119335d20 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--illustrations--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--illustrations--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--illustrations--light-mobile.png new file mode 100644 index 000000000..d41ed0018 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--illustrations--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--illustrations--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--illustrations--light-tablet.png new file mode 100644 index 000000000..1dc61d9be Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--illustrations--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--variants--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--variants--dark-mobile.png new file mode 100644 index 000000000..e02ae0852 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--variants--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--variants--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--variants--dark-tablet.png new file mode 100644 index 000000000..ce6d496fc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--variants--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--variants--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--variants--light-desktop.png new file mode 100644 index 000000000..c815c5d56 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--variants--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--variants--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--variants--light-mobile.png new file mode 100644 index 000000000..784ee031e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--variants--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--variants--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--variants--light-tablet.png new file mode 100644 index 000000000..f640c9e4f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-azionlogo--variants--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--default--dark-mobile.png new file mode 100644 index 000000000..792b641a7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--default--dark-tablet.png new file mode 100644 index 000000000..eacb75941 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--default--light-desktop.png new file mode 100644 index 000000000..61246fbad Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--default--light-mobile.png new file mode 100644 index 000000000..b855a68a9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--default--light-tablet.png new file mode 100644 index 000000000..61246fbad Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--sizes--dark-mobile.png new file mode 100644 index 000000000..372151b34 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--sizes--dark-tablet.png new file mode 100644 index 000000000..3587042b0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--sizes--light-desktop.png new file mode 100644 index 000000000..eabfd33de Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--sizes--light-mobile.png new file mode 100644 index 000000000..2f5e39373 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--sizes--light-tablet.png new file mode 100644 index 000000000..eabfd33de Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--types--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--types--dark-mobile.png new file mode 100644 index 000000000..d60220f01 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--types--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--types--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--types--dark-tablet.png new file mode 100644 index 000000000..ee5bedc16 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--types--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--types--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--types--light-desktop.png new file mode 100644 index 000000000..18f0de027 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--types--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--types--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--types--light-mobile.png new file mode 100644 index 000000000..0ad71fa73 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--types--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--types--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--types--light-tablet.png new file mode 100644 index 000000000..18f0de027 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-badge--types--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--default--dark-mobile.png new file mode 100644 index 000000000..f0e8858ea Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--default--dark-tablet.png new file mode 100644 index 000000000..ea320ed79 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--default--light-desktop.png new file mode 100644 index 000000000..16ff0b9d7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--default--light-mobile.png new file mode 100644 index 000000000..15517fc8d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--default--light-tablet.png new file mode 100644 index 000000000..b545b475a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--sizes--dark-mobile.png new file mode 100644 index 000000000..68d29ced4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--sizes--dark-tablet.png new file mode 100644 index 000000000..bd273ee9c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--sizes--light-desktop.png new file mode 100644 index 000000000..86d659b5e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--sizes--light-mobile.png new file mode 100644 index 000000000..e451a780f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--sizes--light-tablet.png new file mode 100644 index 000000000..b92451f61 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--types--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--types--dark-mobile.png new file mode 100644 index 000000000..737eea7fa Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--types--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--types--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--types--dark-tablet.png new file mode 100644 index 000000000..20fa35606 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--types--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--types--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--types--light-desktop.png new file mode 100644 index 000000000..96c3cf5f0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--types--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--types--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--types--light-mobile.png new file mode 100644 index 000000000..2eadcb198 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--types--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--types--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--types--light-tablet.png new file mode 100644 index 000000000..6d042298b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-brand--types--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--default--dark-mobile.png new file mode 100644 index 000000000..f4bf7744d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--default--dark-tablet.png new file mode 100644 index 000000000..aba5402bd Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--default--light-desktop.png new file mode 100644 index 000000000..548630483 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--default--light-mobile.png new file mode 100644 index 000000000..4831cbd75 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--default--light-tablet.png new file mode 100644 index 000000000..0b2b9ce54 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--flush--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--flush--dark-mobile.png new file mode 100644 index 000000000..d3aa41ca8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--flush--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--flush--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--flush--dark-tablet.png new file mode 100644 index 000000000..0b3dd8b11 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--flush--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--flush--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--flush--light-desktop.png new file mode 100644 index 000000000..edfa88544 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--flush--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--flush--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--flush--light-mobile.png new file mode 100644 index 000000000..2d84a2f21 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--flush--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--flush--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--flush--light-tablet.png new file mode 100644 index 000000000..ab694d2b5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--flush--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--footer--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--footer--dark-mobile.png new file mode 100644 index 000000000..1f41eca78 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--footer--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--footer--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--footer--dark-tablet.png new file mode 100644 index 000000000..c68c01701 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--footer--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--footer--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--footer--light-desktop.png new file mode 100644 index 000000000..31c05f81a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--footer--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--footer--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--footer--light-mobile.png new file mode 100644 index 000000000..6d65c4bf4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--footer--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--footer--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--footer--light-tablet.png new file mode 100644 index 000000000..4343de323 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--footer--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--header--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--header--dark-mobile.png new file mode 100644 index 000000000..0fa2d83d7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--header--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--header--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--header--dark-tablet.png new file mode 100644 index 000000000..0d3172498 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--header--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--header--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--header--light-desktop.png new file mode 100644 index 000000000..7b70a65a3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--header--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--header--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--header--light-mobile.png new file mode 100644 index 000000000..c591b7741 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--header--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--header--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--header--light-tablet.png new file mode 100644 index 000000000..53f561594 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardbox--header--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--default--dark-mobile.png new file mode 100644 index 000000000..e91111034 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--default--dark-tablet.png new file mode 100644 index 000000000..0e855079a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--default--light-desktop.png new file mode 100644 index 000000000..533caab94 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--default--light-mobile.png new file mode 100644 index 000000000..15559752f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--default--light-tablet.png new file mode 100644 index 000000000..387dee69e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--slots--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--slots--dark-mobile.png new file mode 100644 index 000000000..8736d80e8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--slots--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--slots--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--slots--dark-tablet.png new file mode 100644 index 000000000..603548806 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--slots--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--slots--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--slots--light-desktop.png new file mode 100644 index 000000000..e2b621213 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--slots--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--slots--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--slots--light-mobile.png new file mode 100644 index 000000000..6f1cacded Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--slots--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--slots--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--slots--light-tablet.png new file mode 100644 index 000000000..88873ad12 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--slots--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--variants--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--variants--dark-mobile.png new file mode 100644 index 000000000..194b9ad8e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--variants--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--variants--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--variants--dark-tablet.png new file mode 100644 index 000000000..025be0f08 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--variants--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--variants--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--variants--light-desktop.png new file mode 100644 index 000000000..ea75c4222 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--variants--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--variants--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--variants--light-mobile.png new file mode 100644 index 000000000..da629c38d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--variants--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--variants--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--variants--light-tablet.png new file mode 100644 index 000000000..31e21b85f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--variants--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--with-tag--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--with-tag--dark-mobile.png new file mode 100644 index 000000000..cc92a3592 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--with-tag--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--with-tag--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--with-tag--dark-tablet.png new file mode 100644 index 000000000..db4d6dda5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--with-tag--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--with-tag--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--with-tag--light-desktop.png new file mode 100644 index 000000000..5d0f6186d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--with-tag--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--with-tag--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--with-tag--light-mobile.png new file mode 100644 index 000000000..2ed833fcd Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--with-tag--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--with-tag--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--with-tag--light-tablet.png new file mode 100644 index 000000000..d731a4fe4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-cardpricing--with-tag--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--default--dark-mobile.png new file mode 100644 index 000000000..4ef5f7329 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--default--dark-tablet.png new file mode 100644 index 000000000..0e2958f73 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--default--light-desktop.png new file mode 100644 index 000000000..04ab8d73a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--default--light-mobile.png new file mode 100644 index 000000000..fd529f653 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--default--light-tablet.png new file mode 100644 index 000000000..04ab8d73a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--sizes--dark-mobile.png new file mode 100644 index 000000000..228ec4e94 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--sizes--dark-tablet.png new file mode 100644 index 000000000..08e9389a8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--sizes--light-desktop.png new file mode 100644 index 000000000..673be3b54 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--sizes--light-mobile.png new file mode 100644 index 000000000..e5ad19ffa Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--sizes--light-tablet.png new file mode 100644 index 000000000..673be3b54 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-currency--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--default--dark-mobile.png new file mode 100644 index 000000000..7d66b94f7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--default--dark-tablet.png new file mode 100644 index 000000000..09122a888 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--default--light-desktop.png new file mode 100644 index 000000000..cedbcd529 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--default--light-mobile.png new file mode 100644 index 000000000..ee2159917 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--default--light-tablet.png new file mode 100644 index 000000000..f17741438 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--inline--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--inline--dark-mobile.png new file mode 100644 index 000000000..4cf4d1704 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--inline--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--inline--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--inline--dark-tablet.png new file mode 100644 index 000000000..9d8158e46 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--inline--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--inline--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--inline--light-desktop.png new file mode 100644 index 000000000..3030ca2b6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--inline--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--inline--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--inline--light-mobile.png new file mode 100644 index 000000000..2bc59821f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--inline--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--inline--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--inline--light-tablet.png new file mode 100644 index 000000000..68238310c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--inline--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--muted--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--muted--dark-mobile.png new file mode 100644 index 000000000..cceaa4024 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--muted--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--muted--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--muted--dark-tablet.png new file mode 100644 index 000000000..a757ffd9e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--muted--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--muted--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--muted--light-desktop.png new file mode 100644 index 000000000..0882c6986 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--muted--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--muted--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--muted--light-mobile.png new file mode 100644 index 000000000..36d802c83 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--muted--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--muted--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--muted--light-tablet.png new file mode 100644 index 000000000..c410c3ed4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--muted--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--outline--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--outline--dark-mobile.png new file mode 100644 index 000000000..f3b3851a8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--outline--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--outline--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--outline--dark-tablet.png new file mode 100644 index 000000000..fde26524a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--outline--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--outline--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--outline--light-desktop.png new file mode 100644 index 000000000..22f7f4523 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--outline--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--outline--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--outline--light-mobile.png new file mode 100644 index 000000000..49f5614ee Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--outline--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--outline--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--outline--light-tablet.png new file mode 100644 index 000000000..aa01ae083 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--outline--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--small--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--small--dark-mobile.png new file mode 100644 index 000000000..ebc6f3b33 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--small--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--small--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--small--dark-tablet.png new file mode 100644 index 000000000..a62804f61 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--small--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--small--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--small--light-desktop.png new file mode 100644 index 000000000..50d0ed11b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--small--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--small--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--small--light-mobile.png new file mode 100644 index 000000000..383b7265c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--small--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--small--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--small--light-tablet.png new file mode 100644 index 000000000..1b7b5a050 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--small--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-as-child--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-as-child--dark-mobile.png new file mode 100644 index 000000000..be3edcbff Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-as-child--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-as-child--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-as-child--dark-tablet.png new file mode 100644 index 000000000..e81f9b26e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-as-child--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-as-child--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-as-child--light-desktop.png new file mode 100644 index 000000000..f83e264b2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-as-child--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-as-child--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-as-child--light-mobile.png new file mode 100644 index 000000000..e7c783fad Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-as-child--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-as-child--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-as-child--light-tablet.png new file mode 100644 index 000000000..923ee70dd Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-as-child--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-avatar--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-avatar--dark-mobile.png new file mode 100644 index 000000000..cb7d96f8e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-avatar--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-avatar--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-avatar--dark-tablet.png new file mode 100644 index 000000000..15712eed5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-avatar--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-avatar--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-avatar--light-desktop.png new file mode 100644 index 000000000..057401e24 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-avatar--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-avatar--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-avatar--light-mobile.png new file mode 100644 index 000000000..b11cc1c7c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-avatar--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-avatar--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-avatar--light-tablet.png new file mode 100644 index 000000000..c9af3c964 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-avatar--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-group--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-group--dark-mobile.png new file mode 100644 index 000000000..6caa0950e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-group--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-group--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-group--dark-tablet.png new file mode 100644 index 000000000..f46c8a667 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-group--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-group--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-group--light-desktop.png new file mode 100644 index 000000000..a7fd1ed55 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-group--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-group--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-group--light-mobile.png new file mode 100644 index 000000000..00513212e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-group--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-group--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-group--light-tablet.png new file mode 100644 index 000000000..17d73f19a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-group--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-icon-media--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-icon-media--dark-mobile.png new file mode 100644 index 000000000..dca04fd07 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-icon-media--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-icon-media--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-icon-media--dark-tablet.png new file mode 100644 index 000000000..4414a6131 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-icon-media--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-icon-media--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-icon-media--light-desktop.png new file mode 100644 index 000000000..cfd79f09c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-icon-media--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-icon-media--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-icon-media--light-mobile.png new file mode 100644 index 000000000..8d8c2a691 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-icon-media--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-icon-media--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-icon-media--light-tablet.png new file mode 100644 index 000000000..bd9836427 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-icon-media--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-image-media--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-image-media--dark-mobile.png new file mode 100644 index 000000000..69df51202 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-image-media--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-image-media--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-image-media--dark-tablet.png new file mode 100644 index 000000000..f65600ebe Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-image-media--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-image-media--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-image-media--light-desktop.png new file mode 100644 index 000000000..4d55d670d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-image-media--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-image-media--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-image-media--light-mobile.png new file mode 100644 index 000000000..8b1314635 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-image-media--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-image-media--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-image-media--light-tablet.png new file mode 100644 index 000000000..b4c82630b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-image-media--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list--dark-mobile.png new file mode 100644 index 000000000..62e72e4e7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list--dark-tablet.png new file mode 100644 index 000000000..657583010 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list--light-desktop.png new file mode 100644 index 000000000..2c3b93e75 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list--light-mobile.png new file mode 100644 index 000000000..c8c84a975 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list--light-tablet.png new file mode 100644 index 000000000..c40700b4f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list-as-child--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list-as-child--dark-mobile.png new file mode 100644 index 000000000..eac170b18 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list-as-child--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list-as-child--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list-as-child--dark-tablet.png new file mode 100644 index 000000000..0edc584b4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list-as-child--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list-as-child--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list-as-child--light-desktop.png new file mode 100644 index 000000000..977d19f92 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list-as-child--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list-as-child--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list-as-child--light-mobile.png new file mode 100644 index 000000000..0bbb50986 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list-as-child--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list-as-child--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list-as-child--light-tablet.png new file mode 100644 index 000000000..747676664 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-item--with-list-as-child--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--cursor--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--cursor--dark-mobile.png new file mode 100644 index 000000000..d8368a361 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--cursor--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--cursor--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--cursor--dark-tablet.png new file mode 100644 index 000000000..eaa6d9efa Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--cursor--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--cursor--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--cursor--light-desktop.png new file mode 100644 index 000000000..d01f31ee6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--cursor--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--cursor--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--cursor--light-mobile.png new file mode 100644 index 000000000..075102304 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--cursor--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--cursor--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--cursor--light-tablet.png new file mode 100644 index 000000000..d01f31ee6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--cursor--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--default--dark-mobile.png new file mode 100644 index 000000000..378574645 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--default--dark-tablet.png new file mode 100644 index 000000000..51276b296 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--default--light-desktop.png new file mode 100644 index 000000000..b06db9202 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--default--light-mobile.png new file mode 100644 index 000000000..0b2ef99a6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--default--light-tablet.png new file mode 100644 index 000000000..b06db9202 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--prefixes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--prefixes--dark-mobile.png new file mode 100644 index 000000000..37feb7f2a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--prefixes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--prefixes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--prefixes--dark-tablet.png new file mode 100644 index 000000000..f7c91ff8f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--prefixes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--prefixes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--prefixes--light-desktop.png new file mode 100644 index 000000000..85fa06ab1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--prefixes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--prefixes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--prefixes--light-mobile.png new file mode 100644 index 000000000..da07a3354 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--prefixes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--prefixes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--prefixes--light-tablet.png new file mode 100644 index 000000000..85fa06ab1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-overline--prefixes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--default--dark-mobile.png new file mode 100644 index 000000000..56685bc26 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--default--dark-tablet.png new file mode 100644 index 000000000..9426430ca Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--default--light-desktop.png new file mode 100644 index 000000000..32f6ca3ff Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--default--light-mobile.png new file mode 100644 index 000000000..1bec29565 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--default--light-tablet.png new file mode 100644 index 000000000..32f6ca3ff Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--sizes--dark-mobile.png new file mode 100644 index 000000000..6f92c4dcc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--sizes--dark-tablet.png new file mode 100644 index 000000000..23c5a5b0c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--sizes--light-desktop.png new file mode 100644 index 000000000..1f5c195fe Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--sizes--light-mobile.png new file mode 100644 index 000000000..a2e6f5815 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--sizes--light-tablet.png new file mode 100644 index 000000000..2f87014f3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--types--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--types--dark-mobile.png new file mode 100644 index 000000000..a7e519fde Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--types--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--types--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--types--dark-tablet.png new file mode 100644 index 000000000..127ea2c09 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--types--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--types--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--types--light-desktop.png new file mode 100644 index 000000000..e62bd3adc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--types--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--types--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--types--light-mobile.png new file mode 100644 index 000000000..f59ac4bdf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--types--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--types--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--types--light-tablet.png new file mode 100644 index 000000000..58a9565e7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--types--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--with-icon--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--with-icon--dark-mobile.png new file mode 100644 index 000000000..4b5c250c3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--with-icon--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--with-icon--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--with-icon--dark-tablet.png new file mode 100644 index 000000000..e3ed7c0fb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--with-icon--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--with-icon--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--with-icon--light-desktop.png new file mode 100644 index 000000000..4d09bd462 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--with-icon--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--with-icon--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--with-icon--light-mobile.png new file mode 100644 index 000000000..08c3c3be4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--with-icon--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--with-icon--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--with-icon--light-tablet.png new file mode 100644 index 000000000..4d09bd462 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-content-tag--with-icon--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--anchored-node--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--anchored-node--dark-mobile.png new file mode 100644 index 000000000..c6e612aa8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--anchored-node--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--anchored-node--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--anchored-node--dark-tablet.png new file mode 100644 index 000000000..0c09e0ae8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--anchored-node--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--anchored-node--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--anchored-node--light-desktop.png new file mode 100644 index 000000000..6739d8fc2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--anchored-node--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--anchored-node--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--anchored-node--light-mobile.png new file mode 100644 index 000000000..ad935ef1a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--anchored-node--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--anchored-node--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--anchored-node--light-tablet.png new file mode 100644 index 000000000..b3d2ddf0b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--anchored-node--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--branches--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--branches--dark-mobile.png new file mode 100644 index 000000000..adeef8efc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--branches--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--branches--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--branches--dark-tablet.png new file mode 100644 index 000000000..3edf95c67 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--branches--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--branches--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--branches--light-desktop.png new file mode 100644 index 000000000..d8b334de8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--branches--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--branches--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--branches--light-mobile.png new file mode 100644 index 000000000..65f6c7f00 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--branches--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--branches--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--branches--light-tablet.png new file mode 100644 index 000000000..d4704441d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--branches--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--custom-nodes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--custom-nodes--dark-mobile.png new file mode 100644 index 000000000..6cf90f9eb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--custom-nodes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--custom-nodes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--custom-nodes--dark-tablet.png new file mode 100644 index 000000000..88f4e184e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--custom-nodes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--custom-nodes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--custom-nodes--light-desktop.png new file mode 100644 index 000000000..29cfab3d9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--custom-nodes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--custom-nodes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--custom-nodes--light-mobile.png new file mode 100644 index 000000000..8efaf0b20 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--custom-nodes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--custom-nodes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--custom-nodes--light-tablet.png new file mode 100644 index 000000000..80be91ce6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--custom-nodes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--default--dark-mobile.png new file mode 100644 index 000000000..9216a7731 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--default--dark-tablet.png new file mode 100644 index 000000000..3ef6e2fc2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--default--light-desktop.png new file mode 100644 index 000000000..ab26a2950 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--default--light-mobile.png new file mode 100644 index 000000000..766f6e915 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--default--light-tablet.png new file mode 100644 index 000000000..803275ded Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--disabled--dark-mobile.png new file mode 100644 index 000000000..7c02f35a2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--disabled--dark-tablet.png new file mode 100644 index 000000000..8d96499f7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--disabled--light-desktop.png new file mode 100644 index 000000000..43cd61f54 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--disabled--light-mobile.png new file mode 100644 index 000000000..03ea29c95 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--disabled--light-tablet.png new file mode 100644 index 000000000..edfc5a3e9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--parallel--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--parallel--dark-mobile.png new file mode 100644 index 000000000..e067c6ec8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--parallel--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--parallel--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--parallel--dark-tablet.png new file mode 100644 index 000000000..af2af85d4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--parallel--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--parallel--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--parallel--light-desktop.png new file mode 100644 index 000000000..994eaf7b6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--parallel--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--parallel--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--parallel--light-mobile.png new file mode 100644 index 000000000..e14f11f67 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--parallel--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--parallel--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--parallel--light-tablet.png new file mode 100644 index 000000000..0ce8ba42f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-flow--parallel--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--buttons--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--buttons--dark-mobile.png new file mode 100644 index 000000000..285eb1526 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--buttons--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--buttons--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--buttons--dark-tablet.png new file mode 100644 index 000000000..7f596a496 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--buttons--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--buttons--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--buttons--light-desktop.png new file mode 100644 index 000000000..eb59a4057 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--buttons--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--buttons--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--buttons--light-mobile.png new file mode 100644 index 000000000..8f1f24ea3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--buttons--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--buttons--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--buttons--light-tablet.png new file mode 100644 index 000000000..f29dbcc94 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--buttons--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--data-driven--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--data-driven--dark-mobile.png new file mode 100644 index 000000000..ef8004d65 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--data-driven--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--data-driven--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--data-driven--dark-tablet.png new file mode 100644 index 000000000..0a80570c8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--data-driven--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--data-driven--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--data-driven--light-desktop.png new file mode 100644 index 000000000..9fe20b92e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--data-driven--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--data-driven--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--data-driven--light-mobile.png new file mode 100644 index 000000000..701602e0f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--data-driven--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--data-driven--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--data-driven--light-tablet.png new file mode 100644 index 000000000..df5089a2e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--data-driven--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--default--dark-mobile.png new file mode 100644 index 000000000..ce652375b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--default--dark-tablet.png new file mode 100644 index 000000000..828996c6d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--default--light-desktop.png new file mode 100644 index 000000000..be1afffeb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--default--light-mobile.png new file mode 100644 index 000000000..a38bd8fc1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--default--light-tablet.png new file mode 100644 index 000000000..5b19c7f95 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-paginator--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default--dark-mobile.png new file mode 100644 index 000000000..c25e9ef25 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default--dark-tablet.png new file mode 100644 index 000000000..4106fe905 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default--light-desktop.png new file mode 100644 index 000000000..aa9a57d93 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default--light-mobile.png new file mode 100644 index 000000000..cafdcd187 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default--light-tablet.png new file mode 100644 index 000000000..6376e78dd Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default.png index f821386a5..d66ebcb9e 100644 Binary files a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default.png and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--default.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled--dark-mobile.png new file mode 100644 index 000000000..a86cd8611 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled--dark-tablet.png new file mode 100644 index 000000000..378392360 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled--light-desktop.png new file mode 100644 index 000000000..7305078ee Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled--light-mobile.png new file mode 100644 index 000000000..cc085794d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled--light-tablet.png new file mode 100644 index 000000000..bf15916df Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled.png index 7d8c522bd..eb2466d97 100644 Binary files a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled.png and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--disabled.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--loading--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--loading--dark-mobile.png new file mode 100644 index 000000000..def8e9bc2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--loading--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--loading--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--loading--dark-tablet.png new file mode 100644 index 000000000..30e69704d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--loading--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--loading--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--loading--light-desktop.png new file mode 100644 index 000000000..6c641abb1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--loading--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--loading--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--loading--light-mobile.png new file mode 100644 index 000000000..ab388bd86 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--loading--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--loading--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--loading--light-tablet.png new file mode 100644 index 000000000..e2aae8b8e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-picklist--loading--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header--dark-mobile.png new file mode 100644 index 000000000..db8812882 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header--dark-tablet.png new file mode 100644 index 000000000..185b9602a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header--light-desktop.png new file mode 100644 index 000000000..3873a1f7d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header--light-mobile.png new file mode 100644 index 000000000..fc79331ec Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header--light-tablet.png new file mode 100644 index 000000000..c279a7cab Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header-with-sticky-column--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header-with-sticky-column--dark-mobile.png new file mode 100644 index 000000000..0adf863da Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header-with-sticky-column--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header-with-sticky-column--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header-with-sticky-column--dark-tablet.png new file mode 100644 index 000000000..1dd6da4eb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header-with-sticky-column--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header-with-sticky-column--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header-with-sticky-column--light-desktop.png new file mode 100644 index 000000000..1582127ac Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header-with-sticky-column--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header-with-sticky-column--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header-with-sticky-column--light-mobile.png new file mode 100644 index 000000000..018ee6741 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header-with-sticky-column--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header-with-sticky-column--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header-with-sticky-column--light-tablet.png new file mode 100644 index 000000000..4502e339d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--compact-header-with-sticky-column--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--composition--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--composition--dark-mobile.png new file mode 100644 index 000000000..b463e25fe Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--composition--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--composition--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--composition--dark-tablet.png new file mode 100644 index 000000000..28be41754 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--composition--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--composition--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--composition--light-desktop.png new file mode 100644 index 000000000..b9acab369 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--composition--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--composition--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--composition--light-mobile.png new file mode 100644 index 000000000..d62c59e9f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--composition--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--composition--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--composition--light-tablet.png new file mode 100644 index 000000000..1840c644b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--composition--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--default--dark-mobile.png new file mode 100644 index 000000000..00eebc8ba Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--default--dark-tablet.png new file mode 100644 index 000000000..6a0e3409b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--default--light-desktop.png new file mode 100644 index 000000000..9a95f6599 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--default--light-mobile.png new file mode 100644 index 000000000..72c78f36b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--default--light-tablet.png new file mode 100644 index 000000000..d7456f88a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--empty--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--empty--dark-mobile.png new file mode 100644 index 000000000..25a43798d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--empty--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--empty--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--empty--dark-tablet.png new file mode 100644 index 000000000..423efaaf1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--empty--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--empty--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--empty--light-desktop.png new file mode 100644 index 000000000..3c22b4ef7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--empty--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--empty--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--empty--light-mobile.png new file mode 100644 index 000000000..1ffc5427b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--empty--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--empty--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--empty--light-tablet.png new file mode 100644 index 000000000..9e67dbd38 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--empty--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--fixed-layout-with-column-sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--fixed-layout-with-column-sizes--dark-mobile.png new file mode 100644 index 000000000..dfe4d6fad Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--fixed-layout-with-column-sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--fixed-layout-with-column-sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--fixed-layout-with-column-sizes--dark-tablet.png new file mode 100644 index 000000000..0b4d57667 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--fixed-layout-with-column-sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--fixed-layout-with-column-sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--fixed-layout-with-column-sizes--light-desktop.png new file mode 100644 index 000000000..79fc65310 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--fixed-layout-with-column-sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--fixed-layout-with-column-sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--fixed-layout-with-column-sizes--light-mobile.png new file mode 100644 index 000000000..15679cf28 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--fixed-layout-with-column-sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--fixed-layout-with-column-sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--fixed-layout-with-column-sizes--light-tablet.png new file mode 100644 index 000000000..656ea7479 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--fixed-layout-with-column-sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--resizable-columns--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--resizable-columns--dark-mobile.png new file mode 100644 index 000000000..f7880fa35 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--resizable-columns--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--resizable-columns--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--resizable-columns--dark-tablet.png new file mode 100644 index 000000000..c38344dc7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--resizable-columns--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--resizable-columns--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--resizable-columns--light-desktop.png new file mode 100644 index 000000000..12b9e4496 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--resizable-columns--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--resizable-columns--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--resizable-columns--light-mobile.png new file mode 100644 index 000000000..633f9661b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--resizable-columns--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--resizable-columns--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--resizable-columns--light-tablet.png new file mode 100644 index 000000000..0f25f51d9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--resizable-columns--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--selected-row--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--selected-row--dark-mobile.png new file mode 100644 index 000000000..4c7c459d2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--selected-row--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--selected-row--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--selected-row--dark-tablet.png new file mode 100644 index 000000000..e791e9d71 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--selected-row--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--selected-row--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--selected-row--light-desktop.png new file mode 100644 index 000000000..760e98d1c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--selected-row--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--selected-row--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--selected-row--light-mobile.png new file mode 100644 index 000000000..f5b1654c0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--selected-row--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--selected-row--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--selected-row--light-tablet.png new file mode 100644 index 000000000..165a23be8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--selected-row--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--sticky-column--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--sticky-column--dark-mobile.png new file mode 100644 index 000000000..82597ebf4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--sticky-column--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--sticky-column--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--sticky-column--dark-tablet.png new file mode 100644 index 000000000..1d01bf52d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--sticky-column--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--sticky-column--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--sticky-column--light-desktop.png new file mode 100644 index 000000000..7f88fd02f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--sticky-column--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--sticky-column--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--sticky-column--light-mobile.png new file mode 100644 index 000000000..20770ec09 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--sticky-column--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--sticky-column--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--sticky-column--light-tablet.png new file mode 100644 index 000000000..e7ff0f8c6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--sticky-column--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--with-checkboxes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--with-checkboxes--dark-mobile.png new file mode 100644 index 000000000..a97cae10f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--with-checkboxes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--with-checkboxes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--with-checkboxes--dark-tablet.png new file mode 100644 index 000000000..31c134fef Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--with-checkboxes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--with-checkboxes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--with-checkboxes--light-desktop.png new file mode 100644 index 000000000..55ddd8185 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--with-checkboxes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--with-checkboxes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--with-checkboxes--light-mobile.png new file mode 100644 index 000000000..6cab16db4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--with-checkboxes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--with-checkboxes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--with-checkboxes--light-tablet.png new file mode 100644 index 000000000..b316a8f61 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-data-table--with-checkboxes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--bordered--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--bordered--dark-mobile.png new file mode 100644 index 000000000..2d0751c8d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--bordered--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--bordered--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--bordered--dark-tablet.png new file mode 100644 index 000000000..bb0769b44 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--bordered--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--bordered--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--bordered--light-desktop.png new file mode 100644 index 000000000..43ef766c9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--bordered--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--bordered--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--bordered--light-mobile.png new file mode 100644 index 000000000..d5fbee8b7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--bordered--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--bordered--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--bordered--light-tablet.png new file mode 100644 index 000000000..2b4a04a83 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--bordered--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--default--dark-mobile.png new file mode 100644 index 000000000..ca10a0fd9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--default--dark-tablet.png new file mode 100644 index 000000000..df61f4ff7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--default--light-desktop.png new file mode 100644 index 000000000..fda432d74 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--default--light-mobile.png new file mode 100644 index 000000000..a7aaba8ae Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--default--light-tablet.png new file mode 100644 index 000000000..863f1ad90 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--sizes--dark-mobile.png new file mode 100644 index 000000000..f943ef53e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--sizes--dark-tablet.png new file mode 100644 index 000000000..5740d1210 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--sizes--light-desktop.png new file mode 100644 index 000000000..4661f243b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--sizes--light-mobile.png new file mode 100644 index 000000000..62ad44c5c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--sizes--light-tablet.png new file mode 100644 index 000000000..8c2b578e9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-emptystate--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--auto-dismiss--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--auto-dismiss--dark-mobile.png new file mode 100644 index 000000000..74b7dbeb7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--auto-dismiss--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--auto-dismiss--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--auto-dismiss--dark-tablet.png new file mode 100644 index 000000000..8130a415a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--auto-dismiss--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--auto-dismiss--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--auto-dismiss--light-desktop.png new file mode 100644 index 000000000..87cb09a23 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--auto-dismiss--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--auto-dismiss--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--auto-dismiss--light-mobile.png new file mode 100644 index 000000000..5fc906823 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--auto-dismiss--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--auto-dismiss--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--auto-dismiss--light-tablet.png new file mode 100644 index 000000000..040f46f3b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--auto-dismiss--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--closable--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--closable--dark-mobile.png new file mode 100644 index 000000000..7c445888b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--closable--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--closable--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--closable--dark-tablet.png new file mode 100644 index 000000000..281fe8bc6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--closable--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--closable--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--closable--light-desktop.png new file mode 100644 index 000000000..145dece54 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--closable--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--closable--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--closable--light-mobile.png new file mode 100644 index 000000000..d6c106b6f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--closable--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--closable--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--closable--light-tablet.png new file mode 100644 index 000000000..1b3638880 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--closable--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--default--dark-mobile.png new file mode 100644 index 000000000..a2adc1c64 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--default--dark-tablet.png new file mode 100644 index 000000000..ea6dbb228 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--default--light-desktop.png new file mode 100644 index 000000000..064ccddae Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--default--light-mobile.png new file mode 100644 index 000000000..e11034f34 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--default--light-tablet.png new file mode 100644 index 000000000..943551f18 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--types--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--types--dark-mobile.png new file mode 100644 index 000000000..0937651df Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--types--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--types--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--types--dark-tablet.png new file mode 100644 index 000000000..43e0999f7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--types--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--types--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--types--light-desktop.png new file mode 100644 index 000000000..ee7440636 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--types--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--types--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--types--light-mobile.png new file mode 100644 index 000000000..59896d726 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--types--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--types--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--types--light-tablet.png new file mode 100644 index 000000000..e33cf0571 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-message--types--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--default--dark-mobile.png new file mode 100644 index 000000000..4dfe7fae3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--default--dark-tablet.png new file mode 100644 index 000000000..11f92c348 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--default--light-desktop.png new file mode 100644 index 000000000..cc334941f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--default--light-mobile.png new file mode 100644 index 000000000..7ab8eabbd Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--default--light-tablet.png new file mode 100644 index 000000000..6e1ba0acf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--indeterminate--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--indeterminate--dark-mobile.png new file mode 100644 index 000000000..3f5cc5996 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--indeterminate--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--indeterminate--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--indeterminate--dark-tablet.png new file mode 100644 index 000000000..49f383f1c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--indeterminate--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--indeterminate--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--indeterminate--light-desktop.png new file mode 100644 index 000000000..e97df6bc0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--indeterminate--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--indeterminate--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--indeterminate--light-mobile.png new file mode 100644 index 000000000..fe4216eb0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--indeterminate--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--indeterminate--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--indeterminate--light-tablet.png new file mode 100644 index 000000000..2e77a1bec Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--indeterminate--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--shapes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--shapes--dark-mobile.png new file mode 100644 index 000000000..989872ef4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--shapes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--shapes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--shapes--dark-tablet.png new file mode 100644 index 000000000..12c0180c9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--shapes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--shapes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--shapes--light-desktop.png new file mode 100644 index 000000000..41b4eab65 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--shapes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--shapes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--shapes--light-mobile.png new file mode 100644 index 000000000..5c3de281d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--shapes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--shapes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--shapes--light-tablet.png new file mode 100644 index 000000000..ae5bac100 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--shapes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--simulation--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--simulation--dark-mobile.png new file mode 100644 index 000000000..cee32a8c7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--simulation--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--simulation--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--simulation--dark-tablet.png new file mode 100644 index 000000000..d0fb1e2c5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--simulation--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--simulation--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--simulation--light-desktop.png new file mode 100644 index 000000000..4ae12e871 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--simulation--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--simulation--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--simulation--light-mobile.png new file mode 100644 index 000000000..77a1282c1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--simulation--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--simulation--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--simulation--light-tablet.png new file mode 100644 index 000000000..d97da998a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--simulation--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--sizes--dark-mobile.png new file mode 100644 index 000000000..93550cb8a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--sizes--dark-tablet.png new file mode 100644 index 000000000..e724600b7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--sizes--light-desktop.png new file mode 100644 index 000000000..76d148bcf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--sizes--light-mobile.png new file mode 100644 index 000000000..e3d842334 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--sizes--light-tablet.png new file mode 100644 index 000000000..4ed959161 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-progressbar--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--default--dark-mobile.png new file mode 100644 index 000000000..46864b804 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--default--dark-tablet.png new file mode 100644 index 000000000..3fb09fc46 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--default--light-desktop.png new file mode 100644 index 000000000..0c15b76ae Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--default--light-mobile.png new file mode 100644 index 000000000..37a3f51ac Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--default--light-tablet.png new file mode 100644 index 000000000..b44f3bc6e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--static--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--static--dark-mobile.png new file mode 100644 index 000000000..14a940392 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--static--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--static--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--static--dark-tablet.png new file mode 100644 index 000000000..f2740e24c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--static--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--static--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--static--light-desktop.png new file mode 100644 index 000000000..98fcd234a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--static--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--static--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--static--light-mobile.png new file mode 100644 index 000000000..d777839a9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--static--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--static--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--static--light-tablet.png new file mode 100644 index 000000000..da1400e52 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--static--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--types--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--types--dark-mobile.png new file mode 100644 index 000000000..0b3cb1667 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--types--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--types--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--types--dark-tablet.png new file mode 100644 index 000000000..b01fd6112 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--types--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--types--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--types--light-desktop.png new file mode 100644 index 000000000..0c15b76ae Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--types--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--types--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--types--light-mobile.png new file mode 100644 index 000000000..dd96dc79b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--types--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--types--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--types--light-tablet.png new file mode 100644 index 000000000..b44f3bc6e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-skeleton--types--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--default--dark-mobile.png new file mode 100644 index 000000000..cef6f2a2b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--default--dark-tablet.png new file mode 100644 index 000000000..db46e89ba Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--default--light-desktop.png new file mode 100644 index 000000000..8811c6fa5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--default--light-mobile.png new file mode 100644 index 000000000..86e62b1b0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--default--light-tablet.png new file mode 100644 index 000000000..1525797e6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--loading--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--loading--dark-mobile.png new file mode 100644 index 000000000..1de433753 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--loading--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--loading--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--loading--dark-tablet.png new file mode 100644 index 000000000..8881c4eb4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--loading--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--loading--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--loading--light-desktop.png new file mode 100644 index 000000000..53b30e4e8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--loading--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--loading--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--loading--light-mobile.png new file mode 100644 index 000000000..5171d1915 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--loading--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--loading--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--loading--light-tablet.png new file mode 100644 index 000000000..49b392d3a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--loading--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--status--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--status--dark-mobile.png new file mode 100644 index 000000000..1f7113ca4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--status--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--status--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--status--dark-tablet.png new file mode 100644 index 000000000..61864c881 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--status--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--status--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--status--light-desktop.png new file mode 100644 index 000000000..ef2c267d9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--status--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--status--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--status--light-mobile.png new file mode 100644 index 000000000..446fc6a04 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--status--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--status--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--status--light-tablet.png new file mode 100644 index 000000000..95dbf682c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-statusindicator--status--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--closable--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--closable--dark-mobile.png new file mode 100644 index 000000000..8f143ee51 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--closable--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--closable--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--closable--dark-tablet.png new file mode 100644 index 000000000..11a1273a7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--closable--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--closable--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--closable--light-desktop.png new file mode 100644 index 000000000..6bcfdac9b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--closable--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--closable--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--closable--light-mobile.png new file mode 100644 index 000000000..11d5144da Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--closable--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--closable--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--closable--light-tablet.png new file mode 100644 index 000000000..6bcfdac9b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--closable--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--default--dark-mobile.png new file mode 100644 index 000000000..8f143ee51 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--default--dark-tablet.png new file mode 100644 index 000000000..11a1273a7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--default--light-desktop.png new file mode 100644 index 000000000..6bcfdac9b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--default--light-mobile.png new file mode 100644 index 000000000..11d5144da Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--default--light-tablet.png new file mode 100644 index 000000000..6bcfdac9b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--positions--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--positions--dark-mobile.png new file mode 100644 index 000000000..fcf9adc8e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--positions--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--positions--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--positions--dark-tablet.png new file mode 100644 index 000000000..8129bf44e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--positions--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--positions--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--positions--light-desktop.png new file mode 100644 index 000000000..2512a5889 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--positions--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--positions--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--positions--light-mobile.png new file mode 100644 index 000000000..b659b4112 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--positions--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--positions--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--positions--light-tablet.png new file mode 100644 index 000000000..2512a5889 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--positions--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--types--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--types--dark-mobile.png new file mode 100644 index 000000000..416adc394 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--types--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--types--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--types--dark-tablet.png new file mode 100644 index 000000000..6e8a86f64 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--types--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--types--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--types--light-desktop.png new file mode 100644 index 000000000..66b246293 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--types--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--types--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--types--light-mobile.png new file mode 100644 index 000000000..b0251f1fc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--types--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--types--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--types--light-tablet.png new file mode 100644 index 000000000..66b246293 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--types--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-action--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-action--dark-mobile.png new file mode 100644 index 000000000..8f143ee51 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-action--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-action--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-action--dark-tablet.png new file mode 100644 index 000000000..11a1273a7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-action--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-action--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-action--light-desktop.png new file mode 100644 index 000000000..6bcfdac9b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-action--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-action--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-action--light-mobile.png new file mode 100644 index 000000000..11d5144da Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-action--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-action--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-action--light-tablet.png new file mode 100644 index 000000000..6bcfdac9b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-action--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-description--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-description--dark-mobile.png new file mode 100644 index 000000000..8f143ee51 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-description--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-description--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-description--dark-tablet.png new file mode 100644 index 000000000..11a1273a7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-description--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-description--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-description--light-desktop.png new file mode 100644 index 000000000..6bcfdac9b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-description--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-description--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-description--light-mobile.png new file mode 100644 index 000000000..11d5144da Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-description--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-description--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-description--light-tablet.png new file mode 100644 index 000000000..6bcfdac9b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-feedback-toast--with-description--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--default--dark-mobile.png new file mode 100644 index 000000000..2fe872075 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--default--dark-tablet.png new file mode 100644 index 000000000..2a33955cc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--default--light-desktop.png new file mode 100644 index 000000000..879f13886 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--default--light-mobile.png new file mode 100644 index 000000000..81c2db7c8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--default--light-tablet.png new file mode 100644 index 000000000..6ac83415b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--disabled--dark-mobile.png new file mode 100644 index 000000000..bcf54e9d8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--disabled--dark-tablet.png new file mode 100644 index 000000000..ee19f3289 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--disabled--light-desktop.png new file mode 100644 index 000000000..ae0822521 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--disabled--light-mobile.png new file mode 100644 index 000000000..39f96c359 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--disabled--light-tablet.png new file mode 100644 index 000000000..a7b02d6ba Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--with-tag--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--with-tag--dark-mobile.png new file mode 100644 index 000000000..cf4753a53 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--with-tag--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--with-tag--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--with-tag--dark-tablet.png new file mode 100644 index 000000000..4f1fcc1e7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--with-tag--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--with-tag--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--with-tag--light-desktop.png new file mode 100644 index 000000000..dc2c9934a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--with-tag--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--with-tag--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--with-tag--light-mobile.png new file mode 100644 index 000000000..ad2fb937b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--with-tag--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--with-tag--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--with-tag--light-tablet.png new file mode 100644 index 000000000..f1cf8f6ef Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-boxgridselection--with-tag--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--clearable--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--clearable--dark-mobile.png new file mode 100644 index 000000000..5101c6b17 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--clearable--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--clearable--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--clearable--dark-tablet.png new file mode 100644 index 000000000..9c3fd0c5b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--clearable--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--clearable--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--clearable--light-desktop.png new file mode 100644 index 000000000..f2c16940f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--clearable--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--clearable--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--clearable--light-mobile.png new file mode 100644 index 000000000..cb0cab888 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--clearable--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--clearable--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--clearable--light-tablet.png new file mode 100644 index 000000000..4e9d6515a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--clearable--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--default--dark-mobile.png new file mode 100644 index 000000000..caccfae11 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--default--dark-tablet.png new file mode 100644 index 000000000..f3b572c1a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--default--light-desktop.png new file mode 100644 index 000000000..b9dac8d35 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--default--light-mobile.png new file mode 100644 index 000000000..4ce4269b9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--default--light-tablet.png new file mode 100644 index 000000000..7c87e9ada Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--horizontal--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--horizontal--dark-mobile.png new file mode 100644 index 000000000..caccfae11 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--horizontal--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--horizontal--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--horizontal--dark-tablet.png new file mode 100644 index 000000000..f3b572c1a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--horizontal--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--horizontal--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--horizontal--light-desktop.png new file mode 100644 index 000000000..b9dac8d35 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--horizontal--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--horizontal--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--horizontal--light-mobile.png new file mode 100644 index 000000000..4ce4269b9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--horizontal--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--horizontal--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--horizontal--light-tablet.png new file mode 100644 index 000000000..7c87e9ada Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--horizontal--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--min-max--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--min-max--dark-mobile.png new file mode 100644 index 000000000..caccfae11 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--min-max--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--min-max--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--min-max--dark-tablet.png new file mode 100644 index 000000000..f3b572c1a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--min-max--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--min-max--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--min-max--light-desktop.png new file mode 100644 index 000000000..b9dac8d35 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--min-max--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--min-max--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--min-max--light-mobile.png new file mode 100644 index 000000000..4ce4269b9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--min-max--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--min-max--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--min-max--light-tablet.png new file mode 100644 index 000000000..7c87e9ada Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--min-max--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--select-period--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--select-period--dark-mobile.png new file mode 100644 index 000000000..85c4dce43 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--select-period--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--select-period--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--select-period--dark-tablet.png new file mode 100644 index 000000000..f430ffc7f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--select-period--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--select-period--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--select-period--light-desktop.png new file mode 100644 index 000000000..3e81d15ae Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--select-period--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--select-period--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--select-period--light-mobile.png new file mode 100644 index 000000000..6c1813959 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--select-period--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--select-period--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--select-period--light-tablet.png new file mode 100644 index 000000000..bf42d9fbe Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--select-period--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--single--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--single--dark-mobile.png new file mode 100644 index 000000000..616cce421 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--single--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--single--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--single--dark-tablet.png new file mode 100644 index 000000000..505148940 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--single--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--single--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--single--light-desktop.png new file mode 100644 index 000000000..e424cc52c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--single--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--single--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--single--light-mobile.png new file mode 100644 index 000000000..bf887e7dc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--single--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--single--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--single--light-tablet.png new file mode 100644 index 000000000..2ffa4bb59 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--single--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--sizes--dark-mobile.png new file mode 100644 index 000000000..4b60657bf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--sizes--dark-tablet.png new file mode 100644 index 000000000..84eb132b1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--sizes--light-desktop.png new file mode 100644 index 000000000..53b57e042 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--sizes--light-mobile.png new file mode 100644 index 000000000..d57c9f835 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--sizes--light-tablet.png new file mode 100644 index 000000000..62510b069 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-presets--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-presets--dark-mobile.png new file mode 100644 index 000000000..47dff75ad Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-presets--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-presets--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-presets--dark-tablet.png new file mode 100644 index 000000000..d2bc2d329 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-presets--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-presets--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-presets--light-desktop.png new file mode 100644 index 000000000..4603fb192 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-presets--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-presets--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-presets--light-mobile.png new file mode 100644 index 000000000..ff1269ce6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-presets--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-presets--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-presets--light-tablet.png new file mode 100644 index 000000000..ed1b5abbb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-presets--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-time--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-time--dark-mobile.png new file mode 100644 index 000000000..35aea1c1f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-time--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-time--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-time--dark-tablet.png new file mode 100644 index 000000000..a3df0e1af Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-time--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-time--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-time--light-desktop.png new file mode 100644 index 000000000..c926d623f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-time--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-time--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-time--light-mobile.png new file mode 100644 index 000000000..2dc9c93f9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-time--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-time--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-time--light-tablet.png new file mode 100644 index 000000000..989a713be Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-time--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-timezone--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-timezone--dark-mobile.png new file mode 100644 index 000000000..35aea1c1f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-timezone--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-timezone--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-timezone--dark-tablet.png new file mode 100644 index 000000000..a3df0e1af Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-timezone--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-timezone--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-timezone--light-desktop.png new file mode 100644 index 000000000..c926d623f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-timezone--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-timezone--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-timezone--light-mobile.png new file mode 100644 index 000000000..2dc9c93f9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-timezone--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-timezone--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-timezone--light-tablet.png new file mode 100644 index 000000000..989a713be Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-calendar--with-timezone--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--default--dark-mobile.png new file mode 100644 index 000000000..f17db8c54 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--default--dark-tablet.png new file mode 100644 index 000000000..6949cd3a8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--default--light-desktop.png new file mode 100644 index 000000000..ce5961814 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--default--light-mobile.png new file mode 100644 index 000000000..d9d4f39e2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--default--light-tablet.png new file mode 100644 index 000000000..224aecf55 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--disabled--dark-mobile.png new file mode 100644 index 000000000..cf47f586b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--disabled--dark-tablet.png new file mode 100644 index 000000000..877b83117 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--disabled--light-desktop.png new file mode 100644 index 000000000..d7fc08e5a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--disabled--light-mobile.png new file mode 100644 index 000000000..75cba29a1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--disabled--light-tablet.png new file mode 100644 index 000000000..d7fc08e5a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--indeterminate--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--indeterminate--dark-mobile.png new file mode 100644 index 000000000..13d77ae31 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--indeterminate--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--indeterminate--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--indeterminate--dark-tablet.png new file mode 100644 index 000000000..343748524 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--indeterminate--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--indeterminate--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--indeterminate--light-desktop.png new file mode 100644 index 000000000..1e5f98208 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--indeterminate--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--indeterminate--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--indeterminate--light-mobile.png new file mode 100644 index 000000000..30c5325ac Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--indeterminate--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--indeterminate--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--indeterminate--light-tablet.png new file mode 100644 index 000000000..9eee50874 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-checkbox--indeterminate--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--clickable--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--clickable--dark-mobile.png new file mode 100644 index 000000000..d1057caa0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--clickable--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--clickable--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--clickable--dark-tablet.png new file mode 100644 index 000000000..7bda3d0d3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--clickable--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--clickable--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--clickable--light-desktop.png new file mode 100644 index 000000000..13332a63b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--clickable--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--clickable--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--clickable--light-mobile.png new file mode 100644 index 000000000..10c50dae9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--clickable--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--clickable--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--clickable--light-tablet.png new file mode 100644 index 000000000..e8757a748 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--clickable--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--default--dark-mobile.png new file mode 100644 index 000000000..d1057caa0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--default--dark-tablet.png new file mode 100644 index 000000000..7bda3d0d3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--default--light-desktop.png new file mode 100644 index 000000000..13332a63b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--default--light-mobile.png new file mode 100644 index 000000000..10c50dae9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--default--light-tablet.png new file mode 100644 index 000000000..e8757a748 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--removable--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--removable--dark-mobile.png new file mode 100644 index 000000000..49f48665e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--removable--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--removable--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--removable--dark-tablet.png new file mode 100644 index 000000000..76f08ce28 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--removable--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--removable--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--removable--light-desktop.png new file mode 100644 index 000000000..7a4e27c23 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--removable--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--removable--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--removable--light-mobile.png new file mode 100644 index 000000000..8e02d3b24 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--removable--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--removable--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--removable--light-tablet.png new file mode 100644 index 000000000..bcb36f7eb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--removable--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--sizes--dark-mobile.png new file mode 100644 index 000000000..5867774a0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--sizes--dark-tablet.png new file mode 100644 index 000000000..7e61cc335 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--sizes--light-desktop.png new file mode 100644 index 000000000..d8b053cd0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--sizes--light-mobile.png new file mode 100644 index 000000000..68e239555 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--sizes--light-tablet.png new file mode 100644 index 000000000..85a9159a4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-chip--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--default--dark-mobile.png new file mode 100644 index 000000000..cf641b990 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--default--dark-tablet.png new file mode 100644 index 000000000..8a6f6d371 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--default--light-desktop.png new file mode 100644 index 000000000..a23735555 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--default--light-mobile.png new file mode 100644 index 000000000..d2bc6ccfe Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--default--light-tablet.png new file mode 100644 index 000000000..a23735555 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--disabled--dark-mobile.png new file mode 100644 index 000000000..7f33d55fb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--disabled--dark-tablet.png new file mode 100644 index 000000000..b23bb7bac Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--disabled--light-desktop.png new file mode 100644 index 000000000..7c12588d4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--disabled--light-mobile.png new file mode 100644 index 000000000..ad9bd7eed Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--disabled--light-tablet.png new file mode 100644 index 000000000..7c12588d4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--required--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--required--dark-mobile.png new file mode 100644 index 000000000..aaca132f8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--required--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--required--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--required--dark-tablet.png new file mode 100644 index 000000000..125c3443b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--required--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--required--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--required--light-desktop.png new file mode 100644 index 000000000..56a2c2878 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--required--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--required--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--required--light-mobile.png new file mode 100644 index 000000000..70fa7dd5a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--required--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--required--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--required--light-tablet.png new file mode 100644 index 000000000..56a2c2878 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckbox--required--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--default--dark-mobile.png new file mode 100644 index 000000000..cf1f64b2d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--default--dark-tablet.png new file mode 100644 index 000000000..6cd110bc2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--default--light-desktop.png new file mode 100644 index 000000000..69230a113 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--default--light-mobile.png new file mode 100644 index 000000000..53215fe90 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--default--light-tablet.png new file mode 100644 index 000000000..dd0261e6e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--disabled--dark-mobile.png new file mode 100644 index 000000000..cbda56e6a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--disabled--dark-tablet.png new file mode 100644 index 000000000..d3942a30d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--disabled--light-desktop.png new file mode 100644 index 000000000..2480b79e3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--disabled--light-mobile.png new file mode 100644 index 000000000..79cb7da83 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--disabled--light-tablet.png new file mode 100644 index 000000000..52a167931 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldcheckboxblock--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--default--dark-mobile.png new file mode 100644 index 000000000..e37147236 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--default--dark-tablet.png new file mode 100644 index 000000000..0a70adb49 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--default--light-desktop.png new file mode 100644 index 000000000..035978b39 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--default--light-mobile.png new file mode 100644 index 000000000..f01a7063d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--default--light-tablet.png new file mode 100644 index 000000000..dbe849e32 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--disabled--dark-mobile.png new file mode 100644 index 000000000..3e7fe3bff Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--disabled--dark-tablet.png new file mode 100644 index 000000000..b92f20d89 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--disabled--light-desktop.png new file mode 100644 index 000000000..ebef92b42 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--disabled--light-mobile.png new file mode 100644 index 000000000..e79443496 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--disabled--light-tablet.png new file mode 100644 index 000000000..93918e958 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--icons--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--icons--dark-mobile.png new file mode 100644 index 000000000..48c0b6d51 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--icons--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--icons--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--icons--dark-tablet.png new file mode 100644 index 000000000..ad27df1d7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--icons--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--icons--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--icons--light-desktop.png new file mode 100644 index 000000000..aed877786 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--icons--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--icons--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--icons--light-mobile.png new file mode 100644 index 000000000..f02b113f0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--icons--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--icons--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--icons--light-tablet.png new file mode 100644 index 000000000..1c2199584 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--icons--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--invalid--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--invalid--dark-mobile.png new file mode 100644 index 000000000..b9d3ac60e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--invalid--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--invalid--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--invalid--dark-tablet.png new file mode 100644 index 000000000..3a13415e3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--invalid--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--invalid--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--invalid--light-desktop.png new file mode 100644 index 000000000..c74b007b9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--invalid--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--invalid--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--invalid--light-mobile.png new file mode 100644 index 000000000..091603333 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--invalid--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--invalid--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--invalid--light-tablet.png new file mode 100644 index 000000000..f124d8586 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--invalid--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--required--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--required--dark-mobile.png new file mode 100644 index 000000000..0067ebed9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--required--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--required--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--required--dark-tablet.png new file mode 100644 index 000000000..dfaff24cc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--required--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--required--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--required--light-desktop.png new file mode 100644 index 000000000..93ce57a78 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--required--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--required--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--required--light-mobile.png new file mode 100644 index 000000000..49cc8a70d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--required--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--required--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--required--light-tablet.png new file mode 100644 index 000000000..81d84ddaf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--required--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--with-slots--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--with-slots--dark-mobile.png new file mode 100644 index 000000000..724a47fec Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--with-slots--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--with-slots--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--with-slots--dark-tablet.png new file mode 100644 index 000000000..2e6def51a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--with-slots--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--with-slots--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--with-slots--light-desktop.png new file mode 100644 index 000000000..7f3e67305 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--with-slots--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--with-slots--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--with-slots--light-mobile.png new file mode 100644 index 000000000..6a90aa3c7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--with-slots--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--with-slots--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--with-slots--light-tablet.png new file mode 100644 index 000000000..1e178eb12 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldinputgroup--with-slots--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--default--dark-mobile.png new file mode 100644 index 000000000..0951696b7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--default--dark-tablet.png new file mode 100644 index 000000000..75f409be9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--default--light-desktop.png new file mode 100644 index 000000000..06e98cc14 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--default--light-mobile.png new file mode 100644 index 000000000..7be9255b8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--default--light-tablet.png new file mode 100644 index 000000000..06e98cc14 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--disabled--dark-mobile.png new file mode 100644 index 000000000..70d8f4aee Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--disabled--dark-tablet.png new file mode 100644 index 000000000..cd070f99b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--disabled--light-desktop.png new file mode 100644 index 000000000..da611052b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--disabled--light-mobile.png new file mode 100644 index 000000000..00f7c2517 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--disabled--light-tablet.png new file mode 100644 index 000000000..da611052b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--icons--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--icons--dark-mobile.png new file mode 100644 index 000000000..e57f902bb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--icons--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--icons--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--icons--dark-tablet.png new file mode 100644 index 000000000..3cb3a7e75 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--icons--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--icons--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--icons--light-desktop.png new file mode 100644 index 000000000..020cc8feb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--icons--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--icons--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--icons--light-mobile.png new file mode 100644 index 000000000..83c6fec3f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--icons--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--icons--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--icons--light-tablet.png new file mode 100644 index 000000000..c7837964a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--icons--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--invalid--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--invalid--dark-mobile.png new file mode 100644 index 000000000..0be2f2c5b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--invalid--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--invalid--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--invalid--dark-tablet.png new file mode 100644 index 000000000..88a8b04fa Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--invalid--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--invalid--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--invalid--light-desktop.png new file mode 100644 index 000000000..23dcc15d3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--invalid--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--invalid--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--invalid--light-mobile.png new file mode 100644 index 000000000..aac04dd70 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--invalid--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--invalid--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--invalid--light-tablet.png new file mode 100644 index 000000000..23dcc15d3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--invalid--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--required--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--required--dark-mobile.png new file mode 100644 index 000000000..259b4365f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--required--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--required--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--required--dark-tablet.png new file mode 100644 index 000000000..50e11adff Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--required--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--required--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--required--light-desktop.png new file mode 100644 index 000000000..4c6072986 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--required--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--required--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--required--light-mobile.png new file mode 100644 index 000000000..426804f56 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--required--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--required--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--required--light-tablet.png new file mode 100644 index 000000000..4c6072986 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--required--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--toggle--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--toggle--dark-mobile.png new file mode 100644 index 000000000..a48e10122 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--toggle--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--toggle--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--toggle--dark-tablet.png new file mode 100644 index 000000000..bc0122c76 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--toggle--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--toggle--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--toggle--light-desktop.png new file mode 100644 index 000000000..3b6e97fdc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--toggle--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--toggle--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--toggle--light-mobile.png new file mode 100644 index 000000000..d73401609 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--toggle--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--toggle--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--toggle--light-tablet.png new file mode 100644 index 000000000..3b6e97fdc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldpassword--toggle--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--countries--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--countries--dark-mobile.png new file mode 100644 index 000000000..b0d63c41e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--countries--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--countries--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--countries--dark-tablet.png new file mode 100644 index 000000000..9f082ee6b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--countries--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--countries--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--countries--light-desktop.png new file mode 100644 index 000000000..1748848d3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--countries--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--countries--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--countries--light-mobile.png new file mode 100644 index 000000000..c07ce0682 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--countries--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--countries--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--countries--light-tablet.png new file mode 100644 index 000000000..ea29a6dff Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--countries--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--default--dark-mobile.png new file mode 100644 index 000000000..885f2a72f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--default--dark-tablet.png new file mode 100644 index 000000000..5042f84fe Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--default--light-desktop.png new file mode 100644 index 000000000..c0348b092 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--default--light-mobile.png new file mode 100644 index 000000000..92037a43f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--default--light-tablet.png new file mode 100644 index 000000000..d4aaf38ca Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--disabled--dark-mobile.png new file mode 100644 index 000000000..009fbc4b5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--disabled--dark-tablet.png new file mode 100644 index 000000000..4eaeae550 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--disabled--light-desktop.png new file mode 100644 index 000000000..605b48431 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--disabled--light-mobile.png new file mode 100644 index 000000000..08a17eb4c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--disabled--light-tablet.png new file mode 100644 index 000000000..722f8061a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--invalid--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--invalid--dark-mobile.png new file mode 100644 index 000000000..35bce6a1e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--invalid--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--invalid--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--invalid--dark-tablet.png new file mode 100644 index 000000000..d4e168f03 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--invalid--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--invalid--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--invalid--light-desktop.png new file mode 100644 index 000000000..f3b3f111b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--invalid--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--invalid--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--invalid--light-mobile.png new file mode 100644 index 000000000..382d9a5eb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--invalid--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--invalid--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--invalid--light-tablet.png new file mode 100644 index 000000000..e0cd741a6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--invalid--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--readonly--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--readonly--dark-mobile.png new file mode 100644 index 000000000..e24b97446 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--readonly--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--readonly--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--readonly--dark-tablet.png new file mode 100644 index 000000000..eeaef2ee8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--readonly--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--readonly--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--readonly--light-desktop.png new file mode 100644 index 000000000..52c8fe79e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--readonly--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--readonly--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--readonly--light-mobile.png new file mode 100644 index 000000000..7f58dc3d4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--readonly--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--readonly--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--readonly--light-tablet.png new file mode 100644 index 000000000..9c089a3f7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--readonly--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--required--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--required--dark-mobile.png new file mode 100644 index 000000000..748cb792b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--required--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--required--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--required--dark-tablet.png new file mode 100644 index 000000000..00a31f6e6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--required--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--required--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--required--light-desktop.png new file mode 100644 index 000000000..879b9ad3b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--required--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--required--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--required--light-mobile.png new file mode 100644 index 000000000..22da168be Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--required--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--required--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--required--light-tablet.png new file mode 100644 index 000000000..e2f620d2e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldphonenumber--required--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--default--dark-mobile.png new file mode 100644 index 000000000..c74c65b35 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--default--dark-tablet.png new file mode 100644 index 000000000..20ac410d0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--default--light-desktop.png new file mode 100644 index 000000000..df8bd5ccb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--default--light-mobile.png new file mode 100644 index 000000000..c752718c4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--default--light-tablet.png new file mode 100644 index 000000000..61ed7c9d8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--disabled--dark-mobile.png new file mode 100644 index 000000000..291c13c3f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--disabled--dark-tablet.png new file mode 100644 index 000000000..0fad8df21 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--disabled--light-desktop.png new file mode 100644 index 000000000..f043ac782 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--disabled--light-mobile.png new file mode 100644 index 000000000..04842ca7c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--disabled--light-tablet.png new file mode 100644 index 000000000..f043ac782 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradio--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--default--dark-mobile.png new file mode 100644 index 000000000..9da7a2668 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--default--dark-tablet.png new file mode 100644 index 000000000..6eb81a2d8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--default--light-desktop.png new file mode 100644 index 000000000..ba9830982 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--default--light-mobile.png new file mode 100644 index 000000000..8c484b2ab Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--default--light-tablet.png new file mode 100644 index 000000000..ada3e1ec4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--disabled--dark-mobile.png new file mode 100644 index 000000000..f148e56fd Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--disabled--dark-tablet.png new file mode 100644 index 000000000..b3c8bd36e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--disabled--light-desktop.png new file mode 100644 index 000000000..6df33fa99 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--disabled--light-mobile.png new file mode 100644 index 000000000..6d427cf70 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--disabled--light-tablet.png new file mode 100644 index 000000000..3aafd08e0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldradioblock--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--default--dark-mobile.png new file mode 100644 index 000000000..d6e1d2879 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--default--dark-tablet.png new file mode 100644 index 000000000..0d79d8165 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--default--light-desktop.png new file mode 100644 index 000000000..f8b738dd1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--default--light-mobile.png new file mode 100644 index 000000000..748e77b8b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--default--light-tablet.png new file mode 100644 index 000000000..9e58ffca4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--disabled--dark-mobile.png new file mode 100644 index 000000000..333a55942 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--disabled--dark-tablet.png new file mode 100644 index 000000000..ba96c3802 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--disabled--light-desktop.png new file mode 100644 index 000000000..11cfb83e4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--disabled--light-mobile.png new file mode 100644 index 000000000..8f2f51647 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--disabled--light-tablet.png new file mode 100644 index 000000000..11cfb83e4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--required--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--required--dark-mobile.png new file mode 100644 index 000000000..39ab070e3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--required--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--required--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--required--dark-tablet.png new file mode 100644 index 000000000..19e33b1ca Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--required--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--required--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--required--light-desktop.png new file mode 100644 index 000000000..83fd69482 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--required--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--required--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--required--light-mobile.png new file mode 100644 index 000000000..e8476bf02 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--required--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--required--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--required--light-tablet.png new file mode 100644 index 000000000..bcd887e09 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--required--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--states--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--states--dark-mobile.png new file mode 100644 index 000000000..8bc6e1f51 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--states--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--states--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--states--dark-tablet.png new file mode 100644 index 000000000..68bf6c772 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--states--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--states--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--states--light-desktop.png new file mode 100644 index 000000000..2119a941b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--states--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--states--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--states--light-mobile.png new file mode 100644 index 000000000..030941250 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--states--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--states--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--states--light-tablet.png new file mode 100644 index 000000000..2119a941b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitch--states--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--default--dark-mobile.png new file mode 100644 index 000000000..104e4d94c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--default--dark-tablet.png new file mode 100644 index 000000000..b4baadd99 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--default--light-desktop.png new file mode 100644 index 000000000..c8324a53e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--default--light-mobile.png new file mode 100644 index 000000000..66fa50e37 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--default--light-tablet.png new file mode 100644 index 000000000..0c18d3dfd Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--disabled--dark-mobile.png new file mode 100644 index 000000000..e227490e9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--disabled--dark-tablet.png new file mode 100644 index 000000000..d5a0ca22e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--disabled--light-desktop.png new file mode 100644 index 000000000..9ac99b513 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--disabled--light-mobile.png new file mode 100644 index 000000000..8a1b04b9e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--disabled--light-tablet.png new file mode 100644 index 000000000..0f8f53c74 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldswitchblock--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--default--dark-mobile.png new file mode 100644 index 000000000..3ef16a48a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--default--dark-tablet.png new file mode 100644 index 000000000..896bdca38 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--default--light-desktop.png new file mode 100644 index 000000000..cd000e962 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--default--light-mobile.png new file mode 100644 index 000000000..caa852d00 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--default--light-tablet.png new file mode 100644 index 000000000..cd000e962 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--disabled--dark-mobile.png new file mode 100644 index 000000000..c03d657c2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--disabled--dark-tablet.png new file mode 100644 index 000000000..c91c125a2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--disabled--light-desktop.png new file mode 100644 index 000000000..4b3600263 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--disabled--light-mobile.png new file mode 100644 index 000000000..e4faa57d2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--disabled--light-tablet.png new file mode 100644 index 000000000..4b3600263 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--icons--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--icons--dark-mobile.png new file mode 100644 index 000000000..95597765f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--icons--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--icons--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--icons--dark-tablet.png new file mode 100644 index 000000000..dad872c88 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--icons--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--icons--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--icons--light-desktop.png new file mode 100644 index 000000000..708e412c5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--icons--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--icons--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--icons--light-mobile.png new file mode 100644 index 000000000..45e053aa6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--icons--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--icons--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--icons--light-tablet.png new file mode 100644 index 000000000..708e412c5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--icons--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--invalid--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--invalid--dark-mobile.png new file mode 100644 index 000000000..386e14414 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--invalid--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--invalid--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--invalid--dark-tablet.png new file mode 100644 index 000000000..c6072bfb7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--invalid--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--invalid--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--invalid--light-desktop.png new file mode 100644 index 000000000..0ac48d531 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--invalid--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--invalid--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--invalid--light-mobile.png new file mode 100644 index 000000000..e05b0860a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--invalid--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--invalid--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--invalid--light-tablet.png new file mode 100644 index 000000000..0ac48d531 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--invalid--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--required--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--required--dark-mobile.png new file mode 100644 index 000000000..3821365e5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--required--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--required--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--required--dark-tablet.png new file mode 100644 index 000000000..70c2157df Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--required--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--required--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--required--light-desktop.png new file mode 100644 index 000000000..1e896ab30 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--required--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--required--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--required--light-mobile.png new file mode 100644 index 000000000..98404cf0e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--required--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--required--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--required--light-tablet.png new file mode 100644 index 000000000..1e896ab30 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--required--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--sizes--dark-mobile.png new file mode 100644 index 000000000..69ef15c7a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--sizes--dark-tablet.png new file mode 100644 index 000000000..522e1e283 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--sizes--light-desktop.png new file mode 100644 index 000000000..cb85ab9a0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--sizes--light-mobile.png new file mode 100644 index 000000000..5181fc3ac Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--sizes--light-tablet.png new file mode 100644 index 000000000..cb85ab9a0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtext--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--default--dark-mobile.png new file mode 100644 index 000000000..69bc876f2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--default--dark-tablet.png new file mode 100644 index 000000000..fe9ea9a13 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--default--light-desktop.png new file mode 100644 index 000000000..9bf93e227 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--default--light-mobile.png new file mode 100644 index 000000000..3d8e6e0d3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--default--light-tablet.png new file mode 100644 index 000000000..9bf93e227 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--disabled--dark-mobile.png new file mode 100644 index 000000000..4e59ee391 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--disabled--dark-tablet.png new file mode 100644 index 000000000..97c7a46ad Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--disabled--light-desktop.png new file mode 100644 index 000000000..60fc81730 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--disabled--light-mobile.png new file mode 100644 index 000000000..9ce0ce6ff Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--disabled--light-tablet.png new file mode 100644 index 000000000..60fc81730 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--invalid--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--invalid--dark-mobile.png new file mode 100644 index 000000000..8831188bc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--invalid--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--invalid--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--invalid--dark-tablet.png new file mode 100644 index 000000000..7cbfd018e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--invalid--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--invalid--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--invalid--light-desktop.png new file mode 100644 index 000000000..472555813 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--invalid--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--invalid--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--invalid--light-mobile.png new file mode 100644 index 000000000..9fa4af9e3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--invalid--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--invalid--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--invalid--light-tablet.png new file mode 100644 index 000000000..472555813 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--invalid--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--required--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--required--dark-mobile.png new file mode 100644 index 000000000..944da167d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--required--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--required--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--required--dark-tablet.png new file mode 100644 index 000000000..ddabfe88f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--required--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--required--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--required--light-desktop.png new file mode 100644 index 000000000..88de253c5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--required--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--required--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--required--light-mobile.png new file mode 100644 index 000000000..d139e8e10 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--required--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--required--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--required--light-tablet.png new file mode 100644 index 000000000..88de253c5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextarea--required--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--default--dark-mobile.png new file mode 100644 index 000000000..544a23920 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--default--dark-tablet.png new file mode 100644 index 000000000..7115e6a63 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--default--light-desktop.png new file mode 100644 index 000000000..4e1a92388 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--default--light-mobile.png new file mode 100644 index 000000000..110ccc7c7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--default--light-tablet.png new file mode 100644 index 000000000..a0961e739 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--disabled--dark-mobile.png new file mode 100644 index 000000000..b07d4803a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--disabled--dark-tablet.png new file mode 100644 index 000000000..cb2006542 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--disabled--light-desktop.png new file mode 100644 index 000000000..419a0ef4f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--disabled--light-mobile.png new file mode 100644 index 000000000..7cbca9639 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--disabled--light-tablet.png new file mode 100644 index 000000000..66967e370 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--invalid--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--invalid--dark-mobile.png new file mode 100644 index 000000000..0207f3fdf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--invalid--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--invalid--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--invalid--dark-tablet.png new file mode 100644 index 000000000..c179dec16 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--invalid--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--invalid--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--invalid--light-desktop.png new file mode 100644 index 000000000..6a67aa7dc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--invalid--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--invalid--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--invalid--light-mobile.png new file mode 100644 index 000000000..59953d1e4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--invalid--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--invalid--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--invalid--light-tablet.png new file mode 100644 index 000000000..e6d9a41f9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--invalid--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--required--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--required--dark-mobile.png new file mode 100644 index 000000000..8c9cfbd2b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--required--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--required--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--required--dark-tablet.png new file mode 100644 index 000000000..f40c31909 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--required--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--required--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--required--light-desktop.png new file mode 100644 index 000000000..8bbd1e684 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--required--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--required--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--required--light-mobile.png new file mode 100644 index 000000000..af7b22705 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--required--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--required--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--required--light-tablet.png new file mode 100644 index 000000000..2e1ed6080 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--required--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--switch-off--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--switch-off--dark-mobile.png new file mode 100644 index 000000000..0e1d2e4b0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--switch-off--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--switch-off--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--switch-off--dark-tablet.png new file mode 100644 index 000000000..71ed632f2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--switch-off--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--switch-off--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--switch-off--light-desktop.png new file mode 100644 index 000000000..fcf35fa07 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--switch-off--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--switch-off--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--switch-off--light-mobile.png new file mode 100644 index 000000000..23f2fee81 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--switch-off--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--switch-off--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--switch-off--light-tablet.png new file mode 100644 index 000000000..abc633eaf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-fieldtextswitch--switch-off--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--default--dark-mobile.png new file mode 100644 index 000000000..a95da594f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--default--dark-tablet.png new file mode 100644 index 000000000..fbcfaff90 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--default--light-desktop.png new file mode 100644 index 000000000..00b93c6f6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--default--light-mobile.png new file mode 100644 index 000000000..1e2be4ee9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--default--light-tablet.png new file mode 100644 index 000000000..00b93c6f6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--types--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--types--dark-mobile.png new file mode 100644 index 000000000..720e0b0f5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--types--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--types--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--types--dark-tablet.png new file mode 100644 index 000000000..cbd56edbb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--types--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--types--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--types--light-desktop.png new file mode 100644 index 000000000..0f0b1b9d3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--types--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--types--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--types--light-mobile.png new file mode 100644 index 000000000..91472cd08 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--types--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--types--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--types--light-tablet.png new file mode 100644 index 000000000..0f0b1b9d3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-helpertext--types--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--both-addons--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--both-addons--dark-mobile.png new file mode 100644 index 000000000..1c64fd696 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--both-addons--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--both-addons--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--both-addons--dark-tablet.png new file mode 100644 index 000000000..bc62af2c7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--both-addons--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--both-addons--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--both-addons--light-desktop.png new file mode 100644 index 000000000..9cb90f6b7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--both-addons--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--both-addons--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--both-addons--light-mobile.png new file mode 100644 index 000000000..2a6ce614d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--both-addons--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--both-addons--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--both-addons--light-tablet.png new file mode 100644 index 000000000..db2602114 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--both-addons--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--default--dark-mobile.png new file mode 100644 index 000000000..1b99a2472 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--default--dark-tablet.png new file mode 100644 index 000000000..92ee8b9cb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--default--light-desktop.png new file mode 100644 index 000000000..1d8b11b56 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--default--light-mobile.png new file mode 100644 index 000000000..93f133abb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--default--light-tablet.png new file mode 100644 index 000000000..046752638 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--disabled--dark-mobile.png new file mode 100644 index 000000000..63f82af89 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--disabled--dark-tablet.png new file mode 100644 index 000000000..f4af35bd8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--disabled--light-desktop.png new file mode 100644 index 000000000..0634aa8fe Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--disabled--light-mobile.png new file mode 100644 index 000000000..3eb522f29 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--disabled--light-tablet.png new file mode 100644 index 000000000..e741f2738 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--invalid--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--invalid--dark-mobile.png new file mode 100644 index 000000000..9e4de7820 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--invalid--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--invalid--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--invalid--dark-tablet.png new file mode 100644 index 000000000..681497fed Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--invalid--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--invalid--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--invalid--light-desktop.png new file mode 100644 index 000000000..1cf3624f6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--invalid--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--invalid--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--invalid--light-mobile.png new file mode 100644 index 000000000..9d7212eac Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--invalid--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--invalid--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--invalid--light-tablet.png new file mode 100644 index 000000000..425620d53 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--invalid--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--required--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--required--dark-mobile.png new file mode 100644 index 000000000..106f762f1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--required--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--required--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--required--dark-tablet.png new file mode 100644 index 000000000..424c865af Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--required--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--required--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--required--light-desktop.png new file mode 100644 index 000000000..703c8605e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--required--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--required--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--required--light-mobile.png new file mode 100644 index 000000000..b32d98b6e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--required--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--required--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--required--light-tablet.png new file mode 100644 index 000000000..86c8742cc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--required--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-left--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-left--dark-mobile.png new file mode 100644 index 000000000..b42d71a1e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-left--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-left--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-left--dark-tablet.png new file mode 100644 index 000000000..0f0444400 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-left--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-left--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-left--light-desktop.png new file mode 100644 index 000000000..c9fc58ee8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-left--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-left--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-left--light-mobile.png new file mode 100644 index 000000000..2397fe8cf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-left--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-left--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-left--light-tablet.png new file mode 100644 index 000000000..34517a15e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-left--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-right--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-right--dark-mobile.png new file mode 100644 index 000000000..2552e5e76 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-right--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-right--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-right--dark-tablet.png new file mode 100644 index 000000000..9f064b11e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-right--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-right--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-right--light-desktop.png new file mode 100644 index 000000000..6ac424402 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-right--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-right--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-right--light-mobile.png new file mode 100644 index 000000000..e820f047d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-right--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-right--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-right--light-tablet.png new file mode 100644 index 000000000..2007a9d6b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-addon-right--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-all--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-all--dark-mobile.png new file mode 100644 index 000000000..070e7d94e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-all--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-all--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-all--dark-tablet.png new file mode 100644 index 000000000..f17638ae5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-all--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-all--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-all--light-desktop.png new file mode 100644 index 000000000..1b57f5daa Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-all--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-all--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-all--light-mobile.png new file mode 100644 index 000000000..6fda79f44 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-all--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-all--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-all--light-tablet.png new file mode 100644 index 000000000..d3586ba06 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-all--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-button--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-button--dark-mobile.png new file mode 100644 index 000000000..0dbce1736 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-button--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-button--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-button--dark-tablet.png new file mode 100644 index 000000000..e4437bae3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-button--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-button--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-button--light-desktop.png new file mode 100644 index 000000000..8fb32fc37 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-button--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-button--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-button--light-mobile.png new file mode 100644 index 000000000..7649d0bd6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-button--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-button--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-button--light-tablet.png new file mode 100644 index 000000000..f936f2e4d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-button--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-select--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-select--dark-mobile.png new file mode 100644 index 000000000..fa6cd4a0e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-select--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-select--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-select--dark-tablet.png new file mode 100644 index 000000000..2e6423c85 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-select--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-select--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-select--light-desktop.png new file mode 100644 index 000000000..e73bf2c07 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-select--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-select--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-select--light-mobile.png new file mode 100644 index 000000000..4e42792de Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-select--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-select--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-select--light-tablet.png new file mode 100644 index 000000000..43d349533 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputgroup--with-select--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--default--dark-mobile.png new file mode 100644 index 000000000..4478007f3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--default--dark-tablet.png new file mode 100644 index 000000000..edaf19ee8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--default--light-desktop.png new file mode 100644 index 000000000..264323b5a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--default--light-mobile.png new file mode 100644 index 000000000..26a7648b0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--default--light-tablet.png new file mode 100644 index 000000000..264323b5a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--disabled--dark-mobile.png new file mode 100644 index 000000000..b5b34f324 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--disabled--dark-tablet.png new file mode 100644 index 000000000..333b07574 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--disabled--light-desktop.png new file mode 100644 index 000000000..1a80d7f92 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--disabled--light-mobile.png new file mode 100644 index 000000000..855921491 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--disabled--light-tablet.png new file mode 100644 index 000000000..1a80d7f92 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--invalid--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--invalid--dark-mobile.png new file mode 100644 index 000000000..c64996287 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--invalid--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--invalid--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--invalid--dark-tablet.png new file mode 100644 index 000000000..687b488c5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--invalid--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--invalid--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--invalid--light-desktop.png new file mode 100644 index 000000000..13a952e0f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--invalid--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--invalid--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--invalid--light-mobile.png new file mode 100644 index 000000000..65298d12c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--invalid--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--invalid--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--invalid--light-tablet.png new file mode 100644 index 000000000..13a952e0f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--invalid--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--sizes--dark-mobile.png new file mode 100644 index 000000000..4cc045dd7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--sizes--dark-tablet.png new file mode 100644 index 000000000..641abdbc9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--sizes--light-desktop.png new file mode 100644 index 000000000..943bbc5e4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--sizes--light-mobile.png new file mode 100644 index 000000000..8ccee9a56 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--sizes--light-tablet.png new file mode 100644 index 000000000..943bbc5e4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputnumber--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--default--dark-mobile.png new file mode 100644 index 000000000..a0a633b7f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--default--dark-tablet.png new file mode 100644 index 000000000..68e2be224 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--default--light-desktop.png new file mode 100644 index 000000000..b56cdd514 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--default--light-mobile.png new file mode 100644 index 000000000..e5001f886 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--default--light-tablet.png new file mode 100644 index 000000000..b56cdd514 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--disabled--dark-mobile.png new file mode 100644 index 000000000..e951f843c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--disabled--dark-tablet.png new file mode 100644 index 000000000..10a95e0a7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--disabled--light-desktop.png new file mode 100644 index 000000000..f7e74e6cb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--disabled--light-mobile.png new file mode 100644 index 000000000..143f8ac6d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--disabled--light-tablet.png new file mode 100644 index 000000000..f7e74e6cb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--filled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--filled--dark-mobile.png new file mode 100644 index 000000000..8f19ef2e7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--filled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--filled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--filled--dark-tablet.png new file mode 100644 index 000000000..860e4c9da Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--filled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--filled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--filled--light-desktop.png new file mode 100644 index 000000000..94299c3d1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--filled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--filled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--filled--light-mobile.png new file mode 100644 index 000000000..51c526fb4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--filled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--filled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--filled--light-tablet.png new file mode 100644 index 000000000..94299c3d1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--filled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--icon-left--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--icon-left--dark-mobile.png new file mode 100644 index 000000000..ce94f81b2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--icon-left--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--icon-left--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--icon-left--dark-tablet.png new file mode 100644 index 000000000..d667a22fe Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--icon-left--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--icon-left--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--icon-left--light-desktop.png new file mode 100644 index 000000000..c1a0202e9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--icon-left--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--icon-left--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--icon-left--light-mobile.png new file mode 100644 index 000000000..f521fb214 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--icon-left--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--icon-left--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--icon-left--light-tablet.png new file mode 100644 index 000000000..c1a0202e9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--icon-left--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--invalid--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--invalid--dark-mobile.png new file mode 100644 index 000000000..d15bc1471 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--invalid--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--invalid--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--invalid--dark-tablet.png new file mode 100644 index 000000000..68b14bc52 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--invalid--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--invalid--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--invalid--light-desktop.png new file mode 100644 index 000000000..3d37bd83b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--invalid--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--invalid--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--invalid--light-mobile.png new file mode 100644 index 000000000..670fc618a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--invalid--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--invalid--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--invalid--light-tablet.png new file mode 100644 index 000000000..3d37bd83b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--invalid--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--max-length--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--max-length--dark-mobile.png new file mode 100644 index 000000000..b8e17d784 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--max-length--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--max-length--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--max-length--dark-tablet.png new file mode 100644 index 000000000..fba1be594 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--max-length--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--max-length--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--max-length--light-desktop.png new file mode 100644 index 000000000..bcacef79e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--max-length--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--max-length--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--max-length--light-mobile.png new file mode 100644 index 000000000..8ffb99a51 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--max-length--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--max-length--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--max-length--light-tablet.png new file mode 100644 index 000000000..bcacef79e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--max-length--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--toggle--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--toggle--dark-mobile.png new file mode 100644 index 000000000..1a4b04dd9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--toggle--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--toggle--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--toggle--dark-tablet.png new file mode 100644 index 000000000..dc49de811 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--toggle--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--toggle--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--toggle--light-desktop.png new file mode 100644 index 000000000..b718ad0bb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--toggle--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--toggle--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--toggle--light-mobile.png new file mode 100644 index 000000000..f3b68087a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--toggle--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--toggle--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--toggle--light-tablet.png new file mode 100644 index 000000000..b718ad0bb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputpassword--toggle--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--default--dark-mobile.png new file mode 100644 index 000000000..04560b000 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--default--dark-tablet.png new file mode 100644 index 000000000..fe1ca5250 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--default--light-desktop.png new file mode 100644 index 000000000..b015439af Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--default--light-mobile.png new file mode 100644 index 000000000..1f293be96 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--default--light-tablet.png new file mode 100644 index 000000000..b015439af Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--disabled--dark-mobile.png new file mode 100644 index 000000000..1d312e2bb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--disabled--dark-tablet.png new file mode 100644 index 000000000..dbb4597f1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--disabled--light-desktop.png new file mode 100644 index 000000000..648166746 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--disabled--light-mobile.png new file mode 100644 index 000000000..e46698f7b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--disabled--light-tablet.png new file mode 100644 index 000000000..648166746 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--email--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--email--dark-mobile.png new file mode 100644 index 000000000..571bcd477 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--email--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--email--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--email--dark-tablet.png new file mode 100644 index 000000000..d1ce97b92 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--email--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--email--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--email--light-desktop.png new file mode 100644 index 000000000..4c5f951e3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--email--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--email--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--email--light-mobile.png new file mode 100644 index 000000000..78717b8e5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--email--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--email--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--email--light-tablet.png new file mode 100644 index 000000000..4c5f951e3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--email--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--filled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--filled--dark-mobile.png new file mode 100644 index 000000000..ffad36e3a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--filled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--filled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--filled--dark-tablet.png new file mode 100644 index 000000000..fa3feac22 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--filled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--filled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--filled--light-desktop.png new file mode 100644 index 000000000..21c576de8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--filled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--filled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--filled--light-mobile.png new file mode 100644 index 000000000..b9bc504f0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--filled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--filled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--filled--light-tablet.png new file mode 100644 index 000000000..21c576de8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--filled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--icons--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--icons--dark-mobile.png new file mode 100644 index 000000000..c01ea4083 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--icons--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--icons--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--icons--dark-tablet.png new file mode 100644 index 000000000..7c1544011 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--icons--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--icons--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--icons--light-desktop.png new file mode 100644 index 000000000..9842dc996 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--icons--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--icons--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--icons--light-mobile.png new file mode 100644 index 000000000..8916ed858 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--icons--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--icons--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--icons--light-tablet.png new file mode 100644 index 000000000..9842dc996 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--icons--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--invalid--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--invalid--dark-mobile.png new file mode 100644 index 000000000..29ca3969d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--invalid--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--invalid--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--invalid--dark-tablet.png new file mode 100644 index 000000000..0d8fa7c62 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--invalid--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--invalid--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--invalid--light-desktop.png new file mode 100644 index 000000000..3f12f7d38 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--invalid--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--invalid--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--invalid--light-mobile.png new file mode 100644 index 000000000..8230fbe3a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--invalid--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--invalid--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--invalid--light-tablet.png new file mode 100644 index 000000000..3f12f7d38 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--invalid--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--max-length--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--max-length--dark-mobile.png new file mode 100644 index 000000000..1697e0bcf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--max-length--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--max-length--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--max-length--dark-tablet.png new file mode 100644 index 000000000..ca1e0d6a8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--max-length--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--max-length--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--max-length--light-desktop.png new file mode 100644 index 000000000..b1288a8d0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--max-length--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--max-length--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--max-length--light-mobile.png new file mode 100644 index 000000000..2ed46e9ec Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--max-length--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--max-length--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--max-length--light-tablet.png new file mode 100644 index 000000000..b1288a8d0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--max-length--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--sizes--dark-mobile.png new file mode 100644 index 000000000..e79caa1e5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--sizes--dark-tablet.png new file mode 100644 index 000000000..6d91bf841 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--sizes--light-desktop.png new file mode 100644 index 000000000..ce1619e88 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--sizes--light-mobile.png new file mode 100644 index 000000000..3fc2127fe Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--sizes--light-tablet.png new file mode 100644 index 000000000..ce1619e88 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-inputtext--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--default--dark-mobile.png new file mode 100644 index 000000000..319946189 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--default--dark-tablet.png new file mode 100644 index 000000000..31c0481b9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--default--light-desktop.png new file mode 100644 index 000000000..75bc3b62b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--default--light-mobile.png new file mode 100644 index 000000000..7542d9c0b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--default--light-tablet.png new file mode 100644 index 000000000..75bc3b62b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--required--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--required--dark-mobile.png new file mode 100644 index 000000000..10b8abfa1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--required--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--required--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--required--dark-tablet.png new file mode 100644 index 000000000..cd0e643ac Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--required--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--required--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--required--light-desktop.png new file mode 100644 index 000000000..42fe6727b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--required--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--required--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--required--light-mobile.png new file mode 100644 index 000000000..31df3ab4c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--required--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--required--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--required--light-tablet.png new file mode 100644 index 000000000..42fe6727b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-label--required--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--default--dark-mobile.png new file mode 100644 index 000000000..7083a54c6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--default--dark-tablet.png new file mode 100644 index 000000000..72c30994e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--default--light-desktop.png new file mode 100644 index 000000000..1a9f2486f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--default--light-mobile.png new file mode 100644 index 000000000..ee7b84777 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--default--light-tablet.png new file mode 100644 index 000000000..1a9f2486f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--disabled--dark-mobile.png new file mode 100644 index 000000000..5a3274fc6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--disabled--dark-tablet.png new file mode 100644 index 000000000..15c243f70 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--disabled--light-desktop.png new file mode 100644 index 000000000..dfac13e35 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--disabled--light-mobile.png new file mode 100644 index 000000000..645434d47 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--disabled--light-tablet.png new file mode 100644 index 000000000..dfac13e35 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--filled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--filled--dark-mobile.png new file mode 100644 index 000000000..16ad8dcd7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--filled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--filled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--filled--dark-tablet.png new file mode 100644 index 000000000..97a035394 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--filled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--filled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--filled--light-desktop.png new file mode 100644 index 000000000..aa2efed2b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--filled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--filled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--filled--light-mobile.png new file mode 100644 index 000000000..33719260f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--filled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--filled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--filled--light-tablet.png new file mode 100644 index 000000000..aa2efed2b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--filled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--invalid--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--invalid--dark-mobile.png new file mode 100644 index 000000000..bf445bb01 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--invalid--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--invalid--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--invalid--dark-tablet.png new file mode 100644 index 000000000..df7d442d3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--invalid--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--invalid--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--invalid--light-desktop.png new file mode 100644 index 000000000..1927ad3b9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--invalid--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--invalid--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--invalid--light-mobile.png new file mode 100644 index 000000000..b88b55aa5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--invalid--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--invalid--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--invalid--light-tablet.png new file mode 100644 index 000000000..1927ad3b9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--invalid--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--long-list--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--long-list--dark-mobile.png new file mode 100644 index 000000000..2ab009d90 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--long-list--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--long-list--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--long-list--dark-tablet.png new file mode 100644 index 000000000..bf5846a41 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--long-list--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--long-list--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--long-list--light-desktop.png new file mode 100644 index 000000000..ad0f9b44d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--long-list--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--long-list--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--long-list--light-mobile.png new file mode 100644 index 000000000..6889fbb88 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--long-list--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--long-list--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--long-list--light-tablet.png new file mode 100644 index 000000000..ad0f9b44d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--long-list--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--sizes--dark-mobile.png new file mode 100644 index 000000000..9b3a8a0de Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--sizes--dark-tablet.png new file mode 100644 index 000000000..46189f53e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--sizes--light-desktop.png new file mode 100644 index 000000000..ab56f7f77 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--sizes--light-mobile.png new file mode 100644 index 000000000..a2af4a33a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--sizes--light-tablet.png new file mode 100644 index 000000000..ab56f7f77 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-groups--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-groups--dark-mobile.png new file mode 100644 index 000000000..05935cccc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-groups--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-groups--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-groups--dark-tablet.png new file mode 100644 index 000000000..b6e2f7a5f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-groups--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-groups--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-groups--light-desktop.png new file mode 100644 index 000000000..aa2d80283 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-groups--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-groups--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-groups--light-mobile.png new file mode 100644 index 000000000..1da7e8cae Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-groups--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-groups--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-groups--light-tablet.png new file mode 100644 index 000000000..aa2d80283 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-groups--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-option-extras--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-option-extras--dark-mobile.png new file mode 100644 index 000000000..05935cccc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-option-extras--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-option-extras--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-option-extras--dark-tablet.png new file mode 100644 index 000000000..b6e2f7a5f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-option-extras--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-option-extras--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-option-extras--light-desktop.png new file mode 100644 index 000000000..aa2d80283 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-option-extras--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-option-extras--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-option-extras--light-mobile.png new file mode 100644 index 000000000..1da7e8cae Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-option-extras--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-option-extras--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-option-extras--light-tablet.png new file mode 100644 index 000000000..aa2d80283 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-option-extras--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-search-and-footer--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-search-and-footer--dark-mobile.png new file mode 100644 index 000000000..05935cccc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-search-and-footer--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-search-and-footer--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-search-and-footer--dark-tablet.png new file mode 100644 index 000000000..b6e2f7a5f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-search-and-footer--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-search-and-footer--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-search-and-footer--light-desktop.png new file mode 100644 index 000000000..aa2d80283 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-search-and-footer--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-search-and-footer--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-search-and-footer--light-mobile.png new file mode 100644 index 000000000..1da7e8cae Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-search-and-footer--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-search-and-footer--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-search-and-footer--light-tablet.png new file mode 100644 index 000000000..aa2d80283 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-multiselect--with-search-and-footer--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--default--dark-mobile.png new file mode 100644 index 000000000..627f617b6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--default--dark-tablet.png new file mode 100644 index 000000000..79067269b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--default--light-desktop.png new file mode 100644 index 000000000..8d989647a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--default--light-mobile.png new file mode 100644 index 000000000..b2c1a7cd6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--default--light-tablet.png new file mode 100644 index 000000000..8d989647a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--disabled--dark-mobile.png new file mode 100644 index 000000000..fa8ab3fad Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--disabled--dark-tablet.png new file mode 100644 index 000000000..7f10d6b6c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--disabled--light-desktop.png new file mode 100644 index 000000000..8b345b5e4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--disabled--light-mobile.png new file mode 100644 index 000000000..fb2705796 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--disabled--light-tablet.png new file mode 100644 index 000000000..7dd527323 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-radiobutton--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--default--dark-mobile.png new file mode 100644 index 000000000..beb237c13 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--default--dark-tablet.png new file mode 100644 index 000000000..0e807cff2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--default--light-desktop.png new file mode 100644 index 000000000..aa02c971e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--default--light-mobile.png new file mode 100644 index 000000000..2872d4001 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--default--light-tablet.png new file mode 100644 index 000000000..aa02c971e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--disabled--dark-mobile.png new file mode 100644 index 000000000..2e6fbee86 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--disabled--dark-tablet.png new file mode 100644 index 000000000..7411ca70e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--disabled--light-desktop.png new file mode 100644 index 000000000..a4f9b7a27 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--disabled--light-mobile.png new file mode 100644 index 000000000..b1a94b97d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--disabled--light-tablet.png new file mode 100644 index 000000000..a4f9b7a27 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--filled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--filled--dark-mobile.png new file mode 100644 index 000000000..7083a54c6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--filled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--filled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--filled--dark-tablet.png new file mode 100644 index 000000000..72c30994e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--filled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--filled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--filled--light-desktop.png new file mode 100644 index 000000000..1a9f2486f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--filled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--filled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--filled--light-mobile.png new file mode 100644 index 000000000..ee7b84777 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--filled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--filled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--filled--light-tablet.png new file mode 100644 index 000000000..1a9f2486f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--filled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--invalid--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--invalid--dark-mobile.png new file mode 100644 index 000000000..4c84a90ce Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--invalid--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--invalid--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--invalid--dark-tablet.png new file mode 100644 index 000000000..e5fe117ce Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--invalid--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--invalid--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--invalid--light-desktop.png new file mode 100644 index 000000000..093800b83 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--invalid--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--invalid--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--invalid--light-mobile.png new file mode 100644 index 000000000..e59ad73fc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--invalid--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--invalid--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--invalid--light-tablet.png new file mode 100644 index 000000000..093800b83 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--invalid--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--long-list--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--long-list--dark-mobile.png new file mode 100644 index 000000000..678175c01 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--long-list--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--long-list--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--long-list--dark-tablet.png new file mode 100644 index 000000000..29be8e566 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--long-list--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--long-list--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--long-list--light-desktop.png new file mode 100644 index 000000000..064052129 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--long-list--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--long-list--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--long-list--light-mobile.png new file mode 100644 index 000000000..d8f1a7171 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--long-list--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--long-list--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--long-list--light-tablet.png new file mode 100644 index 000000000..064052129 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--long-list--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--multiple--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--multiple--dark-mobile.png new file mode 100644 index 000000000..b298577c5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--multiple--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--multiple--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--multiple--dark-tablet.png new file mode 100644 index 000000000..ca2a0fd59 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--multiple--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--multiple--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--multiple--light-desktop.png new file mode 100644 index 000000000..021788f51 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--multiple--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--multiple--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--multiple--light-mobile.png new file mode 100644 index 000000000..18bfd9251 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--multiple--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--multiple--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--multiple--light-tablet.png new file mode 100644 index 000000000..021788f51 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--multiple--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--sizes--dark-mobile.png new file mode 100644 index 000000000..9b3a8a0de Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--sizes--dark-tablet.png new file mode 100644 index 000000000..46189f53e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--sizes--light-desktop.png new file mode 100644 index 000000000..ab56f7f77 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--sizes--light-mobile.png new file mode 100644 index 000000000..a2af4a33a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--sizes--light-tablet.png new file mode 100644 index 000000000..ab56f7f77 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-groups--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-groups--dark-mobile.png new file mode 100644 index 000000000..b298577c5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-groups--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-groups--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-groups--dark-tablet.png new file mode 100644 index 000000000..ca2a0fd59 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-groups--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-groups--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-groups--light-desktop.png new file mode 100644 index 000000000..021788f51 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-groups--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-groups--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-groups--light-mobile.png new file mode 100644 index 000000000..18bfd9251 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-groups--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-groups--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-groups--light-tablet.png new file mode 100644 index 000000000..021788f51 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-groups--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-option-extras--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-option-extras--dark-mobile.png new file mode 100644 index 000000000..b298577c5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-option-extras--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-option-extras--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-option-extras--dark-tablet.png new file mode 100644 index 000000000..ca2a0fd59 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-option-extras--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-option-extras--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-option-extras--light-desktop.png new file mode 100644 index 000000000..021788f51 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-option-extras--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-option-extras--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-option-extras--light-mobile.png new file mode 100644 index 000000000..18bfd9251 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-option-extras--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-option-extras--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-option-extras--light-tablet.png new file mode 100644 index 000000000..021788f51 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-option-extras--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-search-and-footer--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-search-and-footer--dark-mobile.png new file mode 100644 index 000000000..b298577c5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-search-and-footer--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-search-and-footer--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-search-and-footer--dark-tablet.png new file mode 100644 index 000000000..ca2a0fd59 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-search-and-footer--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-search-and-footer--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-search-and-footer--light-desktop.png new file mode 100644 index 000000000..021788f51 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-search-and-footer--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-search-and-footer--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-search-and-footer--light-mobile.png new file mode 100644 index 000000000..18bfd9251 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-search-and-footer--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-search-and-footer--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-search-and-footer--light-tablet.png new file mode 100644 index 000000000..021788f51 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-select--with-search-and-footer--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--default--dark-mobile.png new file mode 100644 index 000000000..db1e4ada2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--default--dark-tablet.png new file mode 100644 index 000000000..b5bd3c9a4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--default--light-desktop.png new file mode 100644 index 000000000..1c808f133 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--default--light-mobile.png new file mode 100644 index 000000000..849e81e15 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--default--light-tablet.png new file mode 100644 index 000000000..8cdf1d1ff Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--types--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--types--dark-mobile.png new file mode 100644 index 000000000..c3ce548da Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--types--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--types--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--types--dark-tablet.png new file mode 100644 index 000000000..20efc00ba Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--types--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--types--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--types--light-desktop.png new file mode 100644 index 000000000..57fbc7a63 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--types--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--types--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--types--light-mobile.png new file mode 100644 index 000000000..8a71956e3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--types--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--types--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--types--light-tablet.png new file mode 100644 index 000000000..b9cf4dd69 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-switch--types--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--default--dark-mobile.png new file mode 100644 index 000000000..9e93c7f64 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--default--dark-tablet.png new file mode 100644 index 000000000..b03bd44ab Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--default--light-desktop.png new file mode 100644 index 000000000..e46a165ab Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--default--light-mobile.png new file mode 100644 index 000000000..b608cb507 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--default--light-tablet.png new file mode 100644 index 000000000..8ccdfdaaf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--disabled--dark-mobile.png new file mode 100644 index 000000000..1391055b8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--disabled--dark-tablet.png new file mode 100644 index 000000000..7a9b349d9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--disabled--light-desktop.png new file mode 100644 index 000000000..fd70980b2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--disabled--light-mobile.png new file mode 100644 index 000000000..ce15d44c5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--disabled--light-tablet.png new file mode 100644 index 000000000..699d8a605 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--invalid--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--invalid--dark-mobile.png new file mode 100644 index 000000000..d2405735c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--invalid--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--invalid--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--invalid--dark-tablet.png new file mode 100644 index 000000000..8783be515 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--invalid--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--invalid--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--invalid--light-desktop.png new file mode 100644 index 000000000..b2ab06a28 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--invalid--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--invalid--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--invalid--light-mobile.png new file mode 100644 index 000000000..42d9fdce9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--invalid--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--invalid--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--invalid--light-tablet.png new file mode 100644 index 000000000..b9dbf0e96 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--invalid--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--required--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--required--dark-mobile.png new file mode 100644 index 000000000..be6639d50 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--required--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--required--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--required--dark-tablet.png new file mode 100644 index 000000000..363fcf736 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--required--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--required--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--required--light-desktop.png new file mode 100644 index 000000000..67adf8006 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--required--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--required--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--required--light-mobile.png new file mode 100644 index 000000000..952dde23a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--required--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--required--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--required--light-tablet.png new file mode 100644 index 000000000..5bb9f810e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--required--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--resizable--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--resizable--dark-mobile.png new file mode 100644 index 000000000..9ef322996 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--resizable--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--resizable--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--resizable--dark-tablet.png new file mode 100644 index 000000000..d4f0381ac Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--resizable--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--resizable--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--resizable--light-desktop.png new file mode 100644 index 000000000..0441a37a2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--resizable--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--resizable--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--resizable--light-mobile.png new file mode 100644 index 000000000..809355ae1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--resizable--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--resizable--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--resizable--light-tablet.png new file mode 100644 index 000000000..8f09e9946 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-textarea--resizable--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--default--dark-mobile.png new file mode 100644 index 000000000..f0c92af9a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--default--dark-tablet.png new file mode 100644 index 000000000..0119f4c63 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--default--light-desktop.png new file mode 100644 index 000000000..8f9b10aad Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--default--light-mobile.png new file mode 100644 index 000000000..9c9cdd316 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--default--light-tablet.png new file mode 100644 index 000000000..f3c2b03fb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--disabled--dark-mobile.png new file mode 100644 index 000000000..2417c70c7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--disabled--dark-tablet.png new file mode 100644 index 000000000..4fa0fea6f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--disabled--light-desktop.png new file mode 100644 index 000000000..9ba1721d2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--disabled--light-mobile.png new file mode 100644 index 000000000..f8e351110 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--disabled--light-tablet.png new file mode 100644 index 000000000..ea4e435f0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-inputs-themeswitcher--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--default--dark-mobile.png new file mode 100644 index 000000000..c66f08f91 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--default--dark-tablet.png new file mode 100644 index 000000000..7661a5fe5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--default--light-desktop.png new file mode 100644 index 000000000..952bd2b21 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--default--light-mobile.png new file mode 100644 index 000000000..64104fd79 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--default--light-tablet.png new file mode 100644 index 000000000..952bd2b21 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--orientations--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--orientations--dark-mobile.png new file mode 100644 index 000000000..dd5a00d26 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--orientations--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--orientations--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--orientations--dark-tablet.png new file mode 100644 index 000000000..193f49d6b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--orientations--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--orientations--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--orientations--light-desktop.png new file mode 100644 index 000000000..93d2b8178 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--orientations--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--orientations--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--orientations--light-mobile.png new file mode 100644 index 000000000..34bd69dd9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--orientations--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--orientations--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--orientations--light-tablet.png new file mode 100644 index 000000000..93d2b8178 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--orientations--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--with-label--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--with-label--dark-mobile.png new file mode 100644 index 000000000..294b52243 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--with-label--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--with-label--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--with-label--dark-tablet.png new file mode 100644 index 000000000..2f01791cb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--with-label--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--with-label--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--with-label--light-desktop.png new file mode 100644 index 000000000..3f82f4aa3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--with-label--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--with-label--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--with-label--light-mobile.png new file mode 100644 index 000000000..be86cf1a1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--with-label--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--with-label--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--with-label--light-tablet.png new file mode 100644 index 000000000..3f82f4aa3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-divider--with-label--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-globalheader--default-header--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-globalheader--default-header--dark-mobile.png new file mode 100644 index 000000000..cf85419c1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-globalheader--default-header--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-globalheader--default-header--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-globalheader--default-header--dark-tablet.png new file mode 100644 index 000000000..966cf86ea Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-globalheader--default-header--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-globalheader--default-header--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-globalheader--default-header--light-desktop.png new file mode 100644 index 000000000..72dea425f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-globalheader--default-header--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-globalheader--default-header--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-globalheader--default-header--light-mobile.png new file mode 100644 index 000000000..b6066b380 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-globalheader--default-header--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-globalheader--default-header--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-globalheader--default-header--light-tablet.png new file mode 100644 index 000000000..e6d93c9b7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-globalheader--default-header--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--default--dark-mobile.png new file mode 100644 index 000000000..de595920e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--default--dark-tablet.png new file mode 100644 index 000000000..cd084adfa Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--default--light-desktop.png new file mode 100644 index 000000000..e81d5fcf8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--default--light-mobile.png new file mode 100644 index 000000000..8755563e0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--default--light-tablet.png new file mode 100644 index 000000000..e81d5fcf8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--orientations--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--orientations--dark-mobile.png new file mode 100644 index 000000000..296d7f4f9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--orientations--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--orientations--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--orientations--dark-tablet.png new file mode 100644 index 000000000..ae448c980 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--orientations--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--orientations--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--orientations--light-desktop.png new file mode 100644 index 000000000..fe97a150c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--orientations--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--orientations--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--orientations--light-mobile.png new file mode 100644 index 000000000..983d342b7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--orientations--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--orientations--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--orientations--light-tablet.png new file mode 100644 index 000000000..b42968aed Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-scrollarea--orientations--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--default--dark-mobile.png new file mode 100644 index 000000000..19c056f69 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--default--dark-tablet.png new file mode 100644 index 000000000..26d9caff5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--default--light-desktop.png new file mode 100644 index 000000000..780d22d3d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--default--light-mobile.png new file mode 100644 index 000000000..d266e94bf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--default--light-tablet.png new file mode 100644 index 000000000..e1906968a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-and-profile-footer--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-and-profile-footer--dark-mobile.png new file mode 100644 index 000000000..5be482a14 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-and-profile-footer--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-and-profile-footer--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-and-profile-footer--dark-tablet.png new file mode 100644 index 000000000..fc8f704a4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-and-profile-footer--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-and-profile-footer--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-and-profile-footer--light-desktop.png new file mode 100644 index 000000000..1265509b4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-and-profile-footer--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-and-profile-footer--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-and-profile-footer--light-mobile.png new file mode 100644 index 000000000..d0735a11a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-and-profile-footer--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-and-profile-footer--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-and-profile-footer--light-tablet.png new file mode 100644 index 000000000..6643fda30 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-and-profile-footer--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-search--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-search--dark-mobile.png new file mode 100644 index 000000000..5e7e18686 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-search--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-search--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-search--dark-tablet.png new file mode 100644 index 000000000..03bb3296d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-search--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-search--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-search--light-desktop.png new file mode 100644 index 000000000..3343dd86b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-search--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-search--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-search--light-mobile.png new file mode 100644 index 000000000..225269a80 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-search--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-search--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-search--light-tablet.png new file mode 100644 index 000000000..597cb2853 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-layout-sidebar--with-header-search--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--default--dark-mobile.png new file mode 100644 index 000000000..4ec62ed35 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--default--dark-tablet.png new file mode 100644 index 000000000..7a840255b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--default--light-desktop.png new file mode 100644 index 000000000..7823ab472 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--default--light-mobile.png new file mode 100644 index 000000000..c3b44d935 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--default--light-tablet.png new file mode 100644 index 000000000..c57235fad Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--depths--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--depths--dark-mobile.png new file mode 100644 index 000000000..0880fd46c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--depths--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--depths--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--depths--dark-tablet.png new file mode 100644 index 000000000..001a9aa48 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--depths--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--depths--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--depths--light-desktop.png new file mode 100644 index 000000000..c238d50b2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--depths--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--depths--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--depths--light-mobile.png new file mode 100644 index 000000000..833dc8763 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--depths--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--depths--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--depths--light-tablet.png new file mode 100644 index 000000000..3fac1ebb7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--depths--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--responsive-collapsed--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--responsive-collapsed--dark-mobile.png new file mode 100644 index 000000000..4ec62ed35 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--responsive-collapsed--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--responsive-collapsed--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--responsive-collapsed--dark-tablet.png new file mode 100644 index 000000000..7a840255b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--responsive-collapsed--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--responsive-collapsed--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--responsive-collapsed--light-desktop.png new file mode 100644 index 000000000..7823ab472 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--responsive-collapsed--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--responsive-collapsed--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--responsive-collapsed--light-mobile.png new file mode 100644 index 000000000..c3b44d935 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--responsive-collapsed--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--responsive-collapsed--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--responsive-collapsed--light-tablet.png new file mode 100644 index 000000000..c57235fad Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumb--responsive-collapsed--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--current--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--current--dark-mobile.png new file mode 100644 index 000000000..8f09d44a1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--current--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--current--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--current--dark-tablet.png new file mode 100644 index 000000000..f5bc44d18 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--current--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--current--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--current--light-desktop.png new file mode 100644 index 000000000..7a16ae068 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--current--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--current--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--current--light-mobile.png new file mode 100644 index 000000000..ebf3dba4f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--current--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--current--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--current--light-tablet.png new file mode 100644 index 000000000..7a16ae068 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--current--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--default--dark-mobile.png new file mode 100644 index 000000000..481c73b3d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--default--dark-tablet.png new file mode 100644 index 000000000..385b55160 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--default--light-desktop.png new file mode 100644 index 000000000..ea0be81e4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--default--light-mobile.png new file mode 100644 index 000000000..0da1b985d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--default--light-tablet.png new file mode 100644 index 000000000..ea0be81e4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--disabled--dark-mobile.png new file mode 100644 index 000000000..8409e478d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--disabled--dark-tablet.png new file mode 100644 index 000000000..d5517258d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--disabled--light-desktop.png new file mode 100644 index 000000000..f6922772b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--disabled--light-mobile.png new file mode 100644 index 000000000..46f97748d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--disabled--light-tablet.png new file mode 100644 index 000000000..f6922772b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--with-icon--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--with-icon--dark-mobile.png new file mode 100644 index 000000000..541840125 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--with-icon--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--with-icon--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--with-icon--dark-tablet.png new file mode 100644 index 000000000..11bbca0d2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--with-icon--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--with-icon--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--with-icon--light-desktop.png new file mode 100644 index 000000000..b57c74b09 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--with-icon--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--with-icon--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--with-icon--light-mobile.png new file mode 100644 index 000000000..7543b9baf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--with-icon--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--with-icon--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--with-icon--light-tablet.png new file mode 100644 index 000000000..b57c74b09 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-breadcrumbitem--with-icon--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--auto-placement--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--auto-placement--dark-mobile.png new file mode 100644 index 000000000..60f93edd2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--auto-placement--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--auto-placement--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--auto-placement--dark-tablet.png new file mode 100644 index 000000000..afda42aa7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--auto-placement--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--auto-placement--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--auto-placement--light-desktop.png new file mode 100644 index 000000000..3bba0ca1e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--auto-placement--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--auto-placement--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--auto-placement--light-mobile.png new file mode 100644 index 000000000..295213e97 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--auto-placement--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--auto-placement--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--auto-placement--light-tablet.png new file mode 100644 index 000000000..f9a1ae4e6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--auto-placement--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--custom-triggers--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--custom-triggers--dark-mobile.png new file mode 100644 index 000000000..e19bb6812 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--custom-triggers--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--custom-triggers--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--custom-triggers--dark-tablet.png new file mode 100644 index 000000000..0a251065b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--custom-triggers--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--custom-triggers--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--custom-triggers--light-desktop.png new file mode 100644 index 000000000..86480adaf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--custom-triggers--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--custom-triggers--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--custom-triggers--light-mobile.png new file mode 100644 index 000000000..7780eb515 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--custom-triggers--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--custom-triggers--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--custom-triggers--light-tablet.png new file mode 100644 index 000000000..9284c4f2b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--custom-triggers--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--default--dark-mobile.png new file mode 100644 index 000000000..6e0167a57 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--default--dark-tablet.png new file mode 100644 index 000000000..acc8e5b56 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--default--light-desktop.png new file mode 100644 index 000000000..73f8a8151 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--default--light-mobile.png new file mode 100644 index 000000000..704b354ac Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--default--light-tablet.png new file mode 100644 index 000000000..73f8a8151 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups--dark-mobile.png new file mode 100644 index 000000000..6e0167a57 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups--dark-tablet.png new file mode 100644 index 000000000..acc8e5b56 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups--light-desktop.png new file mode 100644 index 000000000..73f8a8151 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups--light-mobile.png new file mode 100644 index 000000000..704b354ac Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups--light-tablet.png new file mode 100644 index 000000000..73f8a8151 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups-with-top-and-bottom-slots--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups-with-top-and-bottom-slots--dark-mobile.png new file mode 100644 index 000000000..062d68706 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups-with-top-and-bottom-slots--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups-with-top-and-bottom-slots--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups-with-top-and-bottom-slots--dark-tablet.png new file mode 100644 index 000000000..deff4cb1f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups-with-top-and-bottom-slots--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups-with-top-and-bottom-slots--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups-with-top-and-bottom-slots--light-desktop.png new file mode 100644 index 000000000..e3cc1afbe Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups-with-top-and-bottom-slots--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups-with-top-and-bottom-slots--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups-with-top-and-bottom-slots--light-mobile.png new file mode 100644 index 000000000..0173951fe Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups-with-top-and-bottom-slots--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups-with-top-and-bottom-slots--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups-with-top-and-bottom-slots--light-tablet.png new file mode 100644 index 000000000..8c47e77e4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--groups-with-top-and-bottom-slots--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--option-affordances--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--option-affordances--dark-mobile.png new file mode 100644 index 000000000..83343595d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--option-affordances--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--option-affordances--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--option-affordances--dark-tablet.png new file mode 100644 index 000000000..deff4cb1f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--option-affordances--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--option-affordances--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--option-affordances--light-desktop.png new file mode 100644 index 000000000..8c47e77e4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--option-affordances--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--option-affordances--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--option-affordances--light-mobile.png new file mode 100644 index 000000000..9ecd4b09c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--option-affordances--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--option-affordances--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--option-affordances--light-tablet.png new file mode 100644 index 000000000..8c47e77e4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--option-affordances--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements--dark-mobile.png new file mode 100644 index 000000000..9d771a810 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements--dark-tablet.png new file mode 100644 index 000000000..2d007376c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements--light-desktop.png new file mode 100644 index 000000000..75fd47cd5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements--light-mobile.png new file mode 100644 index 000000000..20e27aaea Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements--light-tablet.png new file mode 100644 index 000000000..7ad7fd847 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements.png index db1c6a214..d5b436dda 100644 Binary files a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements.png and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--placements.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--states--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--states--dark-mobile.png new file mode 100644 index 000000000..a4a8cf00a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--states--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--states--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--states--dark-tablet.png new file mode 100644 index 000000000..deff4cb1f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--states--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--states--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--states--light-desktop.png new file mode 100644 index 000000000..8c47e77e4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--states--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--states--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--states--light-mobile.png new file mode 100644 index 000000000..77c5efc21 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--states--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--states--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--states--light-tablet.png new file mode 100644 index 000000000..8c47e77e4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--states--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--with-top-and-bottom-slots--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--with-top-and-bottom-slots--dark-mobile.png new file mode 100644 index 000000000..7ae97a268 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--with-top-and-bottom-slots--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--with-top-and-bottom-slots--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--with-top-and-bottom-slots--dark-tablet.png new file mode 100644 index 000000000..7de9101d6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--with-top-and-bottom-slots--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--with-top-and-bottom-slots--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--with-top-and-bottom-slots--light-desktop.png new file mode 100644 index 000000000..fdab61445 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--with-top-and-bottom-slots--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--with-top-and-bottom-slots--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--with-top-and-bottom-slots--light-mobile.png new file mode 100644 index 000000000..801d36b06 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--with-top-and-bottom-slots--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--with-top-and-bottom-slots--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--with-top-and-bottom-slots--light-tablet.png new file mode 100644 index 000000000..fdab61445 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-dropdown--with-top-and-bottom-slots--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--default--dark-mobile.png new file mode 100644 index 000000000..693e8f8d0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--default--dark-tablet.png new file mode 100644 index 000000000..311b9f8be Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--default--light-desktop.png new file mode 100644 index 000000000..b0aff30ea Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--default--light-mobile.png new file mode 100644 index 000000000..b91f543a6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--default--light-tablet.png new file mode 100644 index 000000000..b0aff30ea Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--disabled--dark-mobile.png new file mode 100644 index 000000000..845e080ae Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--disabled--dark-tablet.png new file mode 100644 index 000000000..3275c932c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--disabled--light-desktop.png new file mode 100644 index 000000000..7cd925d62 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--disabled--light-mobile.png new file mode 100644 index 000000000..990e305f2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--disabled--light-tablet.png new file mode 100644 index 000000000..7cd925d62 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--sizes--dark-mobile.png new file mode 100644 index 000000000..356349b6b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--sizes--dark-tablet.png new file mode 100644 index 000000000..906f112d9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--sizes--light-desktop.png new file mode 100644 index 000000000..df0226cba Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--sizes--light-mobile.png new file mode 100644 index 000000000..e2eb292ef Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--sizes--light-tablet.png new file mode 100644 index 000000000..df0226cba Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-link--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--default--dark-mobile.png new file mode 100644 index 000000000..ba4a7f7c3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--default--dark-tablet.png new file mode 100644 index 000000000..b3e53b210 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--default--light-desktop.png new file mode 100644 index 000000000..ccd731994 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--default--light-mobile.png new file mode 100644 index 000000000..21830d114 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--default--light-tablet.png new file mode 100644 index 000000000..ccd731994 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--group--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--group--dark-mobile.png new file mode 100644 index 000000000..72c4185e5 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--group--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--group--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--group--dark-tablet.png new file mode 100644 index 000000000..0f4b6f4f7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--group--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--group--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--group--light-desktop.png new file mode 100644 index 000000000..df4f63965 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--group--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--group--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--group--light-mobile.png new file mode 100644 index 000000000..95eecc21c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--group--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--group--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--group--light-tablet.png new file mode 100644 index 000000000..df4f63965 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--group--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--states--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--states--dark-mobile.png new file mode 100644 index 000000000..f200998a2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--states--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--states--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--states--dark-tablet.png new file mode 100644 index 000000000..a64a86386 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--states--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--states--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--states--light-desktop.png new file mode 100644 index 000000000..a7b061647 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--states--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--states--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--states--light-mobile.png new file mode 100644 index 000000000..49e18252e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--states--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--states--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--states--light-tablet.png new file mode 100644 index 000000000..a7b061647 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--states--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--with-tag--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--with-tag--dark-mobile.png new file mode 100644 index 000000000..0b8cccb72 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--with-tag--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--with-tag--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--with-tag--dark-tablet.png new file mode 100644 index 000000000..a937fbc05 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--with-tag--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--with-tag--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--with-tag--light-desktop.png new file mode 100644 index 000000000..4cd7381a7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--with-tag--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--with-tag--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--with-tag--light-mobile.png new file mode 100644 index 000000000..401bdde49 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--with-tag--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--with-tag--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--with-tag--light-tablet.png new file mode 100644 index 000000000..dd4a656ff Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-menuitem--with-tag--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-navigationmenu--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-navigationmenu--default--dark-mobile.png new file mode 100644 index 000000000..29965cd10 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-navigationmenu--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-navigationmenu--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-navigationmenu--default--dark-tablet.png new file mode 100644 index 000000000..6836b245e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-navigationmenu--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-navigationmenu--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-navigationmenu--default--light-desktop.png new file mode 100644 index 000000000..aa475b455 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-navigationmenu--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-navigationmenu--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-navigationmenu--default--light-mobile.png new file mode 100644 index 000000000..d0de652e0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-navigationmenu--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-navigationmenu--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-navigationmenu--default--light-tablet.png new file mode 100644 index 000000000..4e79de37f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-navigationmenu--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-tabview--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-tabview--default--dark-mobile.png new file mode 100644 index 000000000..bee73295b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-tabview--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-tabview--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-tabview--default--dark-tablet.png new file mode 100644 index 000000000..62e7730f0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-tabview--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-tabview--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-tabview--default--light-desktop.png new file mode 100644 index 000000000..e1d2086e6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-tabview--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-tabview--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-tabview--default--light-mobile.png new file mode 100644 index 000000000..759a1d1d1 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-tabview--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-tabview--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-tabview--default--light-tablet.png new file mode 100644 index 000000000..d98820b02 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-navigation-tabview--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-dialog--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-dialog--default--dark-mobile.png new file mode 100644 index 000000000..fbdd6c347 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-dialog--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-dialog--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-dialog--default--dark-tablet.png new file mode 100644 index 000000000..5ce60647a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-dialog--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-dialog--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-dialog--default--light-desktop.png new file mode 100644 index 000000000..6b7e2dc38 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-dialog--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-dialog--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-dialog--default--light-mobile.png new file mode 100644 index 000000000..4d39a7df7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-dialog--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-dialog--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-dialog--default--light-tablet.png new file mode 100644 index 000000000..569d47486 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-dialog--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--default--dark-mobile.png new file mode 100644 index 000000000..dd3bbcdd9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--default--dark-tablet.png new file mode 100644 index 000000000..538c6de85 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--default--light-desktop.png new file mode 100644 index 000000000..77d915762 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--default--light-mobile.png new file mode 100644 index 000000000..c2ae19404 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--default--light-tablet.png new file mode 100644 index 000000000..738ec917d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--scroll-content--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--scroll-content--dark-mobile.png new file mode 100644 index 000000000..42e5abd56 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--scroll-content--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--scroll-content--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--scroll-content--dark-tablet.png new file mode 100644 index 000000000..5835ef1fc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--scroll-content--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--scroll-content--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--scroll-content--light-desktop.png new file mode 100644 index 000000000..cacf2a30b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--scroll-content--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--scroll-content--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--scroll-content--light-mobile.png new file mode 100644 index 000000000..d8038316a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--scroll-content--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--scroll-content--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--scroll-content--light-tablet.png new file mode 100644 index 000000000..5e7d3d94b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--scroll-content--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--sizes--dark-mobile.png new file mode 100644 index 000000000..231ae2fce Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--sizes--dark-tablet.png new file mode 100644 index 000000000..f25cebfaf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--sizes--light-desktop.png new file mode 100644 index 000000000..478907ebb Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--sizes--light-mobile.png new file mode 100644 index 000000000..0c4290f23 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--sizes--light-tablet.png new file mode 100644 index 000000000..654faa5ef Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-drawer--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--anatomy--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--anatomy--dark-mobile.png new file mode 100644 index 000000000..6410c8247 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--anatomy--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--anatomy--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--anatomy--dark-tablet.png new file mode 100644 index 000000000..a74291fa6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--anatomy--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--anatomy--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--anatomy--light-desktop.png new file mode 100644 index 000000000..2e930cbb3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--anatomy--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--anatomy--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--anatomy--light-mobile.png new file mode 100644 index 000000000..51cfedce4 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--anatomy--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--anatomy--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--anatomy--light-tablet.png new file mode 100644 index 000000000..05ac87fed Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--anatomy--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--auto-placement--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--auto-placement--dark-mobile.png new file mode 100644 index 000000000..ae97b33bc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--auto-placement--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--auto-placement--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--auto-placement--dark-tablet.png new file mode 100644 index 000000000..b72d63398 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--auto-placement--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--auto-placement--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--auto-placement--light-desktop.png new file mode 100644 index 000000000..3f507d9b0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--auto-placement--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--auto-placement--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--auto-placement--light-mobile.png new file mode 100644 index 000000000..0c0408f56 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--auto-placement--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--auto-placement--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--auto-placement--light-tablet.png new file mode 100644 index 000000000..9f1a15744 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--auto-placement--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--default--dark-mobile.png new file mode 100644 index 000000000..5fddc63cf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--default--dark-tablet.png new file mode 100644 index 000000000..69f333588 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--default--light-desktop.png new file mode 100644 index 000000000..3fb018625 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--default--light-mobile.png new file mode 100644 index 000000000..19d235020 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--default--light-tablet.png new file mode 100644 index 000000000..3fb018625 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--filter-example--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--filter-example--dark-mobile.png new file mode 100644 index 000000000..763228bef Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--filter-example--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--filter-example--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--filter-example--dark-tablet.png new file mode 100644 index 000000000..88511f9c8 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--filter-example--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--filter-example--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--filter-example--light-desktop.png new file mode 100644 index 000000000..f0a416185 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--filter-example--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--filter-example--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--filter-example--light-mobile.png new file mode 100644 index 000000000..907b1415c Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--filter-example--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--filter-example--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--filter-example--light-tablet.png new file mode 100644 index 000000000..fa5652b3d Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--filter-example--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements--dark-mobile.png new file mode 100644 index 000000000..e95b128e6 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements--dark-tablet.png new file mode 100644 index 000000000..eabb5acd3 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements--light-desktop.png new file mode 100644 index 000000000..c9a9852dc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements--light-mobile.png new file mode 100644 index 000000000..9e4cd612b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements--light-tablet.png new file mode 100644 index 000000000..c5e041d46 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements.png index 0f7902d51..d299bfb39 100644 Binary files a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements.png and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--placements.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--widths--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--widths--dark-mobile.png new file mode 100644 index 000000000..5745aeb60 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--widths--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--widths--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--widths--dark-tablet.png new file mode 100644 index 000000000..670b77e45 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--widths--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--widths--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--widths--light-desktop.png new file mode 100644 index 000000000..08d62dd20 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--widths--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--widths--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--widths--light-mobile.png new file mode 100644 index 000000000..dfc7acd0a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--widths--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--widths--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--widths--light-tablet.png new file mode 100644 index 000000000..b054e1138 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-popover--widths--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--auto-placement--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--auto-placement--dark-mobile.png new file mode 100644 index 000000000..a60cb6e9e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--auto-placement--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--auto-placement--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--auto-placement--dark-tablet.png new file mode 100644 index 000000000..a175b26ff Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--auto-placement--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--auto-placement--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--auto-placement--light-desktop.png new file mode 100644 index 000000000..de52904f7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--auto-placement--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--auto-placement--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--auto-placement--light-mobile.png new file mode 100644 index 000000000..ea720140e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--auto-placement--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--auto-placement--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--auto-placement--light-tablet.png new file mode 100644 index 000000000..2c2a9831e Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--auto-placement--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--default--dark-mobile.png new file mode 100644 index 000000000..880cf5171 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--default--dark-tablet.png new file mode 100644 index 000000000..440a9656f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--default--light-desktop.png new file mode 100644 index 000000000..6b2d2f9bf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--default--light-mobile.png new file mode 100644 index 000000000..578597b0a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--default--light-tablet.png new file mode 100644 index 000000000..6b2d2f9bf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--disabled--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--disabled--dark-mobile.png new file mode 100644 index 000000000..880cf5171 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--disabled--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--disabled--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--disabled--dark-tablet.png new file mode 100644 index 000000000..440a9656f Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--disabled--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--disabled--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--disabled--light-desktop.png new file mode 100644 index 000000000..6b2d2f9bf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--disabled--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--disabled--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--disabled--light-mobile.png new file mode 100644 index 000000000..578597b0a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--disabled--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--disabled--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--disabled--light-tablet.png new file mode 100644 index 000000000..6b2d2f9bf Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--disabled--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--long-content--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--long-content--dark-mobile.png new file mode 100644 index 000000000..9f1d32f9b Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--long-content--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--long-content--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--long-content--dark-tablet.png new file mode 100644 index 000000000..68d95242a Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--long-content--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--long-content--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--long-content--light-desktop.png new file mode 100644 index 000000000..f743216db Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--long-content--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--long-content--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--long-content--light-mobile.png new file mode 100644 index 000000000..002465df9 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--long-content--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--long-content--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--long-content--light-tablet.png new file mode 100644 index 000000000..f743216db Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--long-content--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--placements--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--placements--dark-mobile.png new file mode 100644 index 000000000..eb4700c42 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--placements--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--placements--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--placements--dark-tablet.png new file mode 100644 index 000000000..c73e05e79 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--placements--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--placements--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--placements--light-desktop.png new file mode 100644 index 000000000..8c2f8e7df Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--placements--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--placements--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--placements--light-mobile.png new file mode 100644 index 000000000..6312581d7 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--placements--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--placements--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--placements--light-tablet.png new file mode 100644 index 000000000..8c2f8e7df Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/components-overlay-tooltip--placements--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/foundations-colors--overview.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/foundations-colors--overview.png deleted file mode 100644 index c2d433fc3..000000000 Binary files a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/foundations-colors--overview.png and /dev/null differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/foundations-icons--overview.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/foundations-icons--overview.png deleted file mode 100644 index 9260d1fad..000000000 Binary files a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/foundations-icons--overview.png and /dev/null differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/foundations-typography--overview.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/foundations-typography--overview.png deleted file mode 100644 index 18bd7ccf8..000000000 Binary files a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/foundations-typography--overview.png and /dev/null differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--default--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--default--dark-mobile.png new file mode 100644 index 000000000..0b88137bc Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--default--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--default--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--default--dark-tablet.png new file mode 100644 index 000000000..75db7fbe2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--default--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--default--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--default--light-desktop.png new file mode 100644 index 000000000..0fdc61378 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--default--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--default--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--default--light-mobile.png new file mode 100644 index 000000000..7f3a09393 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--default--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--default--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--default--light-tablet.png new file mode 100644 index 000000000..d3ac6c983 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--default--light-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--sizes--dark-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--sizes--dark-mobile.png new file mode 100644 index 000000000..264194b45 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--sizes--dark-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--sizes--dark-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--sizes--dark-tablet.png new file mode 100644 index 000000000..7f9c4f7b0 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--sizes--dark-tablet.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--sizes--light-desktop.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--sizes--light-desktop.png new file mode 100644 index 000000000..23c8ee084 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--sizes--light-desktop.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--sizes--light-mobile.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--sizes--light-mobile.png new file mode 100644 index 000000000..c64c4ad52 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--sizes--light-mobile.png differ diff --git a/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--sizes--light-tablet.png b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--sizes--light-tablet.png new file mode 100644 index 000000000..78f3cb6f2 Binary files /dev/null and b/apps/storybook/.storybook/test-visual/__image_snapshots__/linux/utils-spinner--sizes--light-tablet.png differ diff --git a/apps/storybook/.storybook/visual-modes.js b/apps/storybook/.storybook/visual-modes.js new file mode 100644 index 000000000..c98ff5e03 --- /dev/null +++ b/apps/storybook/.storybook/visual-modes.js @@ -0,0 +1,108 @@ +/** + * Visual-mode matrix — single source of truth for the visual regression layer + * (test-runner.js) and the Storybook viewport toolbar (preview.js). + * + * Consumed by BOTH module worlds: + * - .storybook/test-runner.js — required via storybook serverRequire, which + * registers esbuild-register (format: cjs); ESM syntax is transpiled. + * - .storybook/preview.js — native ESM under Vite. + * Keep this file dependency-free and side-effect-free so both loaders agree. + */ + +// Aligned to the theme token breakpoints (min-width 640 / 768 / 1280): +// mobile sits below every breakpoint, tablet exactly at md (min-width: 768px +// matches at 768), desktop at xl — the historical baseline size. +export const VIEWPORTS = { + mobile: { width: 375, height: 667 }, + tablet: { width: 768, height: 1024 }, + desktop: { width: 1280, height: 720 } +} + +// Mirrors THEME_CLASSES / applyThemeClass in preview.js. +export const THEME_CLASSES = { + light: ['azion', 'azion-light'], + dark: ['azion', 'azion-dark'] +} + +/** + * Full theme × viewport cross product; keys are also the snapshot suffixes. + * Grouped by viewport so the per-story loop resizes only 3 times. + */ +export const MODES = { + 'dark-desktop': { theme: 'dark', viewport: 'desktop' }, + 'light-desktop': { theme: 'light', viewport: 'desktop' }, + 'dark-tablet': { theme: 'dark', viewport: 'tablet' }, + 'light-tablet': { theme: 'light', viewport: 'tablet' }, + 'dark-mobile': { theme: 'dark', viewport: 'mobile' }, + 'light-mobile': { theme: 'light', viewport: 'mobile' } +} + +// Every story gets the full cross product by default; narrow per story with +// `parameters.visual = { modes: [...] }`. dark-desktop MUST stay first: it +// writes the bare-story-id baseline (see snapshotIdentifier). +export const DEFAULT_MODES = Object.keys(MODES) + +export const BASELINE_MODE = 'dark-desktop' + +/** + * dark-desktop keeps the bare story id so the pre-matrix committed baselines + * stay byte-identical; every other mode is suffixed `