@zealicsolutions/web-ui 0.3.238 → 0.3.240

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
- import { ConfigurationItemInfo, MetadataType } from 'containers';
1
+ import { ConfigurationItemInfo } from 'containers';
2
2
  import { SizesTypes } from 'theme';
3
3
  import { CheckboxInternalConfigProps } from 'atoms/Checkbox/types';
4
4
  import type { Nullable } from 'typescript';
@@ -18,9 +18,8 @@ export declare type ChecklistProps = {
18
18
  gap: SizesTypes;
19
19
  } & CheckboxInternalConfigProps;
20
20
  configurationItemInfo?: ConfigurationItemInfo;
21
- metadata: MetadataType;
22
21
  };
23
- export declare const Checklist: ({ items, props: { gap, ...checkboxProps }, configurationItemInfo, metadata }: ChecklistProps) => JSX.Element;
22
+ export declare const Checklist: ({ items, props: { gap, ...checkboxProps }, configurationItemInfo, }: ChecklistProps) => JSX.Element;
24
23
  export declare const ChecklistWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
25
24
  $gap: SizesTypes;
26
25
  }, 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, metadata }: import("molecules").ChecklistProps) => JSX.Element;
5
+ component: ({ items, props: { gap, ...checkboxProps }, configurationItemInfo, }: import("molecules").ChecklistProps) => JSX.Element;
6
6
  };
7
7
  export default _default;
8
8
  export declare const Checklist: StoryFn<typeof ChecklistComponent>;