ui-mathilde-web 0.10.8 → 0.10.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.
- package/dist/style.css +1 -1
- package/dist/ui-mathilde-web.d.ts +4 -2
- package/dist/ui-mathilde-web.js +3850 -3848
- package/dist/ui-mathilde-web.umd.cjs +48 -48
- package/package.json +1 -1
|
@@ -299,13 +299,15 @@ declare interface DateRangePickerProps {
|
|
|
299
299
|
className?: string;
|
|
300
300
|
}
|
|
301
301
|
|
|
302
|
-
export declare const DragAndDrop: ({ categories, onQueryChange, maxGroups, titleCategories, }: DragAndDropProps) => JSX_2.Element;
|
|
302
|
+
export declare const DragAndDrop: ({ categories, onQueryChange, maxGroups, titleCategories, isToolTipOpen, toolTipContent, }: DragAndDropProps) => JSX_2.Element;
|
|
303
303
|
|
|
304
304
|
declare interface DragAndDropProps {
|
|
305
305
|
categories: Category_2[];
|
|
306
306
|
onQueryChange?: (sections: FilterSection_2[]) => void;
|
|
307
307
|
maxGroups?: number;
|
|
308
308
|
titleCategories?: string;
|
|
309
|
+
isToolTipOpen?: boolean;
|
|
310
|
+
toolTipContent?: string;
|
|
309
311
|
}
|
|
310
312
|
|
|
311
313
|
export declare const DropdownButton: ({ label, dismissOnClick, items, size, className, styles, mode, columns, onSelectionChange, selectedItems, activeChevron, icon, iconSize, }: DropdownProps) => JSX_2.Element;
|
|
@@ -405,7 +407,7 @@ declare interface FilterSection {
|
|
|
405
407
|
|
|
406
408
|
declare interface FilterSection_2 {
|
|
407
409
|
id: string;
|
|
408
|
-
title:
|
|
410
|
+
title: React.ReactNode;
|
|
409
411
|
groups: FilterGroup_2[];
|
|
410
412
|
}
|
|
411
413
|
|