@salutejs/sdds-finportal 0.147.0-canary.1505.11505788468.0 → 0.147.0-canary.1505.11518120718.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -82,7 +82,6 @@ import { DatePickerRangeProps } from '@salutejs/plasma-new-hope/styled-component
|
|
82
82
|
import { DatePickerTextFieldProps } from '@salutejs/plasma-new-hope/types/components/DatePicker/SingleDate/SingleDate.types';
|
83
83
|
import { datePickerTokens } from '@salutejs/plasma-new-hope/styled-components';
|
84
84
|
import { DatePickerVariationProps } from '@salutejs/plasma-new-hope/types/components/DatePicker/DatePickerBase.types';
|
85
|
-
import { DefaultValueType } from '@salutejs/plasma-new-hope/types/components/Select/Select.types';
|
86
85
|
import { DividerProps } from '@salutejs/plasma-new-hope/styled-components';
|
87
86
|
import { dividerTokens } from '@salutejs/plasma-new-hope/styled-components';
|
88
87
|
import { DoubleSliderProps } from '@salutejs/plasma-new-hope/styled-components';
|
@@ -1064,6 +1063,7 @@ true: PolymorphicClassName;
|
|
1064
1063
|
value?: string | undefined;
|
1065
1064
|
onChange?: ((value: string) => void) | undefined;
|
1066
1065
|
isTargetAmount?: false | undefined;
|
1066
|
+
targetAmount?: undefined;
|
1067
1067
|
renderValue?: undefined;
|
1068
1068
|
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1069
1069
|
items: ItemOption[];
|
@@ -1093,7 +1093,8 @@ true: PolymorphicClassName;
|
|
1093
1093
|
multiple: true;
|
1094
1094
|
value?: string[] | undefined;
|
1095
1095
|
onChange?: ((value: string[]) => void) | undefined;
|
1096
|
-
isTargetAmount?:
|
1096
|
+
isTargetAmount?: true | undefined;
|
1097
|
+
targetAmount?: number | undefined;
|
1097
1098
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
1098
1099
|
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1099
1100
|
items: ItemOption[];
|
@@ -1124,6 +1125,7 @@ true: PolymorphicClassName;
|
|
1124
1125
|
value?: string | undefined;
|
1125
1126
|
onChange?: ((value: string) => void) | undefined;
|
1126
1127
|
isTargetAmount?: false | undefined;
|
1128
|
+
targetAmount?: undefined;
|
1127
1129
|
renderValue?: undefined;
|
1128
1130
|
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1129
1131
|
items: ItemOption[];
|
@@ -1153,7 +1155,8 @@ true: PolymorphicClassName;
|
|
1153
1155
|
multiple: true;
|
1154
1156
|
value?: string[] | undefined;
|
1155
1157
|
onChange?: ((value: string[]) => void) | undefined;
|
1156
|
-
isTargetAmount?:
|
1158
|
+
isTargetAmount?: true | undefined;
|
1159
|
+
targetAmount?: number | undefined;
|
1157
1160
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
1158
1161
|
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1159
1162
|
items: ItemOption[];
|
@@ -1184,6 +1187,7 @@ true: PolymorphicClassName;
|
|
1184
1187
|
value?: string | undefined;
|
1185
1188
|
onChange?: ((value: string) => void) | undefined;
|
1186
1189
|
isTargetAmount?: false | undefined;
|
1190
|
+
targetAmount?: undefined;
|
1187
1191
|
renderValue?: undefined;
|
1188
1192
|
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1189
1193
|
items: ItemOption[];
|
@@ -1213,7 +1217,8 @@ true: PolymorphicClassName;
|
|
1213
1217
|
multiple: true;
|
1214
1218
|
value?: string[] | undefined;
|
1215
1219
|
onChange?: ((value: string[]) => void) | undefined;
|
1216
|
-
isTargetAmount?:
|
1220
|
+
isTargetAmount?: true | undefined;
|
1221
|
+
targetAmount?: number | undefined;
|
1217
1222
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
1218
1223
|
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>)), "view" | "size" | "disabled" | "readOnly" | "labelPlacement"> & {
|
1219
1224
|
ref?: ForwardedRef<HTMLInputElement> | undefined;
|
@@ -3266,8 +3271,8 @@ accent: PolymorphicClassName;
|
|
3266
3271
|
multiselect?: false | undefined;
|
3267
3272
|
separator?: undefined;
|
3268
3273
|
} & {
|
3269
|
-
value:
|
3270
|
-
onChange?: ((value:
|
3274
|
+
value: any;
|
3275
|
+
onChange?: ((value: any) => void) | undefined;
|
3271
3276
|
listOverflow?: Property.Overflow | undefined;
|
3272
3277
|
listHeight?: Property.Height<string | number> | undefined;
|
3273
3278
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -3304,8 +3309,8 @@ accent: PolymorphicClassName;
|
|
3304
3309
|
multiselect?: true | undefined;
|
3305
3310
|
separator?: string | undefined;
|
3306
3311
|
} & {
|
3307
|
-
value:
|
3308
|
-
onChange?: ((value:
|
3312
|
+
value: any;
|
3313
|
+
onChange?: ((value: any) => void) | undefined;
|
3309
3314
|
listOverflow?: Property.Overflow | undefined;
|
3310
3315
|
listHeight?: Property.Height<string | number> | undefined;
|
3311
3316
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -3342,8 +3347,8 @@ accent: PolymorphicClassName;
|
|
3342
3347
|
multiselect?: false | undefined;
|
3343
3348
|
separator?: undefined;
|
3344
3349
|
} & {
|
3345
|
-
value:
|
3346
|
-
onChange?: ((value:
|
3350
|
+
value: any;
|
3351
|
+
onChange?: ((value: any) => void) | undefined;
|
3347
3352
|
listOverflow?: Property.Overflow | undefined;
|
3348
3353
|
listHeight?: Property.Height<string | number> | undefined;
|
3349
3354
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -3380,8 +3385,8 @@ accent: PolymorphicClassName;
|
|
3380
3385
|
multiselect?: true | undefined;
|
3381
3386
|
separator?: string | undefined;
|
3382
3387
|
} & {
|
3383
|
-
value:
|
3384
|
-
onChange?: ((value:
|
3388
|
+
value: any;
|
3389
|
+
onChange?: ((value: any) => void) | undefined;
|
3385
3390
|
listOverflow?: Property.Overflow | undefined;
|
3386
3391
|
listHeight?: Property.Height<string | number> | undefined;
|
3387
3392
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -51,6 +51,7 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
|
|
51
51
|
value?: string | undefined;
|
52
52
|
onChange?: ((value: string) => void) | undefined;
|
53
53
|
isTargetAmount?: false | undefined;
|
54
|
+
targetAmount?: undefined;
|
54
55
|
renderValue?: undefined;
|
55
56
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
56
57
|
items: import("@salutejs/plasma-new-hope/styled-components").ItemOption[];
|
@@ -80,7 +81,8 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
|
|
80
81
|
multiple: true;
|
81
82
|
value?: string[] | undefined;
|
82
83
|
onChange?: ((value: string[]) => void) | undefined;
|
83
|
-
isTargetAmount?:
|
84
|
+
isTargetAmount?: true | undefined;
|
85
|
+
targetAmount?: number | undefined;
|
84
86
|
renderValue?: ((item: import("@salutejs/plasma-new-hope/styled-components").ItemOption) => string) | undefined;
|
85
87
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
86
88
|
items: import("@salutejs/plasma-new-hope/styled-components").ItemOption[];
|
@@ -111,6 +113,7 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
|
|
111
113
|
value?: string | undefined;
|
112
114
|
onChange?: ((value: string) => void) | undefined;
|
113
115
|
isTargetAmount?: false | undefined;
|
116
|
+
targetAmount?: undefined;
|
114
117
|
renderValue?: undefined;
|
115
118
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
116
119
|
items: import("@salutejs/plasma-new-hope/styled-components").ItemOption[];
|
@@ -140,7 +143,8 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
|
|
140
143
|
multiple: true;
|
141
144
|
value?: string[] | undefined;
|
142
145
|
onChange?: ((value: string[]) => void) | undefined;
|
143
|
-
isTargetAmount?:
|
146
|
+
isTargetAmount?: true | undefined;
|
147
|
+
targetAmount?: number | undefined;
|
144
148
|
renderValue?: ((item: import("@salutejs/plasma-new-hope/styled-components").ItemOption) => string) | undefined;
|
145
149
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
146
150
|
items: import("@salutejs/plasma-new-hope/styled-components").ItemOption[];
|
@@ -171,6 +175,7 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
|
|
171
175
|
value?: string | undefined;
|
172
176
|
onChange?: ((value: string) => void) | undefined;
|
173
177
|
isTargetAmount?: false | undefined;
|
178
|
+
targetAmount?: undefined;
|
174
179
|
renderValue?: undefined;
|
175
180
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
176
181
|
items: import("@salutejs/plasma-new-hope/styled-components").ItemOption[];
|
@@ -200,6 +205,7 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
|
|
200
205
|
multiple: true;
|
201
206
|
value?: string[] | undefined;
|
202
207
|
onChange?: ((value: string[]) => void) | undefined;
|
203
|
-
isTargetAmount?:
|
208
|
+
isTargetAmount?: true | undefined;
|
209
|
+
targetAmount?: number | undefined;
|
204
210
|
renderValue?: ((item: import("@salutejs/plasma-new-hope/styled-components").ItemOption) => string) | undefined;
|
205
211
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>))>;
|
@@ -56,6 +56,7 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
56
56
|
value?: string | undefined;
|
57
57
|
onChange?: ((value: string) => void) | undefined;
|
58
58
|
isTargetAmount?: false | undefined;
|
59
|
+
targetAmount?: undefined;
|
59
60
|
renderValue?: undefined;
|
60
61
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
61
62
|
items: ItemOption[];
|
@@ -85,7 +86,8 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
85
86
|
multiple: true;
|
86
87
|
value?: string[] | undefined;
|
87
88
|
onChange?: ((value: string[]) => void) | undefined;
|
88
|
-
isTargetAmount?:
|
89
|
+
isTargetAmount?: true | undefined;
|
90
|
+
targetAmount?: number | undefined;
|
89
91
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
90
92
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
91
93
|
items: ItemOption[];
|
@@ -116,6 +118,7 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
116
118
|
value?: string | undefined;
|
117
119
|
onChange?: ((value: string) => void) | undefined;
|
118
120
|
isTargetAmount?: false | undefined;
|
121
|
+
targetAmount?: undefined;
|
119
122
|
renderValue?: undefined;
|
120
123
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
121
124
|
items: ItemOption[];
|
@@ -145,7 +148,8 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
145
148
|
multiple: true;
|
146
149
|
value?: string[] | undefined;
|
147
150
|
onChange?: ((value: string[]) => void) | undefined;
|
148
|
-
isTargetAmount?:
|
151
|
+
isTargetAmount?: true | undefined;
|
152
|
+
targetAmount?: number | undefined;
|
149
153
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
150
154
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
151
155
|
items: ItemOption[];
|
@@ -176,6 +180,7 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
176
180
|
value?: string | undefined;
|
177
181
|
onChange?: ((value: string) => void) | undefined;
|
178
182
|
isTargetAmount?: false | undefined;
|
183
|
+
targetAmount?: undefined;
|
179
184
|
renderValue?: undefined;
|
180
185
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
181
186
|
items: ItemOption[];
|
@@ -205,7 +210,8 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
205
210
|
multiple: true;
|
206
211
|
value?: string[] | undefined;
|
207
212
|
onChange?: ((value: string[]) => void) | undefined;
|
208
|
-
isTargetAmount?:
|
213
|
+
isTargetAmount?: true | undefined;
|
214
|
+
targetAmount?: number | undefined;
|
209
215
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
210
216
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>)), "view" | "size" | "disabled" | "readOnly" | "labelPlacement"> & {
|
211
217
|
ref?: ForwardedRef<HTMLInputElement> | undefined;
|
@@ -35,8 +35,8 @@ declare const Select: React.ForwardRefExoticComponent<Omit<SelectPropsNewHope, "
|
|
35
35
|
multiselect?: false | undefined;
|
36
36
|
separator?: undefined;
|
37
37
|
} & {
|
38
|
-
value:
|
39
|
-
onChange?: ((value:
|
38
|
+
value: any;
|
39
|
+
onChange?: ((value: any) => void) | undefined;
|
40
40
|
listOverflow?: import("csstype").Property.Overflow | undefined;
|
41
41
|
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
42
42
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -73,8 +73,8 @@ declare const Select: React.ForwardRefExoticComponent<Omit<SelectPropsNewHope, "
|
|
73
73
|
multiselect?: true | undefined;
|
74
74
|
separator?: string | undefined;
|
75
75
|
} & {
|
76
|
-
value:
|
77
|
-
onChange?: ((value:
|
76
|
+
value: any;
|
77
|
+
onChange?: ((value: any) => void) | undefined;
|
78
78
|
listOverflow?: import("csstype").Property.Overflow | undefined;
|
79
79
|
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
80
80
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -111,8 +111,8 @@ declare const Select: React.ForwardRefExoticComponent<Omit<SelectPropsNewHope, "
|
|
111
111
|
multiselect?: false | undefined;
|
112
112
|
separator?: undefined;
|
113
113
|
} & {
|
114
|
-
value:
|
115
|
-
onChange?: ((value:
|
114
|
+
value: any;
|
115
|
+
onChange?: ((value: any) => void) | undefined;
|
116
116
|
listOverflow?: import("csstype").Property.Overflow | undefined;
|
117
117
|
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
118
118
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -149,8 +149,8 @@ declare const Select: React.ForwardRefExoticComponent<Omit<SelectPropsNewHope, "
|
|
149
149
|
multiselect?: true | undefined;
|
150
150
|
separator?: string | undefined;
|
151
151
|
} & {
|
152
|
-
value:
|
153
|
-
onChange?: ((value:
|
152
|
+
value: any;
|
153
|
+
onChange?: ((value: any) => void) | undefined;
|
154
154
|
listOverflow?: import("csstype").Property.Overflow | undefined;
|
155
155
|
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
156
156
|
status?: "warning" | "success" | "error" | undefined;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salutejs/sdds-finportal",
|
3
|
-
"version": "0.147.0-canary.1505.
|
3
|
+
"version": "0.147.0-canary.1505.11518120718.0",
|
4
4
|
"description": "Salute Design System / React UI kit for SDDS FinPortal web applications",
|
5
5
|
"author": "Salute Frontend Team <salute.developers@gmail.com>",
|
6
6
|
"license": "MIT",
|
@@ -19,7 +19,7 @@
|
|
19
19
|
"directory": "packages/sdds-finportal"
|
20
20
|
},
|
21
21
|
"dependencies": {
|
22
|
-
"@salutejs/plasma-new-hope": "0.174.0-canary.1505.
|
22
|
+
"@salutejs/plasma-new-hope": "0.174.0-canary.1505.11518120718.0",
|
23
23
|
"@salutejs/sdds-themes": "0.24.1-dev.0"
|
24
24
|
},
|
25
25
|
"peerDependencies": {
|
@@ -94,5 +94,5 @@
|
|
94
94
|
"Vasiliy Loginevskiy"
|
95
95
|
],
|
96
96
|
"sideEffects": false,
|
97
|
-
"gitHead": "
|
97
|
+
"gitHead": "9af9bd7c3441f7430eca85bf33a97c1f428d99f5"
|
98
98
|
}
|
@@ -82,7 +82,6 @@ import { DatePickerRangeProps } from '@salutejs/plasma-new-hope/styled-component
|
|
82
82
|
import { DatePickerTextFieldProps } from '@salutejs/plasma-new-hope/types/components/DatePicker/SingleDate/SingleDate.types';
|
83
83
|
import { datePickerTokens } from '@salutejs/plasma-new-hope/styled-components';
|
84
84
|
import { DatePickerVariationProps } from '@salutejs/plasma-new-hope/types/components/DatePicker/DatePickerBase.types';
|
85
|
-
import { DefaultValueType } from '@salutejs/plasma-new-hope/types/components/Select/Select.types';
|
86
85
|
import { DividerProps } from '@salutejs/plasma-new-hope/styled-components';
|
87
86
|
import { dividerTokens } from '@salutejs/plasma-new-hope/styled-components';
|
88
87
|
import { DoubleSliderProps } from '@salutejs/plasma-new-hope/styled-components';
|
@@ -1064,6 +1063,7 @@ true: PolymorphicClassName;
|
|
1064
1063
|
value?: string | undefined;
|
1065
1064
|
onChange?: ((value: string) => void) | undefined;
|
1066
1065
|
isTargetAmount?: false | undefined;
|
1066
|
+
targetAmount?: undefined;
|
1067
1067
|
renderValue?: undefined;
|
1068
1068
|
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1069
1069
|
items: ItemOption[];
|
@@ -1093,7 +1093,8 @@ true: PolymorphicClassName;
|
|
1093
1093
|
multiple: true;
|
1094
1094
|
value?: string[] | undefined;
|
1095
1095
|
onChange?: ((value: string[]) => void) | undefined;
|
1096
|
-
isTargetAmount?:
|
1096
|
+
isTargetAmount?: true | undefined;
|
1097
|
+
targetAmount?: number | undefined;
|
1097
1098
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
1098
1099
|
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1099
1100
|
items: ItemOption[];
|
@@ -1124,6 +1125,7 @@ true: PolymorphicClassName;
|
|
1124
1125
|
value?: string | undefined;
|
1125
1126
|
onChange?: ((value: string) => void) | undefined;
|
1126
1127
|
isTargetAmount?: false | undefined;
|
1128
|
+
targetAmount?: undefined;
|
1127
1129
|
renderValue?: undefined;
|
1128
1130
|
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1129
1131
|
items: ItemOption[];
|
@@ -1153,7 +1155,8 @@ true: PolymorphicClassName;
|
|
1153
1155
|
multiple: true;
|
1154
1156
|
value?: string[] | undefined;
|
1155
1157
|
onChange?: ((value: string[]) => void) | undefined;
|
1156
|
-
isTargetAmount?:
|
1158
|
+
isTargetAmount?: true | undefined;
|
1159
|
+
targetAmount?: number | undefined;
|
1157
1160
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
1158
1161
|
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1159
1162
|
items: ItemOption[];
|
@@ -1184,6 +1187,7 @@ true: PolymorphicClassName;
|
|
1184
1187
|
value?: string | undefined;
|
1185
1188
|
onChange?: ((value: string) => void) | undefined;
|
1186
1189
|
isTargetAmount?: false | undefined;
|
1190
|
+
targetAmount?: undefined;
|
1187
1191
|
renderValue?: undefined;
|
1188
1192
|
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1189
1193
|
items: ItemOption[];
|
@@ -1213,7 +1217,8 @@ true: PolymorphicClassName;
|
|
1213
1217
|
multiple: true;
|
1214
1218
|
value?: string[] | undefined;
|
1215
1219
|
onChange?: ((value: string[]) => void) | undefined;
|
1216
|
-
isTargetAmount?:
|
1220
|
+
isTargetAmount?: true | undefined;
|
1221
|
+
targetAmount?: number | undefined;
|
1217
1222
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
1218
1223
|
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>)), "view" | "size" | "disabled" | "readOnly" | "labelPlacement"> & {
|
1219
1224
|
ref?: ForwardedRef<HTMLInputElement> | undefined;
|
@@ -3266,8 +3271,8 @@ accent: PolymorphicClassName;
|
|
3266
3271
|
multiselect?: false | undefined;
|
3267
3272
|
separator?: undefined;
|
3268
3273
|
} & {
|
3269
|
-
value:
|
3270
|
-
onChange?: ((value:
|
3274
|
+
value: any;
|
3275
|
+
onChange?: ((value: any) => void) | undefined;
|
3271
3276
|
listOverflow?: Property.Overflow | undefined;
|
3272
3277
|
listHeight?: Property.Height<string | number> | undefined;
|
3273
3278
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -3304,8 +3309,8 @@ accent: PolymorphicClassName;
|
|
3304
3309
|
multiselect?: true | undefined;
|
3305
3310
|
separator?: string | undefined;
|
3306
3311
|
} & {
|
3307
|
-
value:
|
3308
|
-
onChange?: ((value:
|
3312
|
+
value: any;
|
3313
|
+
onChange?: ((value: any) => void) | undefined;
|
3309
3314
|
listOverflow?: Property.Overflow | undefined;
|
3310
3315
|
listHeight?: Property.Height<string | number> | undefined;
|
3311
3316
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -3342,8 +3347,8 @@ accent: PolymorphicClassName;
|
|
3342
3347
|
multiselect?: false | undefined;
|
3343
3348
|
separator?: undefined;
|
3344
3349
|
} & {
|
3345
|
-
value:
|
3346
|
-
onChange?: ((value:
|
3350
|
+
value: any;
|
3351
|
+
onChange?: ((value: any) => void) | undefined;
|
3347
3352
|
listOverflow?: Property.Overflow | undefined;
|
3348
3353
|
listHeight?: Property.Height<string | number> | undefined;
|
3349
3354
|
status?: "warning" | "success" | "error" | undefined;
|
@@ -3380,8 +3385,8 @@ accent: PolymorphicClassName;
|
|
3380
3385
|
multiselect?: true | undefined;
|
3381
3386
|
separator?: string | undefined;
|
3382
3387
|
} & {
|
3383
|
-
value:
|
3384
|
-
onChange?: ((value:
|
3388
|
+
value: any;
|
3389
|
+
onChange?: ((value: any) => void) | undefined;
|
3385
3390
|
listOverflow?: Property.Overflow | undefined;
|
3386
3391
|
listHeight?: Property.Height<string | number> | undefined;
|
3387
3392
|
status?: "warning" | "success" | "error" | undefined;
|