-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
236 changed files
with
172 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
import * as React from "react"; | ||
|
||
import type { Props } from "./types"; | ||
import * as Icons from "../icons"; | ||
|
||
import Tag from "."; | ||
|
||
export function TestTag(props: Props) { | ||
return ( | ||
<div className="p-xxs inline-block"> | ||
<Tag {...props} /> | ||
</div> | ||
); | ||
} | ||
|
||
export function DefaultTestStory() { | ||
return ( | ||
<div className="gap-md p-xxs flex flex-col items-start"> | ||
<h2>Neutral</h2> | ||
<div className="gap-sm flex flex-wrap"> | ||
<Tag>Non actionable</Tag> | ||
<Tag iconLeft={<Icons.PlusMinus />}>With icon</Tag> | ||
<Tag onClick={() => {}}>Default</Tag> | ||
<Tag selected onClick={() => {}}> | ||
Selected | ||
</Tag> | ||
<Tag onRemove={() => {}}>Removable</Tag> | ||
<Tag selected onRemove={() => {}} onClick={() => {}}> | ||
Selected Removable | ||
</Tag> | ||
</div> | ||
<h2>Colored</h2> | ||
<div className="gap-sm flex flex-wrap"> | ||
<Tag type="colored">Non actionable</Tag> | ||
<Tag type="colored" iconLeft={<Icons.PlusMinus />}> | ||
With icon | ||
</Tag> | ||
<Tag type="colored" onClick={() => {}}> | ||
Default | ||
</Tag> | ||
<Tag type="colored" selected onClick={() => {}}> | ||
Selected | ||
</Tag> | ||
<Tag type="colored" onRemove={() => {}}> | ||
Removable | ||
</Tag> | ||
<Tag type="colored" selected onRemove={() => {}} onClick={() => {}}> | ||
Selected Removable | ||
</Tag> | ||
</div> | ||
<h2>dateTag</h2> | ||
<div className="gap-sm flex flex-wrap"> | ||
<Tag dateTag>Neutral dateTag</Tag> | ||
<Tag dateTag onClick={() => {}}> | ||
Clickable dateTag | ||
</Tag> | ||
<Tag dateTag selected onClick={() => {}}> | ||
Selected dateTag | ||
</Tag> | ||
<Tag type="colored" dateTag> | ||
Colored dateTag | ||
</Tag> | ||
<Tag type="colored" dateTag onClick={() => {}}> | ||
Clickable colored dateTag | ||
</Tag> | ||
<Tag type="colored" dateTag selected onClick={() => {}}> | ||
Selected colored dateTag | ||
</Tag> | ||
</div> | ||
<h2>Size small</h2> | ||
<div className="gap-sm flex flex-wrap"> | ||
<Tag size="small">Neutral small</Tag> | ||
<Tag size="small" iconLeft={<Icons.PlusMinus />}> | ||
Small w/ icon | ||
</Tag> | ||
<Tag size="small" onRemove={() => {}}> | ||
Small removable | ||
</Tag> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
import * as React from "react"; | ||
import { test, expect } from "@playwright/experimental-ct-react"; | ||
|
||
import { TestTag, DefaultTestStory } from "./Tag.ct-story"; | ||
|
||
const NON_INTERACTABLE_TAGS = [ | ||
{ | ||
testTitle: "Non-interactable Neutral", | ||
type: "neutral", | ||
onClick: undefined, | ||
onRemove: undefined, | ||
}, | ||
{ | ||
testTitle: "Non-interactable Colored", | ||
type: "colored", | ||
onClick: undefined, | ||
onRemove: undefined, | ||
}, | ||
] as const; | ||
|
||
const INTERECTABLE_TAGS = [ | ||
{ testTitle: "Neutral", type: "neutral" }, | ||
{ testTitle: "Neutral Selected", type: "neutral", selected: true }, | ||
{ testTitle: "Neutral DateTag", type: "neutral", dateTag: true, selected: false }, | ||
{ testTitle: "Neutral DateTag Selected", type: "neutral", dateTag: true, selected: true }, | ||
{ testTitle: "Colored", type: "colored" }, | ||
{ testTitle: "Colored Selected", type: "colored", selected: true }, | ||
{ testTitle: "Colored DateTag", type: "colored", dateTag: true, selected: false }, | ||
{ testTitle: "Colored DateTag Selected", type: "colored", dateTag: true, selected: true }, | ||
] as const; | ||
|
||
test.describe("visual Tag", () => { | ||
test("screenshot general", async ({ mount }) => { | ||
const component = await mount(<DefaultTestStory />); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
|
||
[...NON_INTERACTABLE_TAGS, ...INTERECTABLE_TAGS].forEach(({ testTitle, ...props }) => { | ||
test(`screenshot ${testTitle} hover`, async ({ mount }) => { | ||
const component = await mount( | ||
<TestTag dataTest="tag" onClick={() => {}} onRemove={() => {}} {...props}> | ||
{testTitle} | ||
</TestTag>, | ||
); | ||
|
||
await component.getByTestId("tag").hover(); | ||
await expect(component).toHaveScreenshot(); | ||
}); | ||
}); | ||
|
||
[...NON_INTERACTABLE_TAGS, ...INTERECTABLE_TAGS].forEach(({ testTitle, ...props }) => { | ||
test(`screenshot ${testTitle} focus`, async ({ mount }) => { | ||
const component = await mount( | ||
<TestTag dataTest="tag" onClick={() => {}} onRemove={() => {}} {...props}> | ||
{testTitle} | ||
</TestTag>, | ||
); | ||
|
||
await component.getByTestId("tag").focus(); | ||
await expect(component).toHaveScreenshot(); | ||
}); | ||
}); | ||
|
||
[...NON_INTERACTABLE_TAGS, ...INTERECTABLE_TAGS].forEach(({ testTitle, ...props }) => { | ||
test(`screenshot ${testTitle} active`, async ({ mount }) => { | ||
const component = await mount( | ||
<TestTag dataTest="tag" onClick={() => {}} onRemove={() => {}} {...props}> | ||
{testTitle} | ||
</TestTag>, | ||
); | ||
|
||
await component.getByTestId("tag").click(); | ||
await expect(component).toHaveScreenshot(); | ||
}); | ||
}); | ||
|
||
INTERECTABLE_TAGS.forEach(({ testTitle, ...props }) => { | ||
test(`screenshot ${testTitle} focus remove button`, async ({ mount }) => { | ||
const component = await mount( | ||
<TestTag onClick={() => {}} onRemove={() => {}} {...props}> | ||
{testTitle} | ||
</TestTag>, | ||
); | ||
|
||
await component.getByRole("button", { name: "close", exact: true }).focus(); | ||
await expect(component).toHaveScreenshot(); | ||
}); | ||
}); | ||
}); |
Binary file added
BIN
+3.97 KB
...shots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Desktop-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.97 KB
...visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Large-Desktop-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.29 KB
.../visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Large-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.29 KB
...visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Medium-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.29 KB
.../visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Small-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.2 KB
...pshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Tablet-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.09 KB
...pshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Desktop-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.09 KB
.../visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Large-Desktop-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.82 KB
...s/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Large-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.82 KB
.../visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Medium-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.82 KB
...s/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Small-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.5 KB
...apshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Tablet-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.57 KB
...Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Desktop-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.57 KB
...reenshot-Colored-DateTag-Selected-focus-remove-button-1-Large-Desktop-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.36 KB
...creenshot-Colored-DateTag-Selected-focus-remove-button-1-Large-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.36 KB
...reenshot-Colored-DateTag-Selected-focus-remove-button-1-Medium-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.36 KB
...creenshot-Colored-DateTag-Selected-focus-remove-button-1-Small-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.25 KB
...-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Tablet-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.97 KB
...pshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Desktop-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.97 KB
.../visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Large-Desktop-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.29 KB
...s/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Large-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.29 KB
.../visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Medium-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.29 KB
...s/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Small-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.2 KB
...apshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Tablet-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.04 KB
....tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Desktop-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.04 KB
...napshots/visual-Tag-screenshot-Colored-DateTag-active-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.59 KB
...snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.59 KB
...napshots/visual-Tag-screenshot-Colored-DateTag-active-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.59 KB
...snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.53 KB
...t.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.17 KB
...t.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.17 KB
...snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.13 KB
...-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.13 KB
...snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.13 KB
...-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.84 KB
...ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.51 KB
...s/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.51 KB
...al-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.74 KB
...ual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.74 KB
...al-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.74 KB
...ual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.68 KB
...ts/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.04 KB
...t.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.04 KB
...snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.59 KB
...-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.59 KB
...snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.59 KB
...-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.53 KB
...ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.84 KB
...tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.84 KB
...apshots/visual-Tag-screenshot-Colored-Selected-active-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.41 KB
...napshots/visual-Tag-screenshot-Colored-Selected-active-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.41 KB
...apshots/visual-Tag-screenshot-Colored-Selected-active-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.41 KB
...napshots/visual-Tag-screenshot-Colored-Selected-active-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.31 KB
....tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.98 KB
....tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.98 KB
...napshots/visual-Tag-screenshot-Colored-Selected-focus-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.91 KB
...snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.91 KB
...napshots/visual-Tag-screenshot-Colored-Selected-focus-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.91 KB
...snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.6 KB
...t.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.39 KB
.../visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.39 KB
...l-Tag-screenshot-Colored-Selected-focus-remove-button-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.47 KB
...al-Tag-screenshot-Colored-Selected-focus-remove-button-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.47 KB
...l-Tag-screenshot-Colored-Selected-focus-remove-button-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.47 KB
...al-Tag-screenshot-Colored-Selected-focus-remove-button-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.38 KB
...s/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.84 KB
....tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.84 KB
...napshots/visual-Tag-screenshot-Colored-Selected-hover-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.41 KB
...snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.41 KB
...napshots/visual-Tag-screenshot-Colored-Selected-hover-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.41 KB
...snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.31 KB
...t.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.87 KB
...g/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.87 KB
...ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.64 KB
....ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.64 KB
...ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.64 KB
....ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.59 KB
...ag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.02 KB
...ag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.02 KB
....ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.21 KB
...g.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.21 KB
....ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.21 KB
...g.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.92 KB
...Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.34 KB
...snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.34 KB
...ots/visual-Tag-screenshot-Colored-focus-remove-button-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.84 KB
...hots/visual-Tag-screenshot-Colored-focus-remove-button-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.84 KB
...ots/visual-Tag-screenshot-Colored-focus-remove-button-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.84 KB
...hots/visual-Tag-screenshot-Colored-focus-remove-button-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.76 KB
...-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.87 KB
...ag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.87 KB
....ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.64 KB
...g.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.64 KB
....ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.64 KB
...g.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.59 KB
...Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.69 KB
...shots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.69 KB
...visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.12 KB
.../visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.12 KB
...visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.12 KB
.../visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.02 KB
...pshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.83 KB
...pshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.83 KB
.../visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.65 KB
...s/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.65 KB
.../visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.65 KB
...s/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.32 KB
...apshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+4.22 KB
...Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+4.22 KB
...reenshot-Neutral-DateTag-Selected-focus-remove-button-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.17 KB
...creenshot-Neutral-DateTag-Selected-focus-remove-button-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.17 KB
...reenshot-Neutral-DateTag-Selected-focus-remove-button-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.17 KB
...creenshot-Neutral-DateTag-Selected-focus-remove-button-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.08 KB
...-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.69 KB
...pshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.69 KB
.../visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.12 KB
...s/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.12 KB
.../visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.12 KB
...s/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.02 KB
...apshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.5 KB
....tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.5 KB
...napshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.33 KB
...snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.33 KB
...napshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.33 KB
...snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.26 KB
...t.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.63 KB
...t.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.63 KB
...snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.89 KB
...-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.89 KB
...snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.89 KB
...-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.58 KB
...ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.96 KB
...s/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.96 KB
...al-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.45 KB
...ual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.45 KB
...al-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.45 KB
...ual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.39 KB
...ts/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.5 KB
...t.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.5 KB
...snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.33 KB
...-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.33 KB
...snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.33 KB
...-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.26 KB
...ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.66 KB
...tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.66 KB
...apshots/visual-Tag-screenshot-Neutral-Selected-active-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.4 KB
...napshots/visual-Tag-screenshot-Neutral-Selected-active-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.4 KB
...apshots/visual-Tag-screenshot-Neutral-Selected-active-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.4 KB
...napshots/visual-Tag-screenshot-Neutral-Selected-active-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.3 KB
....tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.79 KB
....tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.79 KB
...napshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.91 KB
...snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.91 KB
...napshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.91 KB
...snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.59 KB
...t.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.22 KB
.../visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.22 KB
...l-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.45 KB
...al-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.45 KB
...l-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.45 KB
...al-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.36 KB
...s/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.66 KB
....tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.66 KB
...napshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.4 KB
...snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.4 KB
...napshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.4 KB
...snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.3 KB
...t.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.58 KB
...g/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.58 KB
...ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.62 KB
....ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.62 KB
...ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.62 KB
....ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.55 KB
...ag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.72 KB
...ag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.72 KB
....ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.21 KB
...g.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.21 KB
....ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.21 KB
...g.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.9 KB
...Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.1 KB
...snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.1 KB
...ots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.77 KB
...hots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.77 KB
...ots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.77 KB
...hots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.7 KB
...-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.58 KB
...ag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.58 KB
....ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.62 KB
...g.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.62 KB
....ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.62 KB
...g.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+1.55 KB
...Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.04 KB
...shots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.04 KB
...visual-Tag-screenshot-Non-interactable-Colored-active-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.43 KB
.../visual-Tag-screenshot-Non-interactable-Colored-active-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.43 KB
...visual-Tag-screenshot-Non-interactable-Colored-active-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.43 KB
.../visual-Tag-screenshot-Non-interactable-Colored-active-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.38 KB
...pshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.04 KB
...pshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.04 KB
.../visual-Tag-screenshot-Non-interactable-Colored-focus-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.43 KB
...s/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.43 KB
.../visual-Tag-screenshot-Non-interactable-Colored-focus-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.43 KB
...s/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.38 KB
...apshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.04 KB
...pshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.04 KB
.../visual-Tag-screenshot-Non-interactable-Colored-hover-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.43 KB
...s/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.43 KB
.../visual-Tag-screenshot-Non-interactable-Colored-hover-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.43 KB
...s/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.38 KB
...apshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.93 KB
...shots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.93 KB
...visual-Tag-screenshot-Non-interactable-Neutral-active-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.18 KB
.../visual-Tag-screenshot-Non-interactable-Neutral-active-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.18 KB
...visual-Tag-screenshot-Non-interactable-Neutral-active-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.18 KB
.../visual-Tag-screenshot-Non-interactable-Neutral-active-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.12 KB
...pshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.93 KB
...pshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.93 KB
.../visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.18 KB
...s/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.18 KB
.../visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.18 KB
...s/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.12 KB
...apshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.93 KB
...pshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.93 KB
.../visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.18 KB
...s/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.18 KB
.../visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.18 KB
...s/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+2.12 KB
...apshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+44.2 KB
.../src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+44.9 KB
...ag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+37.4 KB
...Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+38.6 KB
...ag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+40 KB
...Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+32.5 KB
...s/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Tablet-linux.png
Oops, something went wrong.