ui-mathilde-web 0.1.40 → 0.1.41
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/ui-mathilde-web.d.ts +5 -1
- package/dist/ui-mathilde-web.js +962 -958
- package/dist/ui-mathilde-web.umd.cjs +28 -28
- package/package.json +1 -1
|
@@ -113,7 +113,7 @@ declare interface DateRangePickerProps {
|
|
|
113
113
|
quickRanges?: QuickRange[];
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
-
export declare const DropdownButton: ({ label, dismissOnClick, items, size, className, styles, mode, columns, onSelectionChange, selectedItems, activeChevron }: DropdownProps) => JSX_2.Element;
|
|
116
|
+
export declare const DropdownButton: ({ label, dismissOnClick, items, size, className, styles, mode, columns, onSelectionChange, selectedItems, activeChevron, icon, iconSize, }: DropdownProps) => JSX_2.Element;
|
|
117
117
|
|
|
118
118
|
declare interface DropdownItemProps {
|
|
119
119
|
label: string;
|
|
@@ -138,6 +138,10 @@ declare interface DropdownProps {
|
|
|
138
138
|
onSelectionChange?: (selectedItems: string[]) => void;
|
|
139
139
|
selectedItems?: string[];
|
|
140
140
|
activeChevron?: boolean;
|
|
141
|
+
icon?: React.ComponentType<{
|
|
142
|
+
size?: number;
|
|
143
|
+
}> | string;
|
|
144
|
+
iconSize?: number;
|
|
141
145
|
}
|
|
142
146
|
|
|
143
147
|
export declare const Dropzone: React.FC<DropzoneProps>;
|