forstok-ui-lib 8.8.0 → 8.8.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/index.d.ts +2 -0
- package/dist/index.js +497 -486
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +52 -41
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/radio/styles.ts +42 -29
- package/src/components/select/asyncPaginate.tsx +123 -49
- package/src/components/select/index.tsx +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -661,6 +661,8 @@ type TSelect = {
|
|
|
661
661
|
evChangeOnMenuClose?: (value: OnChangeValue<TOption, boolean> | undefined) => void;
|
|
662
662
|
id?: string;
|
|
663
663
|
isDisabled?: boolean;
|
|
664
|
+
isCreateable?: boolean;
|
|
665
|
+
evCreate?: (value: string) => void;
|
|
664
666
|
};
|
|
665
667
|
declare const SelectAsyncPaginateComponent: ({ loadOptions, ...props }: TSelect) => react_jsx_runtime.JSX.Element;
|
|
666
668
|
|