@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
package/dist/index.d.ts
CHANGED
|
@@ -1593,8 +1593,6 @@ type NoResultsProps = {
|
|
|
1593
1593
|
children: React__default.ReactNode;
|
|
1594
1594
|
} & HTMLAttributes<HTMLDivElement>;
|
|
1595
1595
|
|
|
1596
|
-
type LoadMoreButtonProps = ButtonProps;
|
|
1597
|
-
|
|
1598
1596
|
type MenuFooterProps = {
|
|
1599
1597
|
children: React__default.ReactNode;
|
|
1600
1598
|
};
|
|
@@ -1778,7 +1776,7 @@ declare const FilterMultiSelect: {
|
|
|
1778
1776
|
displayName: string;
|
|
1779
1777
|
};
|
|
1780
1778
|
LoadMoreButton: {
|
|
1781
|
-
(props:
|
|
1779
|
+
(props: GenericButtonProps): JSX.Element;
|
|
1782
1780
|
displayName: string;
|
|
1783
1781
|
};
|
|
1784
1782
|
NoResults: {
|
|
@@ -1787,6 +1785,8 @@ declare const FilterMultiSelect: {
|
|
|
1787
1785
|
};
|
|
1788
1786
|
};
|
|
1789
1787
|
|
|
1788
|
+
type LoadMoreButtonProps = ButtonProps;
|
|
1789
|
+
|
|
1790
1790
|
declare const getTruncatedLabels: (labels: string[], limit: number) => string;
|
|
1791
1791
|
|
|
1792
1792
|
declare const getSelectedOptionLabels: (keys?: Selection, items?: ItemType[]) => string[];
|