ui-mathilde-web 0.5.1 → 0.5.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 +2 -1
- package/dist/ui-mathilde-web.js +1742 -1722
- package/dist/ui-mathilde-web.umd.cjs +31 -31
- package/package.json +1 -1
|
@@ -162,7 +162,7 @@ declare interface DropdownItemProps {
|
|
|
162
162
|
checked?: boolean;
|
|
163
163
|
}
|
|
164
164
|
|
|
165
|
-
export declare const DropdownList:
|
|
165
|
+
export declare const DropdownList: ({ onSelect, items, placeholder, fetchItems, minCharsToSearch, debounceMs, classIncludes, }: DropdownListProps) => JSX_2.Element;
|
|
166
166
|
|
|
167
167
|
declare interface DropdownListProps {
|
|
168
168
|
items?: DropdownItem[];
|
|
@@ -172,6 +172,7 @@ declare interface DropdownListProps {
|
|
|
172
172
|
fetchItems?: (query: string) => Promise<DropdownItem[]>;
|
|
173
173
|
minCharsToSearch?: number;
|
|
174
174
|
debounceMs?: number;
|
|
175
|
+
classIncludes?: string;
|
|
175
176
|
}
|
|
176
177
|
|
|
177
178
|
declare type DropdownMode = 'simple' | 'checkbox';
|