-
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
135 changed files
with
278 additions
and
317 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
Binary file modified
BIN
+128 Bytes
(100%)
...rc/Layout/Layout.ct.tsx-snapshots/visual-Layout-wizard-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 modified
BIN
+10 Bytes
(100%)
.../Layout/Layout.ct.tsx-snapshots/visual-Layout-wizard-1-Medium-Mobile-darwin.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 modified
BIN
+13 Bytes
(100%)
...c/Layout/Layout.ct.tsx-snapshots/visual-Layout-wizard-1-Small-Mobile-darwin.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 modified
BIN
+1019 Bytes
(110%)
...nts/src/Layout/Layout.ct.tsx-snapshots/visual-Layout-wizard-1-Tablet-darwin.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 modified
BIN
+693 Bytes
(110%)
...ents/src/Layout/Layout.ct.tsx-snapshots/visual-Layout-wizard-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.
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,79 @@ | ||
import * as React from "react"; | ||
|
||
import Wizard, { WizardStep } from "."; | ||
|
||
export function WizardStory() { | ||
return (["row", "column"] as const).map(direction => ( | ||
<> | ||
<div className="p-md"> | ||
<Wizard | ||
id={`wizard-single-${direction}`} | ||
dataTest={`wizard-single-${direction}`} | ||
direction={direction} | ||
activeStep={0} | ||
completedSteps={0} | ||
> | ||
<WizardStep title="Search" /> | ||
</Wizard> | ||
</div> | ||
<div className="p-md"> | ||
<Wizard | ||
id={`wizard-completed-0-${direction}`} | ||
direction={direction} | ||
activeStep={1} | ||
completedSteps={0} | ||
> | ||
<WizardStep title="Search" /> | ||
<WizardStep title="Passenger details" /> | ||
<WizardStep title="Ticket fare" /> | ||
<WizardStep title="Customize your trip" isCompleted /> | ||
<WizardStep title="Overview & Payment" /> | ||
</Wizard> | ||
</div> | ||
<div className="p-md"> | ||
<Wizard | ||
id={`wizard-completed-2-${direction}`} | ||
direction={direction} | ||
activeStep={1} | ||
completedSteps={2} | ||
> | ||
<WizardStep title="Search" /> | ||
<WizardStep title="Passenger details" /> | ||
<WizardStep title="Ticket fare" /> | ||
<WizardStep title="Customize your trip" isCompleted /> | ||
<WizardStep title="Overview & Payment" /> | ||
</Wizard> | ||
</div> | ||
<div className="p-md"> | ||
<Wizard | ||
id={`wizard-completed-5-${direction}`} | ||
direction={direction} | ||
activeStep={4} | ||
completedSteps={5} | ||
labelClose="CLOSE" | ||
labelProgress="PROGRESS" | ||
> | ||
<WizardStep title="Search" /> | ||
<WizardStep title="Passenger details" /> | ||
<WizardStep title="Ticket fare" /> | ||
<WizardStep title="Customize your trip" isCompleted /> | ||
<WizardStep title="Overview & Payment" /> | ||
</Wizard> | ||
</div> | ||
</> | ||
)); | ||
} | ||
|
||
export function WizardStoryHover({ direction }: { direction: "row" | "column" }) { | ||
return ( | ||
<div className="p-md"> | ||
<Wizard id={React.useId()} direction={direction} activeStep={1} completedSteps={2}> | ||
<WizardStep title="Search" /> | ||
<WizardStep title="Passenger details" /> | ||
<WizardStep title="Ticket fare" /> | ||
<WizardStep title="Customize your trip" isCompleted /> | ||
<WizardStep title="Overview & Payment" /> | ||
</Wizard> | ||
</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,87 @@ | ||
import * as React from "react"; | ||
import { test, expect } from "@playwright/experimental-ct-react"; | ||
|
||
import RenderInRtl from "../utils/rtl/RenderInRtl"; | ||
import { WizardStory, WizardStoryHover } from "./Wizard.ct-story"; | ||
|
||
test.describe("visual Wizard", () => { | ||
async function maybeHoverByText(component, text: string) { | ||
if ((await component.getByText(text).count()) === 0) { | ||
return Promise.resolve(); | ||
} | ||
|
||
return component.getByText(text).hover(); | ||
} | ||
|
||
test("default", async ({ mount }) => { | ||
const component = await mount(<WizardStory />); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
|
||
test("row hover completed step", async ({ mount }) => { | ||
const component = await mount(<WizardStoryHover direction="row" />); | ||
await maybeHoverByText(component, "Search"); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
|
||
test("row hover active step", async ({ mount }) => { | ||
const component = await mount(<WizardStoryHover direction="row" />); | ||
await maybeHoverByText(component, "Passenger details"); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
|
||
test("row hover inactive step", async ({ mount }) => { | ||
const component = await mount(<WizardStoryHover direction="row" />); | ||
await maybeHoverByText(component, "Overview & Payment"); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
|
||
test("row hover completed inactive step", async ({ mount }) => { | ||
const component = await mount(<WizardStoryHover direction="row" />); | ||
await maybeHoverByText(component, "Customize your trip"); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
|
||
test("column hover completed step", async ({ mount }) => { | ||
const component = await mount(<WizardStoryHover direction="column" />); | ||
await maybeHoverByText(component, "Search"); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
|
||
test("column hover active step", async ({ mount }) => { | ||
const component = await mount(<WizardStoryHover direction="column" />); | ||
await maybeHoverByText(component, "Passenger details"); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
|
||
test("column hover inactive step", async ({ mount }) => { | ||
const component = await mount(<WizardStoryHover direction="column" />); | ||
await maybeHoverByText(component, "Overview & Payment"); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
|
||
test("column hover completed inactive step", async ({ mount }) => { | ||
const component = await mount(<WizardStoryHover direction="column" />); | ||
await maybeHoverByText(component, "Customize your trip"); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
|
||
test("rtl", async ({ mount }) => { | ||
const component = await mount( | ||
<RenderInRtl> | ||
<WizardStory /> | ||
</RenderInRtl>, | ||
); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
}); |
Binary file added
BIN
+14.6 KB
...rd.ct.tsx-snapshots/visual-Wizard-column-hover-active-step-1-Desktop-darwin.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
+13.3 KB
...ard.ct.tsx-snapshots/visual-Wizard-column-hover-active-step-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
+14.9 KB
...tsx-snapshots/visual-Wizard-column-hover-active-step-1-Large-Desktop-darwin.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
+13.7 KB
....tsx-snapshots/visual-Wizard-column-hover-active-step-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
+16 KB
....tsx-snapshots/visual-Wizard-column-hover-active-step-1-Large-Mobile-darwin.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
+11.1 KB
...t.tsx-snapshots/visual-Wizard-column-hover-active-step-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.79 KB
...tsx-snapshots/visual-Wizard-column-hover-active-step-1-Medium-Mobile-darwin.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
+2.59 KB
....tsx-snapshots/visual-Wizard-column-hover-active-step-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.59 KB
....tsx-snapshots/visual-Wizard-column-hover-active-step-1-Small-Mobile-darwin.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
+2.54 KB
...t.tsx-snapshots/visual-Wizard-column-hover-active-step-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
+17.1 KB
...ard.ct.tsx-snapshots/visual-Wizard-column-hover-active-step-1-Tablet-darwin.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
+11.4 KB
...zard.ct.tsx-snapshots/visual-Wizard-column-hover-active-step-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
+14.5 KB
...apshots/visual-Wizard-column-hover-completed-inactive-step-1-Desktop-darwin.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
+13.2 KB
...napshots/visual-Wizard-column-hover-completed-inactive-step-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
+14.9 KB
...s/visual-Wizard-column-hover-completed-inactive-step-1-Large-Desktop-darwin.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
+13.5 KB
...ts/visual-Wizard-column-hover-completed-inactive-step-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
+15.9 KB
...ts/visual-Wizard-column-hover-completed-inactive-step-1-Large-Mobile-darwin.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
+11 KB
...ots/visual-Wizard-column-hover-completed-inactive-step-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.67 KB
...s/visual-Wizard-column-hover-completed-inactive-step-1-Medium-Mobile-darwin.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
+2.57 KB
...ts/visual-Wizard-column-hover-completed-inactive-step-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.46 KB
...ts/visual-Wizard-column-hover-completed-inactive-step-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+2.52 KB
...ots/visual-Wizard-column-hover-completed-inactive-step-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+17 KB
...napshots/visual-Wizard-column-hover-completed-inactive-step-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+11.3 KB
...snapshots/visual-Wizard-column-hover-completed-inactive-step-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+15.2 KB
...ct.tsx-snapshots/visual-Wizard-column-hover-completed-step-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+13.9 KB
....ct.tsx-snapshots/visual-Wizard-column-hover-completed-step-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+15.4 KB
...-snapshots/visual-Wizard-column-hover-completed-step-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+14.2 KB
...x-snapshots/visual-Wizard-column-hover-completed-step-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+16.5 KB
...x-snapshots/visual-Wizard-column-hover-completed-step-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+11.5 KB
...sx-snapshots/visual-Wizard-column-hover-completed-step-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.67 KB
...-snapshots/visual-Wizard-column-hover-completed-step-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+2.57 KB
...x-snapshots/visual-Wizard-column-hover-completed-step-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.46 KB
...x-snapshots/visual-Wizard-column-hover-completed-step-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+2.52 KB
...sx-snapshots/visual-Wizard-column-hover-completed-step-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+17.6 KB
....ct.tsx-snapshots/visual-Wizard-column-hover-completed-step-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+11.9 KB
...d.ct.tsx-snapshots/visual-Wizard-column-hover-completed-step-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+14.5 KB
....ct.tsx-snapshots/visual-Wizard-column-hover-inactive-step-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+13.2 KB
...d.ct.tsx-snapshots/visual-Wizard-column-hover-inactive-step-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+14.9 KB
...x-snapshots/visual-Wizard-column-hover-inactive-step-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+13.5 KB
...sx-snapshots/visual-Wizard-column-hover-inactive-step-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+15.9 KB
...sx-snapshots/visual-Wizard-column-hover-inactive-step-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+11 KB
...tsx-snapshots/visual-Wizard-column-hover-inactive-step-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.67 KB
...x-snapshots/visual-Wizard-column-hover-inactive-step-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+2.57 KB
...sx-snapshots/visual-Wizard-column-hover-inactive-step-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.46 KB
...sx-snapshots/visual-Wizard-column-hover-inactive-step-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+2.52 KB
...tsx-snapshots/visual-Wizard-column-hover-inactive-step-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+17 KB
...d.ct.tsx-snapshots/visual-Wizard-column-hover-inactive-step-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+11.3 KB
...rd.ct.tsx-snapshots/visual-Wizard-column-hover-inactive-step-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+79.9 KB
...s/src/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-default-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+73.1 KB
...ts/src/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-default-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+82.3 KB
...Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-default-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+74.6 KB
.../Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-default-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+88.4 KB
.../Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-default-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+62 KB
...c/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-default-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+29.9 KB
...Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-default-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+22.2 KB
.../Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-default-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+28.9 KB
.../Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-default-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+22.1 KB
...c/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-default-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+93 KB
...ts/src/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-default-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+63.9 KB
...nts/src/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-default-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+11.3 KB
...izard.ct.tsx-snapshots/visual-Wizard-row-hover-active-step-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+10.5 KB
...Wizard.ct.tsx-snapshots/visual-Wizard-row-hover-active-step-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+11.8 KB
...ct.tsx-snapshots/visual-Wizard-row-hover-active-step-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+10.4 KB
....ct.tsx-snapshots/visual-Wizard-row-hover-active-step-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.6 KB
....ct.tsx-snapshots/visual-Wizard-row-hover-active-step-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+8.99 KB
...d.ct.tsx-snapshots/visual-Wizard-row-hover-active-step-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.79 KB
...ct.tsx-snapshots/visual-Wizard-row-hover-active-step-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+2.59 KB
....ct.tsx-snapshots/visual-Wizard-row-hover-active-step-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.59 KB
....ct.tsx-snapshots/visual-Wizard-row-hover-active-step-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+2.54 KB
...d.ct.tsx-snapshots/visual-Wizard-row-hover-active-step-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+13 KB
...Wizard.ct.tsx-snapshots/visual-Wizard-row-hover-active-step-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+9.43 KB
.../Wizard.ct.tsx-snapshots/visual-Wizard-row-hover-active-step-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+11.3 KB
...-snapshots/visual-Wizard-row-hover-completed-inactive-step-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+10.4 KB
...x-snapshots/visual-Wizard-row-hover-completed-inactive-step-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+11.7 KB
...hots/visual-Wizard-row-hover-completed-inactive-step-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+10.3 KB
...shots/visual-Wizard-row-hover-completed-inactive-step-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.5 KB
...shots/visual-Wizard-row-hover-completed-inactive-step-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+8.86 KB
...pshots/visual-Wizard-row-hover-completed-inactive-step-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.67 KB
...hots/visual-Wizard-row-hover-completed-inactive-step-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+2.57 KB
...shots/visual-Wizard-row-hover-completed-inactive-step-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.46 KB
...shots/visual-Wizard-row-hover-completed-inactive-step-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+2.52 KB
...pshots/visual-Wizard-row-hover-completed-inactive-step-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.9 KB
...x-snapshots/visual-Wizard-row-hover-completed-inactive-step-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+9.35 KB
...sx-snapshots/visual-Wizard-row-hover-completed-inactive-step-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.1 KB
...rd.ct.tsx-snapshots/visual-Wizard-row-hover-completed-step-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+11 KB
...ard.ct.tsx-snapshots/visual-Wizard-row-hover-completed-step-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.8 KB
...tsx-snapshots/visual-Wizard-row-hover-completed-step-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+10.8 KB
....tsx-snapshots/visual-Wizard-row-hover-completed-step-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.9 KB
....tsx-snapshots/visual-Wizard-row-hover-completed-step-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+8.86 KB
...t.tsx-snapshots/visual-Wizard-row-hover-completed-step-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.67 KB
...tsx-snapshots/visual-Wizard-row-hover-completed-step-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+2.57 KB
....tsx-snapshots/visual-Wizard-row-hover-completed-step-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.46 KB
....tsx-snapshots/visual-Wizard-row-hover-completed-step-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+2.52 KB
...t.tsx-snapshots/visual-Wizard-row-hover-completed-step-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+13.6 KB
...ard.ct.tsx-snapshots/visual-Wizard-row-hover-completed-step-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+10 KB
...zard.ct.tsx-snapshots/visual-Wizard-row-hover-completed-step-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+11.3 KB
...ard.ct.tsx-snapshots/visual-Wizard-row-hover-inactive-step-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+10.4 KB
...zard.ct.tsx-snapshots/visual-Wizard-row-hover-inactive-step-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+11.7 KB
....tsx-snapshots/visual-Wizard-row-hover-inactive-step-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+10.3 KB
...t.tsx-snapshots/visual-Wizard-row-hover-inactive-step-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.5 KB
...t.tsx-snapshots/visual-Wizard-row-hover-inactive-step-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+8.86 KB
...ct.tsx-snapshots/visual-Wizard-row-hover-inactive-step-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.67 KB
....tsx-snapshots/visual-Wizard-row-hover-inactive-step-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+2.57 KB
...t.tsx-snapshots/visual-Wizard-row-hover-inactive-step-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+3.46 KB
...t.tsx-snapshots/visual-Wizard-row-hover-inactive-step-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+2.52 KB
...ct.tsx-snapshots/visual-Wizard-row-hover-inactive-step-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+12.9 KB
...zard.ct.tsx-snapshots/visual-Wizard-row-hover-inactive-step-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+9.35 KB
...izard.ct.tsx-snapshots/visual-Wizard-row-hover-inactive-step-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+79.4 KB
...nents/src/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-rtl-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+73.2 KB
...onents/src/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-rtl-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+81.5 KB
...src/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-rtl-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+75.3 KB
.../src/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-rtl-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+88.2 KB
.../src/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-rtl-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+61.7 KB
...s/src/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-rtl-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+29.7 KB
...src/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-rtl-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+22.2 KB
.../src/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-rtl-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+29.1 KB
.../src/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-rtl-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+22.1 KB
...s/src/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-rtl-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+92.8 KB
...onents/src/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-rtl-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+63.6 KB
...ponents/src/Wizard/Wizard.ct.tsx-snapshots/visual-Wizard-rtl-1-Tablet-linux.png
Oops, something went wrong.
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
Oops, something went wrong.