@connectif/ui-components 0.0.8 → 0.0.10

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.
@@ -383,6 +383,7 @@ export declare const icons: {
383
383
  'chart-pie': string;
384
384
  'chart-scatterplot-hexbin': string;
385
385
  'chart-timeline': string;
386
+ 'chart-timeline-variant-shimmer': string;
386
387
  check: string;
387
388
  'check-all': string;
388
389
  'check-circle': string;
@@ -688,6 +689,7 @@ export declare const icons: {
688
689
  'facebook-messenger': string;
689
690
  'facebook-page-visit': string;
690
691
  factory: string;
692
+ 'family-tree': string;
691
693
  fan: string;
692
694
  'fast-forward': string;
693
695
  'fast-forward-outline': string;
@@ -30,7 +30,7 @@ export type DatePickerProps = Omit<TextFieldProps, 'value' | 'onChange' | 'type'
30
30
  * An input component which uses a vitamined TextField with a popover to allow user
31
31
  * to pick a Date (without time component)
32
32
  */
33
- declare const DatePicker: React.ForwardRefExoticComponent<Omit<TextFieldProps, "onChange" | "value" | "onBlur" | "onKeyDown" | "onScroll" | "type" | "maxLength"> & {
33
+ declare const DatePicker: React.ForwardRefExoticComponent<Omit<TextFieldProps, "type" | "onBlur" | "onChange" | "onKeyDown" | "onScroll" | "value" | "maxLength"> & {
34
34
  /**
35
35
  * The value handled by this DatePicker
36
36
  */
@@ -3,6 +3,7 @@ import { StackProps } from '@mui/material';
3
3
  declare const sizes: {
4
4
  M: number;
5
5
  L: number;
6
+ XL: number;
6
7
  };
7
8
  export type MinimizableWindowProps = React.PropsWithChildren<{
8
9
  /**