@pushwoosh/dumb-components 1.1.112 → 1.1.114
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/Select/index.d.ts +1 -0
- package/index.d.ts +1 -1
- package/package.json +1 -1
package/Select/index.d.ts
CHANGED
|
@@ -2,3 +2,4 @@ export { Select, SelectAsync, CreatableSelect } from './Select';
|
|
|
2
2
|
export { CLASS_NAME_PREFIX } from './constants';
|
|
3
3
|
export type { SelectBase, MultiSelectOptions } from './types';
|
|
4
4
|
export { components as SelectComponents } from 'react-select';
|
|
5
|
+
export type { SingleValue } from 'react-select';
|
package/index.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export { RadioCard } from './RadioCard';
|
|
|
20
20
|
export { ReCaptcha, useRecaptcha, asyncScriptLoad } from './ReCaptcha';
|
|
21
21
|
export { Spinner } from './Spinner';
|
|
22
22
|
export { SortButton, type SortButtonParams } from './SortButton';
|
|
23
|
-
export { Select, SelectAsync, CreatableSelect, SelectComponents, CLASS_NAME_PREFIX, type SelectBase, type MultiSelectOptions, } from './Select';
|
|
23
|
+
export { Select, SelectAsync, CreatableSelect, SelectComponents, CLASS_NAME_PREFIX, type SelectBase, type MultiSelectOptions, type SingleValue, } from './Select';
|
|
24
24
|
export { Switch } from './Switch';
|
|
25
25
|
export { TextSkeleton, RectangularSkeleton, CircularSkeleton } from './Skeleton';
|
|
26
26
|
export { Tooltip, type TooltipPosition, TooltipTrigger } from './Tooltip';
|