ui-mathilde-web 0.1.29 → 0.1.30

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.
@@ -99,6 +99,24 @@ declare interface DateRangePickerProps {
99
99
  quickRanges?: QuickRange[];
100
100
  }
101
101
 
102
+ export declare const DropdownButton: ({ label, dismissOnClick, items, size, className, styles }: DropdownProps) => JSX_2.Element;
103
+
104
+ declare interface DropdownItemProps {
105
+ label: string;
106
+ href?: string;
107
+ disabled?: boolean;
108
+ divider?: boolean;
109
+ }
110
+
111
+ declare interface DropdownProps {
112
+ label: string;
113
+ dismissOnClick: boolean;
114
+ items: DropdownItemProps[];
115
+ className?: string;
116
+ size?: string;
117
+ styles?: React.CSSProperties;
118
+ }
119
+
102
120
  export declare const Dropzone: React.FC<DropzoneProps>;
103
121
 
104
122
  declare interface DropzoneProps {