@kroo-web/design-system 1.1.98 → 1.1.100

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.
@@ -1,7 +1,7 @@
1
1
  import React, { PropsWithChildren } from 'react';
2
2
  import { TTypographyProps } from '../Typography';
3
3
  export type TCalloutRootProps = {
4
- type?: 'primary' | 'warning' | 'error' | 'positive';
4
+ type?: 'primary' | 'secondary' | 'warning' | 'error' | 'positive';
5
5
  };
6
6
  export type TCalloutTextProps = TTypographyProps<'p'>;
7
7
  export declare const Callout: {
@@ -9,5 +9,6 @@ export type TDatePicker<T extends FieldValues> = {
9
9
  };
10
10
  min?: string;
11
11
  max?: string;
12
+ disabled?: boolean;
12
13
  };
13
14
  export declare const DatePicker: <T extends FieldValues>(props: TDatePicker<T>) => React.JSX.Element;