File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/Shared/Components/SelectPicker Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -52,11 +52,6 @@ type SelectProps<OptionValue, IsMulti extends boolean> = ReactSelectProps<
52
52
GroupBase < SelectPickerOptionType < OptionValue > >
53
53
>
54
54
55
- export enum SelectPickerVariantType {
56
- DEFAULT = 'default' ,
57
- BORDER_LESS = 'border-less' ,
58
- }
59
-
60
55
declare module 'react-select/base' {
61
56
// eslint-disable-next-line @typescript-eslint/no-unused-vars
62
57
export interface Props < Option , IsMulti extends boolean , Group extends GroupBase < Option > > {
@@ -92,6 +87,11 @@ declare module 'react-select/base' {
92
87
}
93
88
}
94
89
90
+ export enum SelectPickerVariantType {
91
+ DEFAULT = 'default' ,
92
+ BORDER_LESS = 'border-less' ,
93
+ }
94
+
95
95
export type SelectPickerProps < OptionValue = number | string , IsMulti extends boolean = false > = Pick <
96
96
SelectProps < OptionValue , IsMulti > ,
97
97
| 'name'
You can’t perform that action at this time.
0 commit comments