ui-mathilde-web 0.10.7 → 0.10.9

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
 
@@ -609,10 +611,16 @@ declare interface SidebarProProps {
609
611
 
610
612
  export declare const Spinner: ({ description }: SpinnerProps) => JSX_2.Element;
611
613
 
614
+ export declare const SpinnerMth: ({ description }: SpinnerProps_2) => JSX_2.Element;
615
+
612
616
  declare interface SpinnerProps {
613
617
  description?: string;
614
618
  }
615
619
 
620
+ declare interface SpinnerProps_2 {
621
+ description?: string;
622
+ }
623
+
616
624
  declare interface StepDefinition {
617
625
  title: string;
618
626
  description?: string;