pillardash-ui-react 0.1.127 → 0.1.129
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/index.d.ts +4 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -259,13 +259,16 @@ type SelectProps = {
|
|
|
259
259
|
helpText?: string;
|
|
260
260
|
fullWidth?: boolean;
|
|
261
261
|
searchable?: boolean;
|
|
262
|
+
onSearch?: (searchTerm: string) => void | Promise<void>;
|
|
263
|
+
isSearching?: boolean;
|
|
264
|
+
searchDebounceMs?: number;
|
|
262
265
|
multiple?: boolean;
|
|
263
266
|
maxSelected?: number;
|
|
264
267
|
showSelectedCount?: boolean;
|
|
265
268
|
closeOnSelect?: boolean;
|
|
266
269
|
showSelectAll?: boolean;
|
|
267
270
|
};
|
|
268
|
-
declare function Select({ options, placeholder, onChange, value, size, className, name, id, disabled, label, required, error, helpText, fullWidth, searchable, multiple, maxSelected, showSelectedCount, closeOnSelect, showSelectAll, }: SelectProps): react_jsx_runtime.JSX.Element;
|
|
271
|
+
declare function Select({ options, placeholder, onChange, value, size, className, name, id, disabled, label, required, error, helpText, fullWidth, searchable, onSearch, isSearching, searchDebounceMs, multiple, maxSelected, showSelectedCount, closeOnSelect, showSelectAll, }: SelectProps): react_jsx_runtime.JSX.Element;
|
|
269
272
|
|
|
270
273
|
interface TextEditorProps {
|
|
271
274
|
initialContent?: string;
|