ui-mathilde-web 0.12.1 → 0.12.2
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 +9 -9
- package/dist/ui-mathilde-web.js +2592 -2594
- package/dist/ui-mathilde-web.umd.cjs +33 -33
- package/package.json +1 -1
|
@@ -456,21 +456,21 @@ declare interface DropdownListProps {
|
|
|
456
456
|
disabled?: boolean;
|
|
457
457
|
}
|
|
458
458
|
|
|
459
|
-
export declare const DropdownListWithCheckbox: ({
|
|
459
|
+
export declare const DropdownListWithCheckbox: ({ items, fetchItems, value, defaultValue, onChange, selectAll, placeholder, disabled, iconSearch, minCharsToSearch, debounceMs, className, }: DropdownListWithCheckboxProps) => JSX_2.Element;
|
|
460
460
|
|
|
461
461
|
declare interface DropdownListWithCheckboxProps {
|
|
462
462
|
items?: DropdownItemWithCheckbox[];
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
463
|
+
fetchItems?: (q: string) => Promise<DropdownItemWithCheckbox[]>;
|
|
464
|
+
value?: DropdownItemWithCheckbox[];
|
|
465
|
+
defaultValue?: DropdownItemWithCheckbox[];
|
|
466
|
+
onChange?: (items: DropdownItemWithCheckbox[]) => void;
|
|
466
467
|
selectAll?: boolean;
|
|
467
|
-
|
|
468
|
-
|
|
468
|
+
placeholder?: string;
|
|
469
|
+
disabled?: boolean;
|
|
470
|
+
iconSearch?: boolean;
|
|
469
471
|
minCharsToSearch?: number;
|
|
470
472
|
debounceMs?: number;
|
|
471
|
-
|
|
472
|
-
iconSearch?: boolean;
|
|
473
|
-
disabled?: boolean;
|
|
473
|
+
className?: string;
|
|
474
474
|
}
|
|
475
475
|
|
|
476
476
|
declare type DropdownMode = 'simple' | 'checkbox';
|