ui-mathilde-web 0.10.16 → 0.10.17

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.
@@ -328,7 +328,7 @@ declare interface DropdownItemProps {
328
328
  checked?: boolean;
329
329
  }
330
330
 
331
- export declare const DropdownList: ({ onSelect, items, placeholder, fetchItems, minCharsToSearch, debounceMs, classIncludes, iconSearch, }: DropdownListProps) => JSX_2.Element;
331
+ export declare const DropdownList: ({ onSelect, items, placeholder, fetchItems, minCharsToSearch, debounceMs, classIncludes, iconSearch, disabled, }: DropdownListProps) => JSX_2.Element;
332
332
 
333
333
  declare interface DropdownListProps {
334
334
  items?: DropdownItem[];
@@ -340,6 +340,7 @@ declare interface DropdownListProps {
340
340
  debounceMs?: number;
341
341
  classIncludes?: string;
342
342
  iconSearch?: boolean;
343
+ disabled?: boolean;
343
344
  }
344
345
 
345
346
  declare type DropdownMode = 'simple' | 'checkbox';