forstok-ui-lib 8.5.2 → 8.5.4
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 +3 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/select/asyncPaginate.tsx +326 -243
package/dist/index.d.ts
CHANGED
|
@@ -639,9 +639,9 @@ type TSelect = {
|
|
|
639
639
|
defaultValue?: OnChangeValue<TOption, boolean>;
|
|
640
640
|
loadOptions: LoadOptions<unknown, GroupBase<unknown>, unknown> | TLoadOption;
|
|
641
641
|
loadOptionsOnMenuOpen?: boolean;
|
|
642
|
-
noOptionsMessage?: (
|
|
642
|
+
noOptionsMessage?: (obj: {
|
|
643
643
|
inputValue: string;
|
|
644
|
-
}) => React.ReactNode
|
|
644
|
+
}) => React.ReactNode;
|
|
645
645
|
isSearchable?: boolean;
|
|
646
646
|
isClearable?: boolean;
|
|
647
647
|
placeholder?: string;
|
|
@@ -652,7 +652,7 @@ type TSelect = {
|
|
|
652
652
|
isMulti?: boolean;
|
|
653
653
|
iconLeft?: boolean | string;
|
|
654
654
|
loadedOptions?: TOption[];
|
|
655
|
-
|
|
655
|
+
"data-qa-id"?: string;
|
|
656
656
|
evChangeOnMenuClose?: (value: OnChangeValue<TOption, boolean> | undefined) => void;
|
|
657
657
|
id?: string;
|
|
658
658
|
isDisabled?: boolean;
|