ui-mathilde-web 0.10.14 → 0.10.16
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 +3 -1
- package/dist/ui-mathilde-web.js +698 -698
- package/dist/ui-mathilde-web.umd.cjs +30 -30
- package/package.json +1 -1
|
@@ -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, }: DropdownListProps) => JSX_2.Element;
|
|
331
|
+
export declare const DropdownList: ({ onSelect, items, placeholder, fetchItems, minCharsToSearch, debounceMs, classIncludes, iconSearch, }: DropdownListProps) => JSX_2.Element;
|
|
332
332
|
|
|
333
333
|
declare interface DropdownListProps {
|
|
334
334
|
items?: DropdownItem[];
|
|
@@ -339,6 +339,7 @@ declare interface DropdownListProps {
|
|
|
339
339
|
minCharsToSearch?: number;
|
|
340
340
|
debounceMs?: number;
|
|
341
341
|
classIncludes?: string;
|
|
342
|
+
iconSearch?: boolean;
|
|
342
343
|
}
|
|
343
344
|
|
|
344
345
|
declare type DropdownMode = 'simple' | 'checkbox';
|
|
@@ -435,6 +436,7 @@ declare interface InputFormProps extends default_2.InputHTMLAttributes<HTMLInput
|
|
|
435
436
|
icon?: boolean;
|
|
436
437
|
placeholder?: string;
|
|
437
438
|
label?: string;
|
|
439
|
+
classLabel?: string;
|
|
438
440
|
error?: string;
|
|
439
441
|
type: string;
|
|
440
442
|
value?: string | number;
|