@kaizen/components 1.42.0 → 1.42.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/Illustration/subcomponents/VideoPlayer/VideoPlayer.cjs +15 -30
- package/dist/cjs/Illustration/subcomponents/VideoPlayer/VideoPlayer.cjs.map +1 -1
- package/dist/cjs/dts/Filter/FilterMultiSelect/FilterMultiSelect.d.ts +1 -1
- package/dist/cjs/index.css +25 -25
- package/dist/esm/Illustration/subcomponents/VideoPlayer/VideoPlayer.mjs +15 -30
- package/dist/esm/Illustration/subcomponents/VideoPlayer/VideoPlayer.mjs.map +1 -1
- package/dist/esm/dts/Filter/FilterMultiSelect/FilterMultiSelect.d.ts +1 -1
- package/dist/esm/index.css +25 -25
- package/dist/index.d.ts +3 -3
- package/dist/styles.css +1 -1
- package/package.json +16 -16
- package/src/ButtonGroup/_docs/ButtonGroup.mdx +23 -0
- package/src/ButtonGroup/_docs/ButtonGroup.stories.tsx +0 -23
- package/src/ErrorPage/_docs/ErrorPage.mdx +21 -0
- package/src/ErrorPage/_docs/ErrorPage.stories.tsx +0 -16
- package/src/Illustration/subcomponents/VideoPlayer/VideoPlayer.spec.tsx +10 -7
- package/src/Illustration/subcomponents/VideoPlayer/VideoPlayer.tsx +9 -24
- package/src/LabelledMessage/_docs/LabelledMessage.mdx +21 -0
- package/src/LabelledMessage/_docs/LabelledMessage.stories.tsx +0 -19
- package/src/Workflow/_docs/ProgressStepper.mdx +41 -0
- package/src/Workflow/_docs/ProgressStepper.stories.tsx +0 -21
- package/src/Workflow/_docs/Workflow.mdx +1 -2
- package/src/Workflow/_docs/Workflow.stories.tsx +1 -1
- package/src/Workflow/_docs/WorkflowFooter.mdx +41 -0
- package/src/Workflow/_docs/WorkflowFooter.stories.tsx +0 -20
- package/src/Workflow/_docs/WorkflowHeader.mdx +31 -0
- package/src/Workflow/_docs/WorkflowHeader.stories.tsx +0 -20
- package/src/__future__/Workflow/_docs/Workflow.mdx +1 -1
- package/src/__future__/Workflow/_docs/Workflow.stories.tsx +1 -1
- package/src/Illustration/subcomponents/VideoPlayer/__snapshots__/VideoPlayer.spec.tsx.snap +0 -30
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
-
|
|
3
|
-
exports[`<VideoPlayer /> use-reduced-motion defaults to autoplay when user does not set use-reduced-motion preferences 1`] = `
|
|
4
|
-
<video
|
|
5
|
-
aria-hidden="true"
|
|
6
|
-
autoplay=""
|
|
7
|
-
class="wrapper"
|
|
8
|
-
data-testid="kz-video-player"
|
|
9
|
-
muted=""
|
|
10
|
-
playsinline=""
|
|
11
|
-
poster="https://d1e7r7b0lb8p4d.cloudfront.net/illustrations/heart/spot/moods-cautionary.svg.png"
|
|
12
|
-
preload="metadata"
|
|
13
|
-
tabindex="-1"
|
|
14
|
-
width="100%"
|
|
15
|
-
/>
|
|
16
|
-
`;
|
|
17
|
-
|
|
18
|
-
exports[`<VideoPlayer /> use-reduced-motion respects the use-reduced-motion preferences of the user 1`] = `
|
|
19
|
-
<video
|
|
20
|
-
aria-hidden="true"
|
|
21
|
-
class="wrapper"
|
|
22
|
-
data-testid="kz-video-player"
|
|
23
|
-
muted=""
|
|
24
|
-
playsinline=""
|
|
25
|
-
poster="https://d1e7r7b0lb8p4d.cloudfront.net/illustrations/heart/spot/moods-cautionary.svg.png"
|
|
26
|
-
preload="metadata"
|
|
27
|
-
tabindex="-1"
|
|
28
|
-
width="100%"
|
|
29
|
-
/>
|
|
30
|
-
`;
|