ui-mathilde-web 0.1.29 → 0.1.31
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/style.css +1 -1
- package/dist/ui-mathilde-web.d.ts +18 -0
- package/dist/ui-mathilde-web.js +3537 -3524
- package/dist/ui-mathilde-web.umd.cjs +42 -42
- package/package.json +1 -1
|
@@ -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 {
|