@salutejs/sdds-finportal 0.162.0-canary.1552.11776095169.0 → 0.162.0-canary.1553.11776288397.0
Sign up to get free protection for your applications and to get access to all the features.
- package/api/sdds-finportal.api.md +12 -493
- package/components/Combobox/Combobox.d.ts +12 -492
- package/components/Combobox/index.d.ts +12 -492
- package/package.json +6 -6
- package/temp/sdds-finportal.api.md +12 -493
@@ -52,10 +52,8 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
52
52
|
disabled?: true | undefined;
|
53
53
|
alwaysOpened?: false | undefined;
|
54
54
|
} & {
|
55
|
-
name?: undefined;
|
56
55
|
multiple?: false | undefined;
|
57
56
|
value?: string | undefined;
|
58
|
-
defaultValue?: undefined;
|
59
57
|
onChange?: ((value: string) => void) | undefined;
|
60
58
|
isTargetAmount?: false | undefined;
|
61
59
|
targetAmount?: undefined;
|
@@ -65,7 +63,7 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
65
63
|
} & {
|
66
64
|
required: true;
|
67
65
|
optional?: false | undefined;
|
68
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
66
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
69
67
|
items: ItemOption[];
|
70
68
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
71
69
|
label?: string | undefined;
|
@@ -90,10 +88,8 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
90
88
|
disabled?: true | undefined;
|
91
89
|
alwaysOpened?: false | undefined;
|
92
90
|
} & {
|
93
|
-
name?: undefined;
|
94
91
|
multiple?: false | undefined;
|
95
92
|
value?: string | undefined;
|
96
|
-
defaultValue?: undefined;
|
97
93
|
onChange?: ((value: string) => void) | undefined;
|
98
94
|
isTargetAmount?: false | undefined;
|
99
95
|
targetAmount?: undefined;
|
@@ -103,7 +99,7 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
103
99
|
} & {
|
104
100
|
optional?: true | undefined;
|
105
101
|
required?: false | undefined;
|
106
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
102
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
107
103
|
items: ItemOption[];
|
108
104
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
109
105
|
label?: string | undefined;
|
@@ -130,170 +126,16 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
130
126
|
} & {
|
131
127
|
multiple: true;
|
132
128
|
value?: string[] | undefined;
|
133
|
-
defaultValue?: string[] | undefined;
|
134
|
-
onChange?: import("react").ChangeEventHandler<Element> | undefined;
|
135
|
-
isTargetAmount?: false | undefined;
|
136
|
-
targetAmount?: undefined;
|
137
|
-
renderValue?: undefined;
|
138
|
-
name: string;
|
139
|
-
} & {
|
140
|
-
requiredPlacement?: "right" | "left" | undefined;
|
141
|
-
} & {
|
142
|
-
required: true;
|
143
|
-
optional?: false | undefined;
|
144
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & import("react").RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
145
|
-
items: ItemOption[];
|
146
|
-
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
147
|
-
label?: string | undefined;
|
148
|
-
placeholder?: string | undefined;
|
149
|
-
helperText?: string | undefined;
|
150
|
-
contentLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
151
|
-
textBefore?: string | undefined;
|
152
|
-
textAfter?: string | undefined;
|
153
|
-
variant?: "normal" | "tight" | undefined;
|
154
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
155
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
156
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
157
|
-
portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
|
158
|
-
renderItem?: ((item: ItemOption) => import("react").ReactNode) | undefined;
|
159
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
160
|
-
closeAfterSelect?: boolean | undefined;
|
161
|
-
size?: string | undefined;
|
162
|
-
view?: string | undefined;
|
163
|
-
labelPlacement?: "outer" | "inner" | undefined;
|
164
|
-
} & {
|
165
|
-
readOnly?: boolean | undefined;
|
166
|
-
disabled?: true | undefined;
|
167
|
-
alwaysOpened?: false | undefined;
|
168
|
-
} & {
|
169
|
-
multiple: true;
|
170
|
-
value?: string[] | undefined;
|
171
|
-
defaultValue?: string[] | undefined;
|
172
|
-
onChange?: import("react").ChangeEventHandler<Element> | undefined;
|
173
|
-
isTargetAmount?: false | undefined;
|
174
|
-
targetAmount?: undefined;
|
175
|
-
renderValue?: undefined;
|
176
|
-
name: string;
|
177
|
-
} & {
|
178
|
-
requiredPlacement?: "right" | "left" | undefined;
|
179
|
-
} & {
|
180
|
-
optional?: true | undefined;
|
181
|
-
required?: false | undefined;
|
182
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & import("react").RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
183
|
-
items: ItemOption[];
|
184
|
-
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
185
|
-
label?: string | undefined;
|
186
|
-
placeholder?: string | undefined;
|
187
|
-
helperText?: string | undefined;
|
188
|
-
contentLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
189
|
-
textBefore?: string | undefined;
|
190
|
-
textAfter?: string | undefined;
|
191
|
-
variant?: "normal" | "tight" | undefined;
|
192
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
193
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
194
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
195
|
-
portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
|
196
|
-
renderItem?: ((item: ItemOption) => import("react").ReactNode) | undefined;
|
197
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
198
|
-
closeAfterSelect?: boolean | undefined;
|
199
|
-
size?: string | undefined;
|
200
|
-
view?: string | undefined;
|
201
|
-
labelPlacement?: "outer" | "inner" | undefined;
|
202
|
-
} & {
|
203
|
-
readOnly?: boolean | undefined;
|
204
|
-
disabled?: true | undefined;
|
205
|
-
alwaysOpened?: false | undefined;
|
206
|
-
} & {
|
207
|
-
multiple?: false | undefined;
|
208
|
-
value?: string | undefined;
|
209
|
-
defaultValue?: string | undefined;
|
210
|
-
onChange?: import("react").ChangeEventHandler<Element> | undefined;
|
211
|
-
isTargetAmount?: false | undefined;
|
212
|
-
targetAmount?: undefined;
|
213
|
-
renderValue?: undefined;
|
214
|
-
name: string;
|
215
|
-
} & {
|
216
|
-
requiredPlacement?: "right" | "left" | undefined;
|
217
|
-
} & {
|
218
|
-
required: true;
|
219
|
-
optional?: false | undefined;
|
220
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & import("react").RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
221
|
-
items: ItemOption[];
|
222
|
-
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
223
|
-
label?: string | undefined;
|
224
|
-
placeholder?: string | undefined;
|
225
|
-
helperText?: string | undefined;
|
226
|
-
contentLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
227
|
-
textBefore?: string | undefined;
|
228
|
-
textAfter?: string | undefined;
|
229
|
-
variant?: "normal" | "tight" | undefined;
|
230
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
231
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
232
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
233
|
-
portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
|
234
|
-
renderItem?: ((item: ItemOption) => import("react").ReactNode) | undefined;
|
235
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
236
|
-
closeAfterSelect?: boolean | undefined;
|
237
|
-
size?: string | undefined;
|
238
|
-
view?: string | undefined;
|
239
|
-
labelPlacement?: "outer" | "inner" | undefined;
|
240
|
-
} & {
|
241
|
-
readOnly?: boolean | undefined;
|
242
|
-
disabled?: true | undefined;
|
243
|
-
alwaysOpened?: false | undefined;
|
244
|
-
} & {
|
245
|
-
multiple?: false | undefined;
|
246
|
-
value?: string | undefined;
|
247
|
-
defaultValue?: string | undefined;
|
248
|
-
onChange?: import("react").ChangeEventHandler<Element> | undefined;
|
249
|
-
isTargetAmount?: false | undefined;
|
250
|
-
targetAmount?: undefined;
|
251
|
-
renderValue?: undefined;
|
252
|
-
name: string;
|
253
|
-
} & {
|
254
|
-
requiredPlacement?: "right" | "left" | undefined;
|
255
|
-
} & {
|
256
|
-
optional?: true | undefined;
|
257
|
-
required?: false | undefined;
|
258
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & import("react").RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
259
|
-
items: ItemOption[];
|
260
|
-
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
261
|
-
label?: string | undefined;
|
262
|
-
placeholder?: string | undefined;
|
263
|
-
helperText?: string | undefined;
|
264
|
-
contentLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
265
|
-
textBefore?: string | undefined;
|
266
|
-
textAfter?: string | undefined;
|
267
|
-
variant?: "normal" | "tight" | undefined;
|
268
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
269
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
270
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
271
|
-
portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
|
272
|
-
renderItem?: ((item: ItemOption) => import("react").ReactNode) | undefined;
|
273
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
274
|
-
closeAfterSelect?: boolean | undefined;
|
275
|
-
size?: string | undefined;
|
276
|
-
view?: string | undefined;
|
277
|
-
labelPlacement?: "outer" | "inner" | undefined;
|
278
|
-
} & {
|
279
|
-
readOnly?: boolean | undefined;
|
280
|
-
disabled?: true | undefined;
|
281
|
-
alwaysOpened?: false | undefined;
|
282
|
-
} & {
|
283
|
-
multiple: true;
|
284
|
-
value?: string[] | undefined;
|
285
|
-
defaultValue?: undefined;
|
286
129
|
onChange?: ((value: string[]) => void) | undefined;
|
287
130
|
isTargetAmount?: true | undefined;
|
288
131
|
targetAmount?: number | undefined;
|
289
132
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
290
|
-
name?: undefined;
|
291
133
|
} & {
|
292
134
|
requiredPlacement?: "right" | "left" | undefined;
|
293
135
|
} & {
|
294
136
|
required: true;
|
295
137
|
optional?: false | undefined;
|
296
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
138
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
297
139
|
items: ItemOption[];
|
298
140
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
299
141
|
label?: string | undefined;
|
@@ -320,18 +162,16 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
320
162
|
} & {
|
321
163
|
multiple: true;
|
322
164
|
value?: string[] | undefined;
|
323
|
-
defaultValue?: undefined;
|
324
165
|
onChange?: ((value: string[]) => void) | undefined;
|
325
166
|
isTargetAmount?: true | undefined;
|
326
167
|
targetAmount?: number | undefined;
|
327
168
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
328
|
-
name?: undefined;
|
329
169
|
} & {
|
330
170
|
requiredPlacement?: "right" | "left" | undefined;
|
331
171
|
} & {
|
332
172
|
optional?: true | undefined;
|
333
173
|
required?: false | undefined;
|
334
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
174
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
335
175
|
items: ItemOption[];
|
336
176
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
337
177
|
label?: string | undefined;
|
@@ -356,10 +196,8 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
356
196
|
disabled?: boolean | undefined;
|
357
197
|
alwaysOpened?: false | undefined;
|
358
198
|
} & {
|
359
|
-
name?: undefined;
|
360
199
|
multiple?: false | undefined;
|
361
200
|
value?: string | undefined;
|
362
|
-
defaultValue?: undefined;
|
363
201
|
onChange?: ((value: string) => void) | undefined;
|
364
202
|
isTargetAmount?: false | undefined;
|
365
203
|
targetAmount?: undefined;
|
@@ -369,7 +207,7 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
369
207
|
} & {
|
370
208
|
required: true;
|
371
209
|
optional?: false | undefined;
|
372
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
210
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
373
211
|
items: ItemOption[];
|
374
212
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
375
213
|
label?: string | undefined;
|
@@ -394,10 +232,8 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
394
232
|
disabled?: boolean | undefined;
|
395
233
|
alwaysOpened?: false | undefined;
|
396
234
|
} & {
|
397
|
-
name?: undefined;
|
398
235
|
multiple?: false | undefined;
|
399
236
|
value?: string | undefined;
|
400
|
-
defaultValue?: undefined;
|
401
237
|
onChange?: ((value: string) => void) | undefined;
|
402
238
|
isTargetAmount?: false | undefined;
|
403
239
|
targetAmount?: undefined;
|
@@ -407,159 +243,7 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
407
243
|
} & {
|
408
244
|
optional?: true | undefined;
|
409
245
|
required?: false | undefined;
|
410
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
411
|
-
items: ItemOption[];
|
412
|
-
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
413
|
-
label?: string | undefined;
|
414
|
-
placeholder?: string | undefined;
|
415
|
-
helperText?: string | undefined;
|
416
|
-
contentLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
417
|
-
textBefore?: string | undefined;
|
418
|
-
textAfter?: string | undefined;
|
419
|
-
variant?: "normal" | "tight" | undefined;
|
420
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
421
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
422
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
423
|
-
portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
|
424
|
-
renderItem?: ((item: ItemOption) => import("react").ReactNode) | undefined;
|
425
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
426
|
-
closeAfterSelect?: boolean | undefined;
|
427
|
-
size?: string | undefined;
|
428
|
-
view?: string | undefined;
|
429
|
-
labelPlacement?: "outer" | "inner" | undefined;
|
430
|
-
} & {
|
431
|
-
readOnly?: true | undefined;
|
432
|
-
disabled?: boolean | undefined;
|
433
|
-
alwaysOpened?: false | undefined;
|
434
|
-
} & {
|
435
|
-
multiple: true;
|
436
|
-
value?: string[] | undefined;
|
437
|
-
defaultValue?: string[] | undefined;
|
438
|
-
onChange?: import("react").ChangeEventHandler<Element> | undefined;
|
439
|
-
isTargetAmount?: false | undefined;
|
440
|
-
targetAmount?: undefined;
|
441
|
-
renderValue?: undefined;
|
442
|
-
name: string;
|
443
|
-
} & {
|
444
|
-
requiredPlacement?: "right" | "left" | undefined;
|
445
|
-
} & {
|
446
|
-
required: true;
|
447
|
-
optional?: false | undefined;
|
448
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & import("react").RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
449
|
-
items: ItemOption[];
|
450
|
-
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
451
|
-
label?: string | undefined;
|
452
|
-
placeholder?: string | undefined;
|
453
|
-
helperText?: string | undefined;
|
454
|
-
contentLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
455
|
-
textBefore?: string | undefined;
|
456
|
-
textAfter?: string | undefined;
|
457
|
-
variant?: "normal" | "tight" | undefined;
|
458
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
459
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
460
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
461
|
-
portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
|
462
|
-
renderItem?: ((item: ItemOption) => import("react").ReactNode) | undefined;
|
463
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
464
|
-
closeAfterSelect?: boolean | undefined;
|
465
|
-
size?: string | undefined;
|
466
|
-
view?: string | undefined;
|
467
|
-
labelPlacement?: "outer" | "inner" | undefined;
|
468
|
-
} & {
|
469
|
-
readOnly?: true | undefined;
|
470
|
-
disabled?: boolean | undefined;
|
471
|
-
alwaysOpened?: false | undefined;
|
472
|
-
} & {
|
473
|
-
multiple: true;
|
474
|
-
value?: string[] | undefined;
|
475
|
-
defaultValue?: string[] | undefined;
|
476
|
-
onChange?: import("react").ChangeEventHandler<Element> | undefined;
|
477
|
-
isTargetAmount?: false | undefined;
|
478
|
-
targetAmount?: undefined;
|
479
|
-
renderValue?: undefined;
|
480
|
-
name: string;
|
481
|
-
} & {
|
482
|
-
requiredPlacement?: "right" | "left" | undefined;
|
483
|
-
} & {
|
484
|
-
optional?: true | undefined;
|
485
|
-
required?: false | undefined;
|
486
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & import("react").RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
487
|
-
items: ItemOption[];
|
488
|
-
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
489
|
-
label?: string | undefined;
|
490
|
-
placeholder?: string | undefined;
|
491
|
-
helperText?: string | undefined;
|
492
|
-
contentLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
493
|
-
textBefore?: string | undefined;
|
494
|
-
textAfter?: string | undefined;
|
495
|
-
variant?: "normal" | "tight" | undefined;
|
496
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
497
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
498
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
499
|
-
portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
|
500
|
-
renderItem?: ((item: ItemOption) => import("react").ReactNode) | undefined;
|
501
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
502
|
-
closeAfterSelect?: boolean | undefined;
|
503
|
-
size?: string | undefined;
|
504
|
-
view?: string | undefined;
|
505
|
-
labelPlacement?: "outer" | "inner" | undefined;
|
506
|
-
} & {
|
507
|
-
readOnly?: true | undefined;
|
508
|
-
disabled?: boolean | undefined;
|
509
|
-
alwaysOpened?: false | undefined;
|
510
|
-
} & {
|
511
|
-
multiple?: false | undefined;
|
512
|
-
value?: string | undefined;
|
513
|
-
defaultValue?: string | undefined;
|
514
|
-
onChange?: import("react").ChangeEventHandler<Element> | undefined;
|
515
|
-
isTargetAmount?: false | undefined;
|
516
|
-
targetAmount?: undefined;
|
517
|
-
renderValue?: undefined;
|
518
|
-
name: string;
|
519
|
-
} & {
|
520
|
-
requiredPlacement?: "right" | "left" | undefined;
|
521
|
-
} & {
|
522
|
-
required: true;
|
523
|
-
optional?: false | undefined;
|
524
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & import("react").RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
525
|
-
items: ItemOption[];
|
526
|
-
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
527
|
-
label?: string | undefined;
|
528
|
-
placeholder?: string | undefined;
|
529
|
-
helperText?: string | undefined;
|
530
|
-
contentLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
531
|
-
textBefore?: string | undefined;
|
532
|
-
textAfter?: string | undefined;
|
533
|
-
variant?: "normal" | "tight" | undefined;
|
534
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
535
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
536
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
537
|
-
portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
|
538
|
-
renderItem?: ((item: ItemOption) => import("react").ReactNode) | undefined;
|
539
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
540
|
-
closeAfterSelect?: boolean | undefined;
|
541
|
-
size?: string | undefined;
|
542
|
-
view?: string | undefined;
|
543
|
-
labelPlacement?: "outer" | "inner" | undefined;
|
544
|
-
} & {
|
545
|
-
readOnly?: true | undefined;
|
546
|
-
disabled?: boolean | undefined;
|
547
|
-
alwaysOpened?: false | undefined;
|
548
|
-
} & {
|
549
|
-
multiple?: false | undefined;
|
550
|
-
value?: string | undefined;
|
551
|
-
defaultValue?: string | undefined;
|
552
|
-
onChange?: import("react").ChangeEventHandler<Element> | undefined;
|
553
|
-
isTargetAmount?: false | undefined;
|
554
|
-
targetAmount?: undefined;
|
555
|
-
renderValue?: undefined;
|
556
|
-
name: string;
|
557
|
-
} & {
|
558
|
-
requiredPlacement?: "right" | "left" | undefined;
|
559
|
-
} & {
|
560
|
-
optional?: true | undefined;
|
561
|
-
required?: false | undefined;
|
562
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & import("react").RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
246
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
563
247
|
items: ItemOption[];
|
564
248
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
565
249
|
label?: string | undefined;
|
@@ -586,18 +270,16 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
586
270
|
} & {
|
587
271
|
multiple: true;
|
588
272
|
value?: string[] | undefined;
|
589
|
-
defaultValue?: undefined;
|
590
273
|
onChange?: ((value: string[]) => void) | undefined;
|
591
274
|
isTargetAmount?: true | undefined;
|
592
275
|
targetAmount?: number | undefined;
|
593
276
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
594
|
-
name?: undefined;
|
595
277
|
} & {
|
596
278
|
requiredPlacement?: "right" | "left" | undefined;
|
597
279
|
} & {
|
598
280
|
required: true;
|
599
281
|
optional?: false | undefined;
|
600
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
282
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
601
283
|
items: ItemOption[];
|
602
284
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
603
285
|
label?: string | undefined;
|
@@ -624,18 +306,16 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
624
306
|
} & {
|
625
307
|
multiple: true;
|
626
308
|
value?: string[] | undefined;
|
627
|
-
defaultValue?: undefined;
|
628
309
|
onChange?: ((value: string[]) => void) | undefined;
|
629
310
|
isTargetAmount?: true | undefined;
|
630
311
|
targetAmount?: number | undefined;
|
631
312
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
632
|
-
name?: undefined;
|
633
313
|
} & {
|
634
314
|
requiredPlacement?: "right" | "left" | undefined;
|
635
315
|
} & {
|
636
316
|
optional?: true | undefined;
|
637
317
|
required?: false | undefined;
|
638
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
318
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
639
319
|
items: ItemOption[];
|
640
320
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
641
321
|
label?: string | undefined;
|
@@ -660,10 +340,8 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
660
340
|
disabled?: false | undefined;
|
661
341
|
alwaysOpened?: true | undefined;
|
662
342
|
} & {
|
663
|
-
name?: undefined;
|
664
343
|
multiple?: false | undefined;
|
665
344
|
value?: string | undefined;
|
666
|
-
defaultValue?: undefined;
|
667
345
|
onChange?: ((value: string) => void) | undefined;
|
668
346
|
isTargetAmount?: false | undefined;
|
669
347
|
targetAmount?: undefined;
|
@@ -673,7 +351,7 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
673
351
|
} & {
|
674
352
|
required: true;
|
675
353
|
optional?: false | undefined;
|
676
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
354
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
677
355
|
items: ItemOption[];
|
678
356
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
679
357
|
label?: string | undefined;
|
@@ -698,10 +376,8 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
698
376
|
disabled?: false | undefined;
|
699
377
|
alwaysOpened?: true | undefined;
|
700
378
|
} & {
|
701
|
-
name?: undefined;
|
702
379
|
multiple?: false | undefined;
|
703
380
|
value?: string | undefined;
|
704
|
-
defaultValue?: undefined;
|
705
381
|
onChange?: ((value: string) => void) | undefined;
|
706
382
|
isTargetAmount?: false | undefined;
|
707
383
|
targetAmount?: undefined;
|
@@ -711,159 +387,7 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
711
387
|
} & {
|
712
388
|
optional?: true | undefined;
|
713
389
|
required?: false | undefined;
|
714
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
715
|
-
items: ItemOption[];
|
716
|
-
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
717
|
-
label?: string | undefined;
|
718
|
-
placeholder?: string | undefined;
|
719
|
-
helperText?: string | undefined;
|
720
|
-
contentLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
721
|
-
textBefore?: string | undefined;
|
722
|
-
textAfter?: string | undefined;
|
723
|
-
variant?: "normal" | "tight" | undefined;
|
724
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
725
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
726
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
727
|
-
portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
|
728
|
-
renderItem?: ((item: ItemOption) => import("react").ReactNode) | undefined;
|
729
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
730
|
-
closeAfterSelect?: boolean | undefined;
|
731
|
-
size?: string | undefined;
|
732
|
-
view?: string | undefined;
|
733
|
-
labelPlacement?: "outer" | "inner" | undefined;
|
734
|
-
} & {
|
735
|
-
readOnly?: false | undefined;
|
736
|
-
disabled?: false | undefined;
|
737
|
-
alwaysOpened?: true | undefined;
|
738
|
-
} & {
|
739
|
-
multiple: true;
|
740
|
-
value?: string[] | undefined;
|
741
|
-
defaultValue?: string[] | undefined;
|
742
|
-
onChange?: import("react").ChangeEventHandler<Element> | undefined;
|
743
|
-
isTargetAmount?: false | undefined;
|
744
|
-
targetAmount?: undefined;
|
745
|
-
renderValue?: undefined;
|
746
|
-
name: string;
|
747
|
-
} & {
|
748
|
-
requiredPlacement?: "right" | "left" | undefined;
|
749
|
-
} & {
|
750
|
-
required: true;
|
751
|
-
optional?: false | undefined;
|
752
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & import("react").RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
753
|
-
items: ItemOption[];
|
754
|
-
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
755
|
-
label?: string | undefined;
|
756
|
-
placeholder?: string | undefined;
|
757
|
-
helperText?: string | undefined;
|
758
|
-
contentLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
759
|
-
textBefore?: string | undefined;
|
760
|
-
textAfter?: string | undefined;
|
761
|
-
variant?: "normal" | "tight" | undefined;
|
762
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
763
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
764
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
765
|
-
portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
|
766
|
-
renderItem?: ((item: ItemOption) => import("react").ReactNode) | undefined;
|
767
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
768
|
-
closeAfterSelect?: boolean | undefined;
|
769
|
-
size?: string | undefined;
|
770
|
-
view?: string | undefined;
|
771
|
-
labelPlacement?: "outer" | "inner" | undefined;
|
772
|
-
} & {
|
773
|
-
readOnly?: false | undefined;
|
774
|
-
disabled?: false | undefined;
|
775
|
-
alwaysOpened?: true | undefined;
|
776
|
-
} & {
|
777
|
-
multiple: true;
|
778
|
-
value?: string[] | undefined;
|
779
|
-
defaultValue?: string[] | undefined;
|
780
|
-
onChange?: import("react").ChangeEventHandler<Element> | undefined;
|
781
|
-
isTargetAmount?: false | undefined;
|
782
|
-
targetAmount?: undefined;
|
783
|
-
renderValue?: undefined;
|
784
|
-
name: string;
|
785
|
-
} & {
|
786
|
-
requiredPlacement?: "right" | "left" | undefined;
|
787
|
-
} & {
|
788
|
-
optional?: true | undefined;
|
789
|
-
required?: false | undefined;
|
790
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & import("react").RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
791
|
-
items: ItemOption[];
|
792
|
-
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
793
|
-
label?: string | undefined;
|
794
|
-
placeholder?: string | undefined;
|
795
|
-
helperText?: string | undefined;
|
796
|
-
contentLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
797
|
-
textBefore?: string | undefined;
|
798
|
-
textAfter?: string | undefined;
|
799
|
-
variant?: "normal" | "tight" | undefined;
|
800
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
801
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
802
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
803
|
-
portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
|
804
|
-
renderItem?: ((item: ItemOption) => import("react").ReactNode) | undefined;
|
805
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
806
|
-
closeAfterSelect?: boolean | undefined;
|
807
|
-
size?: string | undefined;
|
808
|
-
view?: string | undefined;
|
809
|
-
labelPlacement?: "outer" | "inner" | undefined;
|
810
|
-
} & {
|
811
|
-
readOnly?: false | undefined;
|
812
|
-
disabled?: false | undefined;
|
813
|
-
alwaysOpened?: true | undefined;
|
814
|
-
} & {
|
815
|
-
multiple?: false | undefined;
|
816
|
-
value?: string | undefined;
|
817
|
-
defaultValue?: string | undefined;
|
818
|
-
onChange?: import("react").ChangeEventHandler<Element> | undefined;
|
819
|
-
isTargetAmount?: false | undefined;
|
820
|
-
targetAmount?: undefined;
|
821
|
-
renderValue?: undefined;
|
822
|
-
name: string;
|
823
|
-
} & {
|
824
|
-
requiredPlacement?: "right" | "left" | undefined;
|
825
|
-
} & {
|
826
|
-
required: true;
|
827
|
-
optional?: false | undefined;
|
828
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & import("react").RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
829
|
-
items: ItemOption[];
|
830
|
-
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
831
|
-
label?: string | undefined;
|
832
|
-
placeholder?: string | undefined;
|
833
|
-
helperText?: string | undefined;
|
834
|
-
contentLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
835
|
-
textBefore?: string | undefined;
|
836
|
-
textAfter?: string | undefined;
|
837
|
-
variant?: "normal" | "tight" | undefined;
|
838
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
839
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
840
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
841
|
-
portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
|
842
|
-
renderItem?: ((item: ItemOption) => import("react").ReactNode) | undefined;
|
843
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
844
|
-
closeAfterSelect?: boolean | undefined;
|
845
|
-
size?: string | undefined;
|
846
|
-
view?: string | undefined;
|
847
|
-
labelPlacement?: "outer" | "inner" | undefined;
|
848
|
-
} & {
|
849
|
-
readOnly?: false | undefined;
|
850
|
-
disabled?: false | undefined;
|
851
|
-
alwaysOpened?: true | undefined;
|
852
|
-
} & {
|
853
|
-
multiple?: false | undefined;
|
854
|
-
value?: string | undefined;
|
855
|
-
defaultValue?: string | undefined;
|
856
|
-
onChange?: import("react").ChangeEventHandler<Element> | undefined;
|
857
|
-
isTargetAmount?: false | undefined;
|
858
|
-
targetAmount?: undefined;
|
859
|
-
renderValue?: undefined;
|
860
|
-
name: string;
|
861
|
-
} & {
|
862
|
-
requiredPlacement?: "right" | "left" | undefined;
|
863
|
-
} & {
|
864
|
-
optional?: true | undefined;
|
865
|
-
required?: false | undefined;
|
866
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & import("react").RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
390
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
867
391
|
items: ItemOption[];
|
868
392
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
869
393
|
label?: string | undefined;
|
@@ -890,18 +414,16 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
890
414
|
} & {
|
891
415
|
multiple: true;
|
892
416
|
value?: string[] | undefined;
|
893
|
-
defaultValue?: undefined;
|
894
417
|
onChange?: ((value: string[]) => void) | undefined;
|
895
418
|
isTargetAmount?: true | undefined;
|
896
419
|
targetAmount?: number | undefined;
|
897
420
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
898
|
-
name?: undefined;
|
899
421
|
} & {
|
900
422
|
requiredPlacement?: "right" | "left" | undefined;
|
901
423
|
} & {
|
902
424
|
required: true;
|
903
425
|
optional?: false | undefined;
|
904
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
426
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
905
427
|
items: ItemOption[];
|
906
428
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
907
429
|
label?: string | undefined;
|
@@ -928,18 +450,16 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
|
|
928
450
|
} & {
|
929
451
|
multiple: true;
|
930
452
|
value?: string[] | undefined;
|
931
|
-
defaultValue?: undefined;
|
932
453
|
onChange?: ((value: string[]) => void) | undefined;
|
933
454
|
isTargetAmount?: true | undefined;
|
934
455
|
targetAmount?: number | undefined;
|
935
456
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
936
|
-
name?: undefined;
|
937
457
|
} & {
|
938
458
|
requiredPlacement?: "right" | "left" | undefined;
|
939
459
|
} & {
|
940
460
|
optional?: true | undefined;
|
941
461
|
required?: false | undefined;
|
942
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
462
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>)), "view" | "size" | "disabled" | "readOnly" | "labelPlacement"> & {
|
943
463
|
ref?: ForwardedRef<HTMLInputElement> | undefined;
|
944
464
|
}) => ReactElement | null;
|
945
465
|
export { Combobox };
|