@salutejs/sdds-finportal 0.162.0-canary.1550.11777193712.0 → 0.162.0-canary.1552.11776095169.0
Sign up to get free protection for your applications and to get access to all the features.
- package/api/sdds-finportal.api.md +554 -80
- package/components/Combobox/Combobox.d.ts +504 -24
- package/components/Combobox/index.d.ts +504 -24
- package/components/Select/Select.config.d.ts +7 -15
- package/components/Select/Select.config.js +21 -29
- package/components/Select/Select.d.ts +47 -54
- package/es/components/Select/Select.config.js +22 -30
- package/package.json +3 -3
- package/temp/sdds-finportal.api.md +554 -80
@@ -51,6 +51,7 @@ import { CellTextboxLabel } from '@salutejs/plasma-new-hope/styled-components';
|
|
51
51
|
import { CellTextboxSubtitle } from '@salutejs/plasma-new-hope/styled-components';
|
52
52
|
import { CellTextboxTitle } from '@salutejs/plasma-new-hope/styled-components';
|
53
53
|
import { ChangeEvent } from 'react';
|
54
|
+
import { ChangeEventHandler } from 'react';
|
54
55
|
import { ChangeInstanceCallback } from '@salutejs/plasma-new-hope/types/components/DatePicker/RangeDate/RangeDate.types';
|
55
56
|
import { CheckboxProps as CheckboxProps_2 } from '@salutejs/plasma-new-hope/types/components/Checkbox/Checkbox.types';
|
56
57
|
import { ChipGroupProps } from '@salutejs/plasma-new-hope/types/components/ChipGroup/ChipGroup.types';
|
@@ -90,7 +91,6 @@ import { DrawerContentProps } from '@salutejs/plasma-new-hope/styled-components'
|
|
90
91
|
import { DrawerFooterProps } from '@salutejs/plasma-new-hope/styled-components';
|
91
92
|
import { DrawerHeaderProps } from '@salutejs/plasma-new-hope/styled-components';
|
92
93
|
import { DrawerProps } from '@salutejs/plasma-new-hope/styled-components';
|
93
|
-
import { DropdownNodeSelect } from '@salutejs/plasma-new-hope/styled-components';
|
94
94
|
import { DropdownProps } from '@salutejs/plasma-new-hope/types/components/Dropdown/Dropdown.types';
|
95
95
|
import { dsplL } from '@salutejs/sdds-themes/tokens';
|
96
96
|
import { dsplLBold } from '@salutejs/sdds-themes/tokens';
|
@@ -123,15 +123,16 @@ import { IndicatorProps } from '@salutejs/plasma-new-hope/styled-components';
|
|
123
123
|
import { InputHTMLAttributes } from '@salutejs/plasma-new-hope/types/types';
|
124
124
|
import { InputHTMLAttributes as InputHTMLAttributes_2 } from 'react';
|
125
125
|
import type { ItemOption } from '@salutejs/plasma-new-hope';
|
126
|
-
import { ItemOptionSelect } from '@salutejs/plasma-new-hope/styled-components';
|
127
126
|
import { JSXElementConstructor } from 'react';
|
128
127
|
import { KeyboardEvent as KeyboardEvent_2 } from 'react';
|
129
128
|
import { LinkCustomProps } from '@salutejs/plasma-new-hope/types/components/Link/Link';
|
130
129
|
import { MaskProps } from '@salutejs/plasma-new-hope/types/components/Mask/Mask.types';
|
131
130
|
import { mediaQuery } from '@salutejs/plasma-new-hope/styled-components';
|
131
|
+
import { MergedDropdownNode } from '@salutejs/plasma-new-hope/types/components/Select/ui/Inner/ui/Item/Item.types';
|
132
132
|
import { modalClasses } from '@salutejs/plasma-new-hope/styled-components';
|
133
133
|
import { ModalProps } from '@salutejs/plasma-new-hope/styled-components';
|
134
134
|
import { MouseEvent as MouseEvent_2 } from 'react';
|
135
|
+
import { MutableRefObject } from 'react';
|
135
136
|
import { NotificationIconPlacement } from '@salutejs/plasma-new-hope/styled-components';
|
136
137
|
import { NotificationLayout } from '@salutejs/plasma-new-hope/styled-components';
|
137
138
|
import { NotificationPlacement } from '@salutejs/plasma-new-hope/styled-components';
|
@@ -1068,7 +1069,7 @@ true: PolymorphicClassName;
|
|
1068
1069
|
listOverflow?: Property.Overflow | undefined;
|
1069
1070
|
listHeight?: Property.Height<string | number> | undefined;
|
1070
1071
|
listWidth?: Property.Width<string | number> | undefined;
|
1071
|
-
portal?:
|
1072
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1072
1073
|
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1073
1074
|
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1074
1075
|
closeAfterSelect?: boolean | undefined;
|
@@ -1080,8 +1081,10 @@ true: PolymorphicClassName;
|
|
1080
1081
|
disabled?: true | undefined;
|
1081
1082
|
alwaysOpened?: false | undefined;
|
1082
1083
|
} & {
|
1084
|
+
name?: undefined;
|
1083
1085
|
multiple?: false | undefined;
|
1084
1086
|
value?: string | undefined;
|
1087
|
+
defaultValue?: undefined;
|
1085
1088
|
onChange?: ((value: string) => void) | undefined;
|
1086
1089
|
isTargetAmount?: false | undefined;
|
1087
1090
|
targetAmount?: undefined;
|
@@ -1091,7 +1094,7 @@ true: PolymorphicClassName;
|
|
1091
1094
|
} & {
|
1092
1095
|
required: true;
|
1093
1096
|
optional?: false | undefined;
|
1094
|
-
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1097
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1095
1098
|
items: ItemOption[];
|
1096
1099
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1097
1100
|
label?: string | undefined;
|
@@ -1104,7 +1107,7 @@ true: PolymorphicClassName;
|
|
1104
1107
|
listOverflow?: Property.Overflow | undefined;
|
1105
1108
|
listHeight?: Property.Height<string | number> | undefined;
|
1106
1109
|
listWidth?: Property.Width<string | number> | undefined;
|
1107
|
-
portal?:
|
1110
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1108
1111
|
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1109
1112
|
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1110
1113
|
closeAfterSelect?: boolean | undefined;
|
@@ -1116,8 +1119,10 @@ true: PolymorphicClassName;
|
|
1116
1119
|
disabled?: true | undefined;
|
1117
1120
|
alwaysOpened?: false | undefined;
|
1118
1121
|
} & {
|
1122
|
+
name?: undefined;
|
1119
1123
|
multiple?: false | undefined;
|
1120
1124
|
value?: string | undefined;
|
1125
|
+
defaultValue?: undefined;
|
1121
1126
|
onChange?: ((value: string) => void) | undefined;
|
1122
1127
|
isTargetAmount?: false | undefined;
|
1123
1128
|
targetAmount?: undefined;
|
@@ -1127,7 +1132,7 @@ true: PolymorphicClassName;
|
|
1127
1132
|
} & {
|
1128
1133
|
optional?: true | undefined;
|
1129
1134
|
required?: false | undefined;
|
1130
|
-
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1135
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1131
1136
|
items: ItemOption[];
|
1132
1137
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1133
1138
|
label?: string | undefined;
|
@@ -1140,7 +1145,7 @@ true: PolymorphicClassName;
|
|
1140
1145
|
listOverflow?: Property.Overflow | undefined;
|
1141
1146
|
listHeight?: Property.Height<string | number> | undefined;
|
1142
1147
|
listWidth?: Property.Width<string | number> | undefined;
|
1143
|
-
portal?:
|
1148
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1144
1149
|
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1145
1150
|
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1146
1151
|
closeAfterSelect?: boolean | undefined;
|
@@ -1154,16 +1159,170 @@ true: PolymorphicClassName;
|
|
1154
1159
|
} & {
|
1155
1160
|
multiple: true;
|
1156
1161
|
value?: string[] | undefined;
|
1162
|
+
defaultValue?: string[] | undefined;
|
1163
|
+
onChange?: ChangeEventHandler<Element> | undefined;
|
1164
|
+
isTargetAmount?: false | undefined;
|
1165
|
+
targetAmount?: undefined;
|
1166
|
+
renderValue?: undefined;
|
1167
|
+
name: string;
|
1168
|
+
} & {
|
1169
|
+
requiredPlacement?: "right" | "left" | undefined;
|
1170
|
+
} & {
|
1171
|
+
required: true;
|
1172
|
+
optional?: false | undefined;
|
1173
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1174
|
+
items: ItemOption[];
|
1175
|
+
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1176
|
+
label?: string | undefined;
|
1177
|
+
placeholder?: string | undefined;
|
1178
|
+
helperText?: string | undefined;
|
1179
|
+
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1180
|
+
textBefore?: string | undefined;
|
1181
|
+
textAfter?: string | undefined;
|
1182
|
+
variant?: "normal" | "tight" | undefined;
|
1183
|
+
listOverflow?: Property.Overflow | undefined;
|
1184
|
+
listHeight?: Property.Height<string | number> | undefined;
|
1185
|
+
listWidth?: Property.Width<string | number> | undefined;
|
1186
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1187
|
+
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1188
|
+
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1189
|
+
closeAfterSelect?: boolean | undefined;
|
1190
|
+
size?: string | undefined;
|
1191
|
+
view?: string | undefined;
|
1192
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
1193
|
+
} & {
|
1194
|
+
readOnly?: boolean | undefined;
|
1195
|
+
disabled?: true | undefined;
|
1196
|
+
alwaysOpened?: false | undefined;
|
1197
|
+
} & {
|
1198
|
+
multiple: true;
|
1199
|
+
value?: string[] | undefined;
|
1200
|
+
defaultValue?: string[] | undefined;
|
1201
|
+
onChange?: ChangeEventHandler<Element> | undefined;
|
1202
|
+
isTargetAmount?: false | undefined;
|
1203
|
+
targetAmount?: undefined;
|
1204
|
+
renderValue?: undefined;
|
1205
|
+
name: string;
|
1206
|
+
} & {
|
1207
|
+
requiredPlacement?: "right" | "left" | undefined;
|
1208
|
+
} & {
|
1209
|
+
optional?: true | undefined;
|
1210
|
+
required?: false | undefined;
|
1211
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1212
|
+
items: ItemOption[];
|
1213
|
+
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1214
|
+
label?: string | undefined;
|
1215
|
+
placeholder?: string | undefined;
|
1216
|
+
helperText?: string | undefined;
|
1217
|
+
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1218
|
+
textBefore?: string | undefined;
|
1219
|
+
textAfter?: string | undefined;
|
1220
|
+
variant?: "normal" | "tight" | undefined;
|
1221
|
+
listOverflow?: Property.Overflow | undefined;
|
1222
|
+
listHeight?: Property.Height<string | number> | undefined;
|
1223
|
+
listWidth?: Property.Width<string | number> | undefined;
|
1224
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1225
|
+
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1226
|
+
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1227
|
+
closeAfterSelect?: boolean | undefined;
|
1228
|
+
size?: string | undefined;
|
1229
|
+
view?: string | undefined;
|
1230
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
1231
|
+
} & {
|
1232
|
+
readOnly?: boolean | undefined;
|
1233
|
+
disabled?: true | undefined;
|
1234
|
+
alwaysOpened?: false | undefined;
|
1235
|
+
} & {
|
1236
|
+
multiple?: false | undefined;
|
1237
|
+
value?: string | undefined;
|
1238
|
+
defaultValue?: string | undefined;
|
1239
|
+
onChange?: ChangeEventHandler<Element> | undefined;
|
1240
|
+
isTargetAmount?: false | undefined;
|
1241
|
+
targetAmount?: undefined;
|
1242
|
+
renderValue?: undefined;
|
1243
|
+
name: string;
|
1244
|
+
} & {
|
1245
|
+
requiredPlacement?: "right" | "left" | undefined;
|
1246
|
+
} & {
|
1247
|
+
required: true;
|
1248
|
+
optional?: false | undefined;
|
1249
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1250
|
+
items: ItemOption[];
|
1251
|
+
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1252
|
+
label?: string | undefined;
|
1253
|
+
placeholder?: string | undefined;
|
1254
|
+
helperText?: string | undefined;
|
1255
|
+
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1256
|
+
textBefore?: string | undefined;
|
1257
|
+
textAfter?: string | undefined;
|
1258
|
+
variant?: "normal" | "tight" | undefined;
|
1259
|
+
listOverflow?: Property.Overflow | undefined;
|
1260
|
+
listHeight?: Property.Height<string | number> | undefined;
|
1261
|
+
listWidth?: Property.Width<string | number> | undefined;
|
1262
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1263
|
+
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1264
|
+
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1265
|
+
closeAfterSelect?: boolean | undefined;
|
1266
|
+
size?: string | undefined;
|
1267
|
+
view?: string | undefined;
|
1268
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
1269
|
+
} & {
|
1270
|
+
readOnly?: boolean | undefined;
|
1271
|
+
disabled?: true | undefined;
|
1272
|
+
alwaysOpened?: false | undefined;
|
1273
|
+
} & {
|
1274
|
+
multiple?: false | undefined;
|
1275
|
+
value?: string | undefined;
|
1276
|
+
defaultValue?: string | undefined;
|
1277
|
+
onChange?: ChangeEventHandler<Element> | undefined;
|
1278
|
+
isTargetAmount?: false | undefined;
|
1279
|
+
targetAmount?: undefined;
|
1280
|
+
renderValue?: undefined;
|
1281
|
+
name: string;
|
1282
|
+
} & {
|
1283
|
+
requiredPlacement?: "right" | "left" | undefined;
|
1284
|
+
} & {
|
1285
|
+
optional?: true | undefined;
|
1286
|
+
required?: false | undefined;
|
1287
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1288
|
+
items: ItemOption[];
|
1289
|
+
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1290
|
+
label?: string | undefined;
|
1291
|
+
placeholder?: string | undefined;
|
1292
|
+
helperText?: string | undefined;
|
1293
|
+
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1294
|
+
textBefore?: string | undefined;
|
1295
|
+
textAfter?: string | undefined;
|
1296
|
+
variant?: "normal" | "tight" | undefined;
|
1297
|
+
listOverflow?: Property.Overflow | undefined;
|
1298
|
+
listHeight?: Property.Height<string | number> | undefined;
|
1299
|
+
listWidth?: Property.Width<string | number> | undefined;
|
1300
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1301
|
+
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1302
|
+
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1303
|
+
closeAfterSelect?: boolean | undefined;
|
1304
|
+
size?: string | undefined;
|
1305
|
+
view?: string | undefined;
|
1306
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
1307
|
+
} & {
|
1308
|
+
readOnly?: boolean | undefined;
|
1309
|
+
disabled?: true | undefined;
|
1310
|
+
alwaysOpened?: false | undefined;
|
1311
|
+
} & {
|
1312
|
+
multiple: true;
|
1313
|
+
value?: string[] | undefined;
|
1314
|
+
defaultValue?: undefined;
|
1157
1315
|
onChange?: ((value: string[]) => void) | undefined;
|
1158
1316
|
isTargetAmount?: true | undefined;
|
1159
1317
|
targetAmount?: number | undefined;
|
1160
1318
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
1319
|
+
name?: undefined;
|
1161
1320
|
} & {
|
1162
1321
|
requiredPlacement?: "right" | "left" | undefined;
|
1163
1322
|
} & {
|
1164
1323
|
required: true;
|
1165
1324
|
optional?: false | undefined;
|
1166
|
-
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1325
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1167
1326
|
items: ItemOption[];
|
1168
1327
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1169
1328
|
label?: string | undefined;
|
@@ -1176,7 +1335,7 @@ true: PolymorphicClassName;
|
|
1176
1335
|
listOverflow?: Property.Overflow | undefined;
|
1177
1336
|
listHeight?: Property.Height<string | number> | undefined;
|
1178
1337
|
listWidth?: Property.Width<string | number> | undefined;
|
1179
|
-
portal?:
|
1338
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1180
1339
|
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1181
1340
|
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1182
1341
|
closeAfterSelect?: boolean | undefined;
|
@@ -1190,16 +1349,18 @@ true: PolymorphicClassName;
|
|
1190
1349
|
} & {
|
1191
1350
|
multiple: true;
|
1192
1351
|
value?: string[] | undefined;
|
1352
|
+
defaultValue?: undefined;
|
1193
1353
|
onChange?: ((value: string[]) => void) | undefined;
|
1194
1354
|
isTargetAmount?: true | undefined;
|
1195
1355
|
targetAmount?: number | undefined;
|
1196
1356
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
1357
|
+
name?: undefined;
|
1197
1358
|
} & {
|
1198
1359
|
requiredPlacement?: "right" | "left" | undefined;
|
1199
1360
|
} & {
|
1200
1361
|
optional?: true | undefined;
|
1201
1362
|
required?: false | undefined;
|
1202
|
-
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1363
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1203
1364
|
items: ItemOption[];
|
1204
1365
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1205
1366
|
label?: string | undefined;
|
@@ -1212,7 +1373,7 @@ true: PolymorphicClassName;
|
|
1212
1373
|
listOverflow?: Property.Overflow | undefined;
|
1213
1374
|
listHeight?: Property.Height<string | number> | undefined;
|
1214
1375
|
listWidth?: Property.Width<string | number> | undefined;
|
1215
|
-
portal?:
|
1376
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1216
1377
|
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1217
1378
|
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1218
1379
|
closeAfterSelect?: boolean | undefined;
|
@@ -1224,8 +1385,10 @@ true: PolymorphicClassName;
|
|
1224
1385
|
disabled?: boolean | undefined;
|
1225
1386
|
alwaysOpened?: false | undefined;
|
1226
1387
|
} & {
|
1388
|
+
name?: undefined;
|
1227
1389
|
multiple?: false | undefined;
|
1228
1390
|
value?: string | undefined;
|
1391
|
+
defaultValue?: undefined;
|
1229
1392
|
onChange?: ((value: string) => void) | undefined;
|
1230
1393
|
isTargetAmount?: false | undefined;
|
1231
1394
|
targetAmount?: undefined;
|
@@ -1235,7 +1398,7 @@ true: PolymorphicClassName;
|
|
1235
1398
|
} & {
|
1236
1399
|
required: true;
|
1237
1400
|
optional?: false | undefined;
|
1238
|
-
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1401
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1239
1402
|
items: ItemOption[];
|
1240
1403
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1241
1404
|
label?: string | undefined;
|
@@ -1248,7 +1411,7 @@ true: PolymorphicClassName;
|
|
1248
1411
|
listOverflow?: Property.Overflow | undefined;
|
1249
1412
|
listHeight?: Property.Height<string | number> | undefined;
|
1250
1413
|
listWidth?: Property.Width<string | number> | undefined;
|
1251
|
-
portal?:
|
1414
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1252
1415
|
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1253
1416
|
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1254
1417
|
closeAfterSelect?: boolean | undefined;
|
@@ -1260,8 +1423,10 @@ true: PolymorphicClassName;
|
|
1260
1423
|
disabled?: boolean | undefined;
|
1261
1424
|
alwaysOpened?: false | undefined;
|
1262
1425
|
} & {
|
1426
|
+
name?: undefined;
|
1263
1427
|
multiple?: false | undefined;
|
1264
1428
|
value?: string | undefined;
|
1429
|
+
defaultValue?: undefined;
|
1265
1430
|
onChange?: ((value: string) => void) | undefined;
|
1266
1431
|
isTargetAmount?: false | undefined;
|
1267
1432
|
targetAmount?: undefined;
|
@@ -1271,7 +1436,45 @@ true: PolymorphicClassName;
|
|
1271
1436
|
} & {
|
1272
1437
|
optional?: true | undefined;
|
1273
1438
|
required?: false | undefined;
|
1274
|
-
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1439
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1440
|
+
items: ItemOption[];
|
1441
|
+
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1442
|
+
label?: string | undefined;
|
1443
|
+
placeholder?: string | undefined;
|
1444
|
+
helperText?: string | undefined;
|
1445
|
+
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1446
|
+
textBefore?: string | undefined;
|
1447
|
+
textAfter?: string | undefined;
|
1448
|
+
variant?: "normal" | "tight" | undefined;
|
1449
|
+
listOverflow?: Property.Overflow | undefined;
|
1450
|
+
listHeight?: Property.Height<string | number> | undefined;
|
1451
|
+
listWidth?: Property.Width<string | number> | undefined;
|
1452
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1453
|
+
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1454
|
+
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1455
|
+
closeAfterSelect?: boolean | undefined;
|
1456
|
+
size?: string | undefined;
|
1457
|
+
view?: string | undefined;
|
1458
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
1459
|
+
} & {
|
1460
|
+
readOnly?: true | undefined;
|
1461
|
+
disabled?: boolean | undefined;
|
1462
|
+
alwaysOpened?: false | undefined;
|
1463
|
+
} & {
|
1464
|
+
multiple: true;
|
1465
|
+
value?: string[] | undefined;
|
1466
|
+
defaultValue?: string[] | undefined;
|
1467
|
+
onChange?: ChangeEventHandler<Element> | undefined;
|
1468
|
+
isTargetAmount?: false | undefined;
|
1469
|
+
targetAmount?: undefined;
|
1470
|
+
renderValue?: undefined;
|
1471
|
+
name: string;
|
1472
|
+
} & {
|
1473
|
+
requiredPlacement?: "right" | "left" | undefined;
|
1474
|
+
} & {
|
1475
|
+
required: true;
|
1476
|
+
optional?: false | undefined;
|
1477
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1275
1478
|
items: ItemOption[];
|
1276
1479
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1277
1480
|
label?: string | undefined;
|
@@ -1284,7 +1487,7 @@ true: PolymorphicClassName;
|
|
1284
1487
|
listOverflow?: Property.Overflow | undefined;
|
1285
1488
|
listHeight?: Property.Height<string | number> | undefined;
|
1286
1489
|
listWidth?: Property.Width<string | number> | undefined;
|
1287
|
-
portal?:
|
1490
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1288
1491
|
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1289
1492
|
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1290
1493
|
closeAfterSelect?: boolean | undefined;
|
@@ -1298,16 +1501,132 @@ true: PolymorphicClassName;
|
|
1298
1501
|
} & {
|
1299
1502
|
multiple: true;
|
1300
1503
|
value?: string[] | undefined;
|
1504
|
+
defaultValue?: string[] | undefined;
|
1505
|
+
onChange?: ChangeEventHandler<Element> | undefined;
|
1506
|
+
isTargetAmount?: false | undefined;
|
1507
|
+
targetAmount?: undefined;
|
1508
|
+
renderValue?: undefined;
|
1509
|
+
name: string;
|
1510
|
+
} & {
|
1511
|
+
requiredPlacement?: "right" | "left" | undefined;
|
1512
|
+
} & {
|
1513
|
+
optional?: true | undefined;
|
1514
|
+
required?: false | undefined;
|
1515
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1516
|
+
items: ItemOption[];
|
1517
|
+
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1518
|
+
label?: string | undefined;
|
1519
|
+
placeholder?: string | undefined;
|
1520
|
+
helperText?: string | undefined;
|
1521
|
+
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1522
|
+
textBefore?: string | undefined;
|
1523
|
+
textAfter?: string | undefined;
|
1524
|
+
variant?: "normal" | "tight" | undefined;
|
1525
|
+
listOverflow?: Property.Overflow | undefined;
|
1526
|
+
listHeight?: Property.Height<string | number> | undefined;
|
1527
|
+
listWidth?: Property.Width<string | number> | undefined;
|
1528
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1529
|
+
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1530
|
+
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1531
|
+
closeAfterSelect?: boolean | undefined;
|
1532
|
+
size?: string | undefined;
|
1533
|
+
view?: string | undefined;
|
1534
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
1535
|
+
} & {
|
1536
|
+
readOnly?: true | undefined;
|
1537
|
+
disabled?: boolean | undefined;
|
1538
|
+
alwaysOpened?: false | undefined;
|
1539
|
+
} & {
|
1540
|
+
multiple?: false | undefined;
|
1541
|
+
value?: string | undefined;
|
1542
|
+
defaultValue?: string | undefined;
|
1543
|
+
onChange?: ChangeEventHandler<Element> | undefined;
|
1544
|
+
isTargetAmount?: false | undefined;
|
1545
|
+
targetAmount?: undefined;
|
1546
|
+
renderValue?: undefined;
|
1547
|
+
name: string;
|
1548
|
+
} & {
|
1549
|
+
requiredPlacement?: "right" | "left" | undefined;
|
1550
|
+
} & {
|
1551
|
+
required: true;
|
1552
|
+
optional?: false | undefined;
|
1553
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1554
|
+
items: ItemOption[];
|
1555
|
+
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1556
|
+
label?: string | undefined;
|
1557
|
+
placeholder?: string | undefined;
|
1558
|
+
helperText?: string | undefined;
|
1559
|
+
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1560
|
+
textBefore?: string | undefined;
|
1561
|
+
textAfter?: string | undefined;
|
1562
|
+
variant?: "normal" | "tight" | undefined;
|
1563
|
+
listOverflow?: Property.Overflow | undefined;
|
1564
|
+
listHeight?: Property.Height<string | number> | undefined;
|
1565
|
+
listWidth?: Property.Width<string | number> | undefined;
|
1566
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1567
|
+
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1568
|
+
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1569
|
+
closeAfterSelect?: boolean | undefined;
|
1570
|
+
size?: string | undefined;
|
1571
|
+
view?: string | undefined;
|
1572
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
1573
|
+
} & {
|
1574
|
+
readOnly?: true | undefined;
|
1575
|
+
disabled?: boolean | undefined;
|
1576
|
+
alwaysOpened?: false | undefined;
|
1577
|
+
} & {
|
1578
|
+
multiple?: false | undefined;
|
1579
|
+
value?: string | undefined;
|
1580
|
+
defaultValue?: string | undefined;
|
1581
|
+
onChange?: ChangeEventHandler<Element> | undefined;
|
1582
|
+
isTargetAmount?: false | undefined;
|
1583
|
+
targetAmount?: undefined;
|
1584
|
+
renderValue?: undefined;
|
1585
|
+
name: string;
|
1586
|
+
} & {
|
1587
|
+
requiredPlacement?: "right" | "left" | undefined;
|
1588
|
+
} & {
|
1589
|
+
optional?: true | undefined;
|
1590
|
+
required?: false | undefined;
|
1591
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1592
|
+
items: ItemOption[];
|
1593
|
+
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1594
|
+
label?: string | undefined;
|
1595
|
+
placeholder?: string | undefined;
|
1596
|
+
helperText?: string | undefined;
|
1597
|
+
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1598
|
+
textBefore?: string | undefined;
|
1599
|
+
textAfter?: string | undefined;
|
1600
|
+
variant?: "normal" | "tight" | undefined;
|
1601
|
+
listOverflow?: Property.Overflow | undefined;
|
1602
|
+
listHeight?: Property.Height<string | number> | undefined;
|
1603
|
+
listWidth?: Property.Width<string | number> | undefined;
|
1604
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1605
|
+
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1606
|
+
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1607
|
+
closeAfterSelect?: boolean | undefined;
|
1608
|
+
size?: string | undefined;
|
1609
|
+
view?: string | undefined;
|
1610
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
1611
|
+
} & {
|
1612
|
+
readOnly?: true | undefined;
|
1613
|
+
disabled?: boolean | undefined;
|
1614
|
+
alwaysOpened?: false | undefined;
|
1615
|
+
} & {
|
1616
|
+
multiple: true;
|
1617
|
+
value?: string[] | undefined;
|
1618
|
+
defaultValue?: undefined;
|
1301
1619
|
onChange?: ((value: string[]) => void) | undefined;
|
1302
1620
|
isTargetAmount?: true | undefined;
|
1303
1621
|
targetAmount?: number | undefined;
|
1304
1622
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
1623
|
+
name?: undefined;
|
1305
1624
|
} & {
|
1306
1625
|
requiredPlacement?: "right" | "left" | undefined;
|
1307
1626
|
} & {
|
1308
1627
|
required: true;
|
1309
1628
|
optional?: false | undefined;
|
1310
|
-
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1629
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1311
1630
|
items: ItemOption[];
|
1312
1631
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1313
1632
|
label?: string | undefined;
|
@@ -1320,7 +1639,7 @@ true: PolymorphicClassName;
|
|
1320
1639
|
listOverflow?: Property.Overflow | undefined;
|
1321
1640
|
listHeight?: Property.Height<string | number> | undefined;
|
1322
1641
|
listWidth?: Property.Width<string | number> | undefined;
|
1323
|
-
portal?:
|
1642
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1324
1643
|
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1325
1644
|
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1326
1645
|
closeAfterSelect?: boolean | undefined;
|
@@ -1334,16 +1653,18 @@ true: PolymorphicClassName;
|
|
1334
1653
|
} & {
|
1335
1654
|
multiple: true;
|
1336
1655
|
value?: string[] | undefined;
|
1656
|
+
defaultValue?: undefined;
|
1337
1657
|
onChange?: ((value: string[]) => void) | undefined;
|
1338
1658
|
isTargetAmount?: true | undefined;
|
1339
1659
|
targetAmount?: number | undefined;
|
1340
1660
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
1661
|
+
name?: undefined;
|
1341
1662
|
} & {
|
1342
1663
|
requiredPlacement?: "right" | "left" | undefined;
|
1343
1664
|
} & {
|
1344
1665
|
optional?: true | undefined;
|
1345
1666
|
required?: false | undefined;
|
1346
|
-
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1667
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1347
1668
|
items: ItemOption[];
|
1348
1669
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1349
1670
|
label?: string | undefined;
|
@@ -1356,7 +1677,7 @@ true: PolymorphicClassName;
|
|
1356
1677
|
listOverflow?: Property.Overflow | undefined;
|
1357
1678
|
listHeight?: Property.Height<string | number> | undefined;
|
1358
1679
|
listWidth?: Property.Width<string | number> | undefined;
|
1359
|
-
portal?:
|
1680
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1360
1681
|
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1361
1682
|
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1362
1683
|
closeAfterSelect?: boolean | undefined;
|
@@ -1368,8 +1689,10 @@ true: PolymorphicClassName;
|
|
1368
1689
|
disabled?: false | undefined;
|
1369
1690
|
alwaysOpened?: true | undefined;
|
1370
1691
|
} & {
|
1692
|
+
name?: undefined;
|
1371
1693
|
multiple?: false | undefined;
|
1372
1694
|
value?: string | undefined;
|
1695
|
+
defaultValue?: undefined;
|
1373
1696
|
onChange?: ((value: string) => void) | undefined;
|
1374
1697
|
isTargetAmount?: false | undefined;
|
1375
1698
|
targetAmount?: undefined;
|
@@ -1379,7 +1702,7 @@ true: PolymorphicClassName;
|
|
1379
1702
|
} & {
|
1380
1703
|
required: true;
|
1381
1704
|
optional?: false | undefined;
|
1382
|
-
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1705
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1383
1706
|
items: ItemOption[];
|
1384
1707
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1385
1708
|
label?: string | undefined;
|
@@ -1392,7 +1715,7 @@ true: PolymorphicClassName;
|
|
1392
1715
|
listOverflow?: Property.Overflow | undefined;
|
1393
1716
|
listHeight?: Property.Height<string | number> | undefined;
|
1394
1717
|
listWidth?: Property.Width<string | number> | undefined;
|
1395
|
-
portal?:
|
1718
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1396
1719
|
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1397
1720
|
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1398
1721
|
closeAfterSelect?: boolean | undefined;
|
@@ -1404,8 +1727,10 @@ true: PolymorphicClassName;
|
|
1404
1727
|
disabled?: false | undefined;
|
1405
1728
|
alwaysOpened?: true | undefined;
|
1406
1729
|
} & {
|
1730
|
+
name?: undefined;
|
1407
1731
|
multiple?: false | undefined;
|
1408
1732
|
value?: string | undefined;
|
1733
|
+
defaultValue?: undefined;
|
1409
1734
|
onChange?: ((value: string) => void) | undefined;
|
1410
1735
|
isTargetAmount?: false | undefined;
|
1411
1736
|
targetAmount?: undefined;
|
@@ -1415,7 +1740,45 @@ true: PolymorphicClassName;
|
|
1415
1740
|
} & {
|
1416
1741
|
optional?: true | undefined;
|
1417
1742
|
required?: false | undefined;
|
1418
|
-
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1743
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1744
|
+
items: ItemOption[];
|
1745
|
+
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1746
|
+
label?: string | undefined;
|
1747
|
+
placeholder?: string | undefined;
|
1748
|
+
helperText?: string | undefined;
|
1749
|
+
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1750
|
+
textBefore?: string | undefined;
|
1751
|
+
textAfter?: string | undefined;
|
1752
|
+
variant?: "normal" | "tight" | undefined;
|
1753
|
+
listOverflow?: Property.Overflow | undefined;
|
1754
|
+
listHeight?: Property.Height<string | number> | undefined;
|
1755
|
+
listWidth?: Property.Width<string | number> | undefined;
|
1756
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1757
|
+
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1758
|
+
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1759
|
+
closeAfterSelect?: boolean | undefined;
|
1760
|
+
size?: string | undefined;
|
1761
|
+
view?: string | undefined;
|
1762
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
1763
|
+
} & {
|
1764
|
+
readOnly?: false | undefined;
|
1765
|
+
disabled?: false | undefined;
|
1766
|
+
alwaysOpened?: true | undefined;
|
1767
|
+
} & {
|
1768
|
+
multiple: true;
|
1769
|
+
value?: string[] | undefined;
|
1770
|
+
defaultValue?: string[] | undefined;
|
1771
|
+
onChange?: ChangeEventHandler<Element> | undefined;
|
1772
|
+
isTargetAmount?: false | undefined;
|
1773
|
+
targetAmount?: undefined;
|
1774
|
+
renderValue?: undefined;
|
1775
|
+
name: string;
|
1776
|
+
} & {
|
1777
|
+
requiredPlacement?: "right" | "left" | undefined;
|
1778
|
+
} & {
|
1779
|
+
required: true;
|
1780
|
+
optional?: false | undefined;
|
1781
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1419
1782
|
items: ItemOption[];
|
1420
1783
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1421
1784
|
label?: string | undefined;
|
@@ -1428,7 +1791,7 @@ true: PolymorphicClassName;
|
|
1428
1791
|
listOverflow?: Property.Overflow | undefined;
|
1429
1792
|
listHeight?: Property.Height<string | number> | undefined;
|
1430
1793
|
listWidth?: Property.Width<string | number> | undefined;
|
1431
|
-
portal?:
|
1794
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1432
1795
|
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1433
1796
|
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1434
1797
|
closeAfterSelect?: boolean | undefined;
|
@@ -1442,16 +1805,132 @@ true: PolymorphicClassName;
|
|
1442
1805
|
} & {
|
1443
1806
|
multiple: true;
|
1444
1807
|
value?: string[] | undefined;
|
1808
|
+
defaultValue?: string[] | undefined;
|
1809
|
+
onChange?: ChangeEventHandler<Element> | undefined;
|
1810
|
+
isTargetAmount?: false | undefined;
|
1811
|
+
targetAmount?: undefined;
|
1812
|
+
renderValue?: undefined;
|
1813
|
+
name: string;
|
1814
|
+
} & {
|
1815
|
+
requiredPlacement?: "right" | "left" | undefined;
|
1816
|
+
} & {
|
1817
|
+
optional?: true | undefined;
|
1818
|
+
required?: false | undefined;
|
1819
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1820
|
+
items: ItemOption[];
|
1821
|
+
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1822
|
+
label?: string | undefined;
|
1823
|
+
placeholder?: string | undefined;
|
1824
|
+
helperText?: string | undefined;
|
1825
|
+
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1826
|
+
textBefore?: string | undefined;
|
1827
|
+
textAfter?: string | undefined;
|
1828
|
+
variant?: "normal" | "tight" | undefined;
|
1829
|
+
listOverflow?: Property.Overflow | undefined;
|
1830
|
+
listHeight?: Property.Height<string | number> | undefined;
|
1831
|
+
listWidth?: Property.Width<string | number> | undefined;
|
1832
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1833
|
+
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1834
|
+
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1835
|
+
closeAfterSelect?: boolean | undefined;
|
1836
|
+
size?: string | undefined;
|
1837
|
+
view?: string | undefined;
|
1838
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
1839
|
+
} & {
|
1840
|
+
readOnly?: false | undefined;
|
1841
|
+
disabled?: false | undefined;
|
1842
|
+
alwaysOpened?: true | undefined;
|
1843
|
+
} & {
|
1844
|
+
multiple?: false | undefined;
|
1845
|
+
value?: string | undefined;
|
1846
|
+
defaultValue?: string | undefined;
|
1847
|
+
onChange?: ChangeEventHandler<Element> | undefined;
|
1848
|
+
isTargetAmount?: false | undefined;
|
1849
|
+
targetAmount?: undefined;
|
1850
|
+
renderValue?: undefined;
|
1851
|
+
name: string;
|
1852
|
+
} & {
|
1853
|
+
requiredPlacement?: "right" | "left" | undefined;
|
1854
|
+
} & {
|
1855
|
+
required: true;
|
1856
|
+
optional?: false | undefined;
|
1857
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1858
|
+
items: ItemOption[];
|
1859
|
+
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1860
|
+
label?: string | undefined;
|
1861
|
+
placeholder?: string | undefined;
|
1862
|
+
helperText?: string | undefined;
|
1863
|
+
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1864
|
+
textBefore?: string | undefined;
|
1865
|
+
textAfter?: string | undefined;
|
1866
|
+
variant?: "normal" | "tight" | undefined;
|
1867
|
+
listOverflow?: Property.Overflow | undefined;
|
1868
|
+
listHeight?: Property.Height<string | number> | undefined;
|
1869
|
+
listWidth?: Property.Width<string | number> | undefined;
|
1870
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1871
|
+
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1872
|
+
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1873
|
+
closeAfterSelect?: boolean | undefined;
|
1874
|
+
size?: string | undefined;
|
1875
|
+
view?: string | undefined;
|
1876
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
1877
|
+
} & {
|
1878
|
+
readOnly?: false | undefined;
|
1879
|
+
disabled?: false | undefined;
|
1880
|
+
alwaysOpened?: true | undefined;
|
1881
|
+
} & {
|
1882
|
+
multiple?: false | undefined;
|
1883
|
+
value?: string | undefined;
|
1884
|
+
defaultValue?: string | undefined;
|
1885
|
+
onChange?: ChangeEventHandler<Element> | undefined;
|
1886
|
+
isTargetAmount?: false | undefined;
|
1887
|
+
targetAmount?: undefined;
|
1888
|
+
renderValue?: undefined;
|
1889
|
+
name: string;
|
1890
|
+
} & {
|
1891
|
+
requiredPlacement?: "right" | "left" | undefined;
|
1892
|
+
} & {
|
1893
|
+
optional?: true | undefined;
|
1894
|
+
required?: false | undefined;
|
1895
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1896
|
+
items: ItemOption[];
|
1897
|
+
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1898
|
+
label?: string | undefined;
|
1899
|
+
placeholder?: string | undefined;
|
1900
|
+
helperText?: string | undefined;
|
1901
|
+
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
1902
|
+
textBefore?: string | undefined;
|
1903
|
+
textAfter?: string | undefined;
|
1904
|
+
variant?: "normal" | "tight" | undefined;
|
1905
|
+
listOverflow?: Property.Overflow | undefined;
|
1906
|
+
listHeight?: Property.Height<string | number> | undefined;
|
1907
|
+
listWidth?: Property.Width<string | number> | undefined;
|
1908
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1909
|
+
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1910
|
+
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1911
|
+
closeAfterSelect?: boolean | undefined;
|
1912
|
+
size?: string | undefined;
|
1913
|
+
view?: string | undefined;
|
1914
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
1915
|
+
} & {
|
1916
|
+
readOnly?: false | undefined;
|
1917
|
+
disabled?: false | undefined;
|
1918
|
+
alwaysOpened?: true | undefined;
|
1919
|
+
} & {
|
1920
|
+
multiple: true;
|
1921
|
+
value?: string[] | undefined;
|
1922
|
+
defaultValue?: undefined;
|
1445
1923
|
onChange?: ((value: string[]) => void) | undefined;
|
1446
1924
|
isTargetAmount?: true | undefined;
|
1447
1925
|
targetAmount?: number | undefined;
|
1448
1926
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
1927
|
+
name?: undefined;
|
1449
1928
|
} & {
|
1450
1929
|
requiredPlacement?: "right" | "left" | undefined;
|
1451
1930
|
} & {
|
1452
1931
|
required: true;
|
1453
1932
|
optional?: false | undefined;
|
1454
|
-
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
|
1933
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>) | ({
|
1455
1934
|
items: ItemOption[];
|
1456
1935
|
placement?: ("top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end") | undefined;
|
1457
1936
|
label?: string | undefined;
|
@@ -1464,7 +1943,7 @@ true: PolymorphicClassName;
|
|
1464
1943
|
listOverflow?: Property.Overflow | undefined;
|
1465
1944
|
listHeight?: Property.Height<string | number> | undefined;
|
1466
1945
|
listWidth?: Property.Width<string | number> | undefined;
|
1467
|
-
portal?:
|
1946
|
+
portal?: MutableRefObject<HTMLElement | null> | undefined;
|
1468
1947
|
renderItem?: ((item: ItemOption) => ReactNode) | undefined;
|
1469
1948
|
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
1470
1949
|
closeAfterSelect?: boolean | undefined;
|
@@ -1478,16 +1957,18 @@ true: PolymorphicClassName;
|
|
1478
1957
|
} & {
|
1479
1958
|
multiple: true;
|
1480
1959
|
value?: string[] | undefined;
|
1960
|
+
defaultValue?: undefined;
|
1481
1961
|
onChange?: ((value: string[]) => void) | undefined;
|
1482
1962
|
isTargetAmount?: true | undefined;
|
1483
1963
|
targetAmount?: number | undefined;
|
1484
1964
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
1965
|
+
name?: undefined;
|
1485
1966
|
} & {
|
1486
1967
|
requiredPlacement?: "right" | "left" | undefined;
|
1487
1968
|
} & {
|
1488
1969
|
optional?: true | undefined;
|
1489
1970
|
required?: false | undefined;
|
1490
|
-
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & RefAttributes<HTMLInputElement>)), "view" | "size" | "disabled" | "readOnly" | "labelPlacement"> & {
|
1971
|
+
} & Omit<ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & RefAttributes<HTMLInputElement | HTMLSelectElement>)), "view" | "size" | "disabled" | "readOnly" | "labelPlacement"> & {
|
1491
1972
|
ref?: ForwardedRef<HTMLInputElement> | undefined;
|
1492
1973
|
}) => ReactElement | null;
|
1493
1974
|
|
@@ -3595,7 +4076,13 @@ export { SegmentProvider }
|
|
3595
4076
|
export { SegmentProviderProps }
|
3596
4077
|
|
3597
4078
|
// @public (undocumented)
|
3598
|
-
export const Select: React_2.ForwardRefExoticComponent<Omit<SelectProps
|
4079
|
+
export const Select: React_2.ForwardRefExoticComponent<Omit<SelectProps, "view" | "size" | "chipView"> & Pick<PropsType< {
|
4080
|
+
size: {
|
4081
|
+
xs: PolymorphicClassName;
|
4082
|
+
s: PolymorphicClassName;
|
4083
|
+
m: PolymorphicClassName;
|
4084
|
+
l: PolymorphicClassName;
|
4085
|
+
};
|
3599
4086
|
view: {
|
3600
4087
|
default: PolymorphicClassName;
|
3601
4088
|
positive: PolymorphicClassName;
|
@@ -3608,24 +4095,11 @@ dark: PolymorphicClassName;
|
|
3608
4095
|
black: PolymorphicClassName;
|
3609
4096
|
white: PolymorphicClassName;
|
3610
4097
|
};
|
3611
|
-
size: {
|
3612
|
-
l: PolymorphicClassName;
|
3613
|
-
m: PolymorphicClassName;
|
3614
|
-
s: PolymorphicClassName;
|
3615
|
-
xs: PolymorphicClassName;
|
3616
|
-
};
|
3617
|
-
labelPlacement: {
|
3618
|
-
inner: PolymorphicClassName;
|
3619
|
-
outer: PolymorphicClassName;
|
3620
|
-
};
|
3621
4098
|
chipView: {
|
3622
4099
|
default: PolymorphicClassName;
|
3623
4100
|
secondary: PolymorphicClassName;
|
3624
4101
|
accent: PolymorphicClassName;
|
3625
4102
|
};
|
3626
|
-
disabled: {
|
3627
|
-
true: PolymorphicClassName;
|
3628
|
-
};
|
3629
4103
|
}> & (({
|
3630
4104
|
target?: "textfield-like" | undefined;
|
3631
4105
|
view?: "default" | "positive" | "warning" | "negative" | undefined;
|
@@ -3637,33 +4111,33 @@ true: PolymorphicClassName;
|
|
3637
4111
|
multiselect?: false | undefined;
|
3638
4112
|
separator?: undefined;
|
3639
4113
|
} & {
|
3640
|
-
value
|
4114
|
+
value: any;
|
3641
4115
|
onChange?: ((value: any) => void) | undefined;
|
3642
4116
|
listOverflow?: Property.Overflow | undefined;
|
3643
4117
|
listHeight?: Property.Height<string | number> | undefined;
|
4118
|
+
status?: "warning" | "success" | "error" | undefined;
|
3644
4119
|
placeholder?: string | undefined;
|
3645
4120
|
helperText?: string | undefined;
|
3646
4121
|
disabled?: boolean | undefined;
|
3647
|
-
items?:
|
3648
|
-
onItemSelect?: ((e:
|
4122
|
+
items?: MergedDropdownNode[] | undefined;
|
4123
|
+
onItemSelect?: ((e: MergedDropdownNode, event: React_2.SyntheticEvent<Element, Event>) => void) | undefined;
|
4124
|
+
hasItems?: boolean | undefined;
|
3649
4125
|
children?: undefined;
|
4126
|
+
isOpen?: boolean | undefined;
|
3650
4127
|
isTargetAmount?: boolean | undefined;
|
3651
|
-
renderTarget?: ((item:
|
3652
|
-
placement?: ("
|
4128
|
+
renderTarget?: ((item: MergedDropdownNode | MergedDropdownNode[]) => React_2.ReactNode) | undefined;
|
4129
|
+
placement?: ("auto" | ("top" | "bottom" | "right" | "left")) | ("top" | "bottom" | "right" | "left")[] | undefined;
|
3653
4130
|
label?: string | undefined;
|
3654
4131
|
onScrollBottom?: ((e: React_2.UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
|
3655
4132
|
variant?: "normal" | "tight" | undefined;
|
3656
4133
|
listWidth?: Property.Width<string | number> | undefined;
|
3657
4134
|
portal?: string | React_2.RefObject<HTMLElement> | undefined;
|
3658
|
-
renderValue?: ((item:
|
3659
|
-
renderItem?: ((item:
|
4135
|
+
renderValue?: ((item: MergedDropdownNode) => string) | undefined;
|
4136
|
+
renderItem?: ((item: MergedDropdownNode) => React_2.ReactNode) | undefined;
|
3660
4137
|
closeAfterSelect?: boolean | undefined;
|
3661
4138
|
size?: string | undefined;
|
3662
4139
|
view?: string | undefined;
|
3663
4140
|
chipView?: string | undefined;
|
3664
|
-
status?: "warning" | "success" | "error" | undefined;
|
3665
|
-
hasItems?: boolean | undefined;
|
3666
|
-
isOpen?: boolean | undefined;
|
3667
4141
|
} & Omit<React_2.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "nonce" | "onResize" | "onResizeCapture" | "value"> & React_2.RefAttributes<HTMLButtonElement>) | ({
|
3668
4142
|
target?: "textfield-like" | undefined;
|
3669
4143
|
view?: "default" | "positive" | "warning" | "negative" | undefined;
|
@@ -3675,33 +4149,33 @@ true: PolymorphicClassName;
|
|
3675
4149
|
multiselect?: true | undefined;
|
3676
4150
|
separator?: string | undefined;
|
3677
4151
|
} & {
|
3678
|
-
value
|
4152
|
+
value: any;
|
3679
4153
|
onChange?: ((value: any) => void) | undefined;
|
3680
4154
|
listOverflow?: Property.Overflow | undefined;
|
3681
4155
|
listHeight?: Property.Height<string | number> | undefined;
|
4156
|
+
status?: "warning" | "success" | "error" | undefined;
|
3682
4157
|
placeholder?: string | undefined;
|
3683
4158
|
helperText?: string | undefined;
|
3684
4159
|
disabled?: boolean | undefined;
|
3685
|
-
items?:
|
3686
|
-
onItemSelect?: ((e:
|
4160
|
+
items?: MergedDropdownNode[] | undefined;
|
4161
|
+
onItemSelect?: ((e: MergedDropdownNode, event: React_2.SyntheticEvent<Element, Event>) => void) | undefined;
|
4162
|
+
hasItems?: boolean | undefined;
|
3687
4163
|
children?: undefined;
|
4164
|
+
isOpen?: boolean | undefined;
|
3688
4165
|
isTargetAmount?: boolean | undefined;
|
3689
|
-
renderTarget?: ((item:
|
3690
|
-
placement?: ("
|
4166
|
+
renderTarget?: ((item: MergedDropdownNode | MergedDropdownNode[]) => React_2.ReactNode) | undefined;
|
4167
|
+
placement?: ("auto" | ("top" | "bottom" | "right" | "left")) | ("top" | "bottom" | "right" | "left")[] | undefined;
|
3691
4168
|
label?: string | undefined;
|
3692
4169
|
onScrollBottom?: ((e: React_2.UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
|
3693
4170
|
variant?: "normal" | "tight" | undefined;
|
3694
4171
|
listWidth?: Property.Width<string | number> | undefined;
|
3695
4172
|
portal?: string | React_2.RefObject<HTMLElement> | undefined;
|
3696
|
-
renderValue?: ((item:
|
3697
|
-
renderItem?: ((item:
|
4173
|
+
renderValue?: ((item: MergedDropdownNode) => string) | undefined;
|
4174
|
+
renderItem?: ((item: MergedDropdownNode) => React_2.ReactNode) | undefined;
|
3698
4175
|
closeAfterSelect?: boolean | undefined;
|
3699
4176
|
size?: string | undefined;
|
3700
4177
|
view?: string | undefined;
|
3701
4178
|
chipView?: string | undefined;
|
3702
|
-
status?: "warning" | "success" | "error" | undefined;
|
3703
|
-
hasItems?: boolean | undefined;
|
3704
|
-
isOpen?: boolean | undefined;
|
3705
4179
|
} & Omit<React_2.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "nonce" | "onResize" | "onResizeCapture" | "value"> & React_2.RefAttributes<HTMLButtonElement>) | ({
|
3706
4180
|
target?: "button-like" | undefined;
|
3707
4181
|
view?: "default" | "accent" | "secondary" | "positive" | "warning" | "negative" | "clear" | "dark" | "black" | "white" | undefined;
|
@@ -3713,33 +4187,33 @@ true: PolymorphicClassName;
|
|
3713
4187
|
multiselect?: false | undefined;
|
3714
4188
|
separator?: undefined;
|
3715
4189
|
} & {
|
3716
|
-
value
|
4190
|
+
value: any;
|
3717
4191
|
onChange?: ((value: any) => void) | undefined;
|
3718
4192
|
listOverflow?: Property.Overflow | undefined;
|
3719
4193
|
listHeight?: Property.Height<string | number> | undefined;
|
4194
|
+
status?: "warning" | "success" | "error" | undefined;
|
3720
4195
|
placeholder?: string | undefined;
|
3721
4196
|
helperText?: string | undefined;
|
3722
4197
|
disabled?: boolean | undefined;
|
3723
|
-
items?:
|
3724
|
-
onItemSelect?: ((e:
|
4198
|
+
items?: MergedDropdownNode[] | undefined;
|
4199
|
+
onItemSelect?: ((e: MergedDropdownNode, event: React_2.SyntheticEvent<Element, Event>) => void) | undefined;
|
4200
|
+
hasItems?: boolean | undefined;
|
3725
4201
|
children?: undefined;
|
4202
|
+
isOpen?: boolean | undefined;
|
3726
4203
|
isTargetAmount?: boolean | undefined;
|
3727
|
-
renderTarget?: ((item:
|
3728
|
-
placement?: ("
|
4204
|
+
renderTarget?: ((item: MergedDropdownNode | MergedDropdownNode[]) => React_2.ReactNode) | undefined;
|
4205
|
+
placement?: ("auto" | ("top" | "bottom" | "right" | "left")) | ("top" | "bottom" | "right" | "left")[] | undefined;
|
3729
4206
|
label?: string | undefined;
|
3730
4207
|
onScrollBottom?: ((e: React_2.UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
|
3731
4208
|
variant?: "normal" | "tight" | undefined;
|
3732
4209
|
listWidth?: Property.Width<string | number> | undefined;
|
3733
4210
|
portal?: string | React_2.RefObject<HTMLElement> | undefined;
|
3734
|
-
renderValue?: ((item:
|
3735
|
-
renderItem?: ((item:
|
4211
|
+
renderValue?: ((item: MergedDropdownNode) => string) | undefined;
|
4212
|
+
renderItem?: ((item: MergedDropdownNode) => React_2.ReactNode) | undefined;
|
3736
4213
|
closeAfterSelect?: boolean | undefined;
|
3737
4214
|
size?: string | undefined;
|
3738
4215
|
view?: string | undefined;
|
3739
4216
|
chipView?: string | undefined;
|
3740
|
-
status?: "warning" | "success" | "error" | undefined;
|
3741
|
-
hasItems?: boolean | undefined;
|
3742
|
-
isOpen?: boolean | undefined;
|
3743
4217
|
} & Omit<React_2.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "nonce" | "onResize" | "onResizeCapture" | "value"> & React_2.RefAttributes<HTMLButtonElement>) | ({
|
3744
4218
|
target?: "button-like" | undefined;
|
3745
4219
|
view?: "default" | "accent" | "secondary" | "positive" | "warning" | "negative" | "clear" | "dark" | "black" | "white" | undefined;
|
@@ -3751,33 +4225,33 @@ true: PolymorphicClassName;
|
|
3751
4225
|
multiselect?: true | undefined;
|
3752
4226
|
separator?: string | undefined;
|
3753
4227
|
} & {
|
3754
|
-
value
|
4228
|
+
value: any;
|
3755
4229
|
onChange?: ((value: any) => void) | undefined;
|
3756
4230
|
listOverflow?: Property.Overflow | undefined;
|
3757
4231
|
listHeight?: Property.Height<string | number> | undefined;
|
4232
|
+
status?: "warning" | "success" | "error" | undefined;
|
3758
4233
|
placeholder?: string | undefined;
|
3759
4234
|
helperText?: string | undefined;
|
3760
4235
|
disabled?: boolean | undefined;
|
3761
|
-
items?:
|
3762
|
-
onItemSelect?: ((e:
|
4236
|
+
items?: MergedDropdownNode[] | undefined;
|
4237
|
+
onItemSelect?: ((e: MergedDropdownNode, event: React_2.SyntheticEvent<Element, Event>) => void) | undefined;
|
4238
|
+
hasItems?: boolean | undefined;
|
3763
4239
|
children?: undefined;
|
4240
|
+
isOpen?: boolean | undefined;
|
3764
4241
|
isTargetAmount?: boolean | undefined;
|
3765
|
-
renderTarget?: ((item:
|
3766
|
-
placement?: ("
|
4242
|
+
renderTarget?: ((item: MergedDropdownNode | MergedDropdownNode[]) => React_2.ReactNode) | undefined;
|
4243
|
+
placement?: ("auto" | ("top" | "bottom" | "right" | "left")) | ("top" | "bottom" | "right" | "left")[] | undefined;
|
3767
4244
|
label?: string | undefined;
|
3768
4245
|
onScrollBottom?: ((e: React_2.UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
|
3769
4246
|
variant?: "normal" | "tight" | undefined;
|
3770
4247
|
listWidth?: Property.Width<string | number> | undefined;
|
3771
4248
|
portal?: string | React_2.RefObject<HTMLElement> | undefined;
|
3772
|
-
renderValue?: ((item:
|
3773
|
-
renderItem?: ((item:
|
4249
|
+
renderValue?: ((item: MergedDropdownNode) => string) | undefined;
|
4250
|
+
renderItem?: ((item: MergedDropdownNode) => React_2.ReactNode) | undefined;
|
3774
4251
|
closeAfterSelect?: boolean | undefined;
|
3775
4252
|
size?: string | undefined;
|
3776
4253
|
view?: string | undefined;
|
3777
4254
|
chipView?: string | undefined;
|
3778
|
-
status?: "warning" | "success" | "error" | undefined;
|
3779
|
-
hasItems?: boolean | undefined;
|
3780
|
-
isOpen?: boolean | undefined;
|
3781
4255
|
} & Omit<React_2.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "nonce" | "onResize" | "onResizeCapture" | "value"> & React_2.RefAttributes<HTMLButtonElement>)), "view" | "size" | "chipView"> & React_2.RefAttributes<HTMLButtonElement>>;
|
3782
4256
|
|
3783
4257
|
// @public
|