forstok-ui-lib 5.1.14 → 5.1.15
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 +2 -1
- package/dist/index.js +15 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -3
- package/src/components/select/index.tsx +4 -1
package/dist/index.d.ts
CHANGED
|
@@ -338,8 +338,9 @@ type TSelect = {
|
|
|
338
338
|
'data-qa-id'?: string;
|
|
339
339
|
removeMessage?: TObject;
|
|
340
340
|
evCreateMessageQuestion?: TMessageQuestionFunction;
|
|
341
|
+
isLoading?: boolean;
|
|
341
342
|
};
|
|
342
|
-
declare const SelectComponent: ({ type, isError, mode, customOption, customLabel, MenuList, isCreateable, isClearable, selectKey, disabled, defaultValue, width, reset, setReset, isForceUpdate, setForceUpdate, isCheckAutoCopy, evChangeCustom, isField, evCreate, evChange, isMinOption, isMulti, options, name, placeholder, removeMessage, evCreateMessageQuestion, ...props }: TSelect) => react_jsx_runtime.JSX.Element;
|
|
343
|
+
declare const SelectComponent: ({ type, isError, mode, customOption, customLabel, MenuList, isCreateable, isClearable, selectKey, disabled, defaultValue, width, reset, setReset, isForceUpdate, setForceUpdate, isCheckAutoCopy, evChangeCustom, isField, evCreate, evChange, isMinOption, isMulti, options, name, placeholder, removeMessage, evCreateMessageQuestion, isLoading, ...props }: TSelect) => react_jsx_runtime.JSX.Element;
|
|
343
344
|
|
|
344
345
|
declare const ErrorComponent: ({ children, $mode, ...props }: {
|
|
345
346
|
children?: ReactNode;
|