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.
@@ -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: string;
410
+ title: React.ReactNode;
409
411
  groups: FilterGroup_2[];
410
412
  }
411
413