@zealicsolutions/web-ui 0.3.237 → 0.3.238
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/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/molecules/Checklist/Checklist.d.ts +3 -2
- package/dist/cjs/src/molecules/Checklist/Checklist.stories.d.ts +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/molecules/Checklist/Checklist.d.ts +3 -2
- package/dist/esm/src/molecules/Checklist/Checklist.stories.d.ts +1 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ConfigurationItemInfo } from 'containers';
|
|
1
|
+
import { ConfigurationItemInfo, MetadataType } from 'containers';
|
|
2
2
|
import { SizesTypes } from 'theme';
|
|
3
3
|
import { CheckboxInternalConfigProps } from 'atoms/Checkbox/types';
|
|
4
4
|
import type { Nullable } from 'typescript';
|
|
@@ -18,8 +18,9 @@ export declare type ChecklistProps = {
|
|
|
18
18
|
gap: SizesTypes;
|
|
19
19
|
} & CheckboxInternalConfigProps;
|
|
20
20
|
configurationItemInfo?: ConfigurationItemInfo;
|
|
21
|
+
metadata: MetadataType;
|
|
21
22
|
};
|
|
22
|
-
export declare const Checklist: ({ items, props: { gap, ...checkboxProps }, configurationItemInfo, }: ChecklistProps) => JSX.Element;
|
|
23
|
+
export declare const Checklist: ({ items, props: { gap, ...checkboxProps }, configurationItemInfo, metadata }: ChecklistProps) => JSX.Element;
|
|
23
24
|
export declare const ChecklistWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
24
25
|
$gap: SizesTypes;
|
|
25
26
|
}, never>;
|
|
@@ -2,7 +2,7 @@ import type { StoryFn } from '@storybook/react';
|
|
|
2
2
|
import { Checklist as ChecklistComponent } from 'molecules';
|
|
3
3
|
declare const _default: {
|
|
4
4
|
title: string;
|
|
5
|
-
component: ({ items, props: { gap, ...checkboxProps }, configurationItemInfo, }: import("molecules").ChecklistProps) => JSX.Element;
|
|
5
|
+
component: ({ items, props: { gap, ...checkboxProps }, configurationItemInfo, metadata }: import("molecules").ChecklistProps) => JSX.Element;
|
|
6
6
|
};
|
|
7
7
|
export default _default;
|
|
8
8
|
export declare const Checklist: StoryFn<typeof ChecklistComponent>;
|
package/dist/index.d.ts
CHANGED
|
@@ -2242,8 +2242,9 @@ declare type ChecklistProps = {
|
|
|
2242
2242
|
gap: SizesTypes$1;
|
|
2243
2243
|
} & CheckboxInternalConfigProps$1;
|
|
2244
2244
|
configurationItemInfo?: ConfigurationItemInfo$1;
|
|
2245
|
+
metadata: MetadataType$1;
|
|
2245
2246
|
};
|
|
2246
|
-
declare const Checklist: ({ items, props: { gap, ...checkboxProps }, configurationItemInfo, }: ChecklistProps) => JSX.Element;
|
|
2247
|
+
declare const Checklist: ({ items, props: { gap, ...checkboxProps }, configurationItemInfo, metadata }: ChecklistProps) => JSX.Element;
|
|
2247
2248
|
declare const ChecklistWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
|
|
2248
2249
|
$gap: SizesTypes$1;
|
|
2249
2250
|
}, never>;
|