@aws-amplify/ui-react 2.0.1-next.1 → 2.0.1-next.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.css.map +2 -2
- package/dist/esm/index.js +17 -17
- package/dist/esm/index.js.map +3 -3
- package/dist/index.css +1 -1
- package/dist/index.css.map +2 -2
- package/dist/index.d.ts +1000 -321
- package/dist/index.js +16 -16
- package/dist/index.js.map +3 -3
- package/legacy/package.json +7 -0
- package/package.json +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
2
|
import React__default, { ReactNode, AriaAttributes } from 'react';
|
|
3
3
|
import * as _aws_amplify_ui from '@aws-amplify/ui';
|
|
4
|
-
import { theme, tokens } from '@aws-amplify/ui';
|
|
5
|
-
export { theme as defaultTheme, theme
|
|
4
|
+
import { theme, tokens, getServiceFacade, LoginMechanism } from '@aws-amplify/ui';
|
|
5
|
+
export { theme as defaultTheme, theme } from '@aws-amplify/ui';
|
|
6
6
|
import { Property } from 'csstype';
|
|
7
7
|
import * as xstate from 'xstate';
|
|
8
8
|
|
|
@@ -69,7 +69,10 @@ declare const extendTheming: (...allOverrideTokens: DeepPartial<Theme>[]) => {
|
|
|
69
69
|
transitionDuration: string;
|
|
70
70
|
fontSize: string;
|
|
71
71
|
lineHeight: string;
|
|
72
|
-
|
|
72
|
+
paddingBlockStart: string;
|
|
73
|
+
paddingBlockEnd: string;
|
|
74
|
+
paddingInlineStart: string;
|
|
75
|
+
paddingInlineEnd: string;
|
|
73
76
|
borderColor: string;
|
|
74
77
|
borderWidth: string;
|
|
75
78
|
borderStyle: string;
|
|
@@ -144,12 +147,18 @@ declare const extendTheming: (...allOverrideTokens: DeepPartial<Theme>[]) => {
|
|
|
144
147
|
small: {
|
|
145
148
|
fontSize: string;
|
|
146
149
|
lineHeight: string;
|
|
147
|
-
|
|
150
|
+
paddingBlockStart: string;
|
|
151
|
+
paddingBlockEnd: string;
|
|
152
|
+
paddingInlineStart: string;
|
|
153
|
+
paddingInlineEnd: string;
|
|
148
154
|
};
|
|
149
155
|
large: {
|
|
150
156
|
fontSize: string;
|
|
151
157
|
lineHeight: string;
|
|
152
|
-
|
|
158
|
+
paddingBlockStart: string;
|
|
159
|
+
paddingBlockEnd: string;
|
|
160
|
+
paddingInlineStart: string;
|
|
161
|
+
paddingInlineEnd: string;
|
|
153
162
|
};
|
|
154
163
|
};
|
|
155
164
|
card: {
|
|
@@ -189,7 +198,10 @@ declare const extendTheming: (...allOverrideTokens: DeepPartial<Theme>[]) => {
|
|
|
189
198
|
borderColor: string;
|
|
190
199
|
borderWidth: string;
|
|
191
200
|
borderRadius: string;
|
|
192
|
-
|
|
201
|
+
paddingBlockStart: string;
|
|
202
|
+
paddingBlockEnd: string;
|
|
203
|
+
paddingInlineStart: string;
|
|
204
|
+
paddingInlineEnd: string;
|
|
193
205
|
fontSize: string;
|
|
194
206
|
lineHeight: string;
|
|
195
207
|
transitionDuration: string;
|
|
@@ -199,12 +211,18 @@ declare const extendTheming: (...allOverrideTokens: DeepPartial<Theme>[]) => {
|
|
|
199
211
|
outlineOffset: string;
|
|
200
212
|
small: {
|
|
201
213
|
fontSize: string;
|
|
202
|
-
|
|
214
|
+
paddingBlockStart: string;
|
|
215
|
+
paddingBlockEnd: string;
|
|
216
|
+
paddingInlineStart: string;
|
|
217
|
+
paddingInlineEnd: string;
|
|
203
218
|
lineHeight: string;
|
|
204
219
|
};
|
|
205
220
|
large: {
|
|
206
221
|
fontSize: string;
|
|
207
|
-
|
|
222
|
+
paddingBlockStart: string;
|
|
223
|
+
paddingBlockEnd: string;
|
|
224
|
+
paddingInlineStart: string;
|
|
225
|
+
paddingInlineEnd: string;
|
|
208
226
|
lineHeight: string;
|
|
209
227
|
};
|
|
210
228
|
quiet: {
|
|
@@ -361,6 +379,16 @@ declare const extendTheming: (...allOverrideTokens: DeepPartial<Theme>[]) => {
|
|
|
361
379
|
borderRadius: string;
|
|
362
380
|
};
|
|
363
381
|
};
|
|
382
|
+
phonenumberfield: {
|
|
383
|
+
minWidth: string;
|
|
384
|
+
whiteSpace: string;
|
|
385
|
+
small: {
|
|
386
|
+
minWidth: string;
|
|
387
|
+
};
|
|
388
|
+
large: {
|
|
389
|
+
minWidth: string;
|
|
390
|
+
};
|
|
391
|
+
};
|
|
364
392
|
placeholder: {
|
|
365
393
|
borderRadius: string;
|
|
366
394
|
transitionDuration: string;
|
|
@@ -376,6 +404,66 @@ declare const extendTheming: (...allOverrideTokens: DeepPartial<Theme>[]) => {
|
|
|
376
404
|
height: string;
|
|
377
405
|
};
|
|
378
406
|
};
|
|
407
|
+
radio: {
|
|
408
|
+
alignItems: string;
|
|
409
|
+
justifyContent: string;
|
|
410
|
+
gap: string;
|
|
411
|
+
button: {
|
|
412
|
+
alignItems: string;
|
|
413
|
+
justifyContent: string;
|
|
414
|
+
width: string;
|
|
415
|
+
height: string;
|
|
416
|
+
boxSizing: string;
|
|
417
|
+
borderWidth: string;
|
|
418
|
+
borderStyle: string;
|
|
419
|
+
borderRadius: string;
|
|
420
|
+
borderColor: string;
|
|
421
|
+
color: string;
|
|
422
|
+
backgroundColor: string;
|
|
423
|
+
transitionProperty: string;
|
|
424
|
+
transitionDuration: string;
|
|
425
|
+
outlineColor: string;
|
|
426
|
+
outlineStyle: string;
|
|
427
|
+
outlineWidth: string;
|
|
428
|
+
outlineOffset: string;
|
|
429
|
+
before: {
|
|
430
|
+
content: string;
|
|
431
|
+
display: string;
|
|
432
|
+
width: string;
|
|
433
|
+
height: string;
|
|
434
|
+
borderRadius: string;
|
|
435
|
+
backgroundColor: string;
|
|
436
|
+
};
|
|
437
|
+
small: {
|
|
438
|
+
width: string;
|
|
439
|
+
height: string;
|
|
440
|
+
};
|
|
441
|
+
large: {
|
|
442
|
+
width: string;
|
|
443
|
+
height: string;
|
|
444
|
+
};
|
|
445
|
+
_checked: {
|
|
446
|
+
color: string;
|
|
447
|
+
_disabled: {
|
|
448
|
+
color: string;
|
|
449
|
+
};
|
|
450
|
+
};
|
|
451
|
+
_focus: {
|
|
452
|
+
borderColor: string;
|
|
453
|
+
boxShadow: string;
|
|
454
|
+
};
|
|
455
|
+
_disabled: {
|
|
456
|
+
borderColor: string;
|
|
457
|
+
backgroundColor: string;
|
|
458
|
+
color: string;
|
|
459
|
+
};
|
|
460
|
+
};
|
|
461
|
+
label: {
|
|
462
|
+
_disabled: {
|
|
463
|
+
color: string;
|
|
464
|
+
};
|
|
465
|
+
};
|
|
466
|
+
};
|
|
379
467
|
rating: {
|
|
380
468
|
large: {
|
|
381
469
|
size: string;
|
|
@@ -458,6 +546,40 @@ declare const extendTheming: (...allOverrideTokens: DeepPartial<Theme>[]) => {
|
|
|
458
546
|
width: string;
|
|
459
547
|
};
|
|
460
548
|
};
|
|
549
|
+
tabs: {
|
|
550
|
+
backgroundColor: string;
|
|
551
|
+
borderColor: string;
|
|
552
|
+
borderStyle: string;
|
|
553
|
+
borderWidth: string;
|
|
554
|
+
item: {
|
|
555
|
+
backgroundColor: string;
|
|
556
|
+
borderColor: string;
|
|
557
|
+
borderStyle: string;
|
|
558
|
+
borderWidth: string;
|
|
559
|
+
color: string;
|
|
560
|
+
fontSize: string;
|
|
561
|
+
fontWeight: number;
|
|
562
|
+
padding: string;
|
|
563
|
+
textAlign: string;
|
|
564
|
+
transitionDuration: string;
|
|
565
|
+
_hover: {
|
|
566
|
+
color: string;
|
|
567
|
+
};
|
|
568
|
+
_focus: {
|
|
569
|
+
color: string;
|
|
570
|
+
};
|
|
571
|
+
_active: {
|
|
572
|
+
color: string;
|
|
573
|
+
borderColor: string;
|
|
574
|
+
backgroundColor: string;
|
|
575
|
+
};
|
|
576
|
+
_disabled: {
|
|
577
|
+
color: string;
|
|
578
|
+
backgroundColor: string;
|
|
579
|
+
borderColor: string;
|
|
580
|
+
};
|
|
581
|
+
};
|
|
582
|
+
};
|
|
461
583
|
text: {
|
|
462
584
|
color: string;
|
|
463
585
|
primary: {
|
|
@@ -488,6 +610,18 @@ declare const extendTheming: (...allOverrideTokens: DeepPartial<Theme>[]) => {
|
|
|
488
610
|
medium: string;
|
|
489
611
|
large: string;
|
|
490
612
|
};
|
|
613
|
+
breakpoints: {
|
|
614
|
+
values: {
|
|
615
|
+
base: number;
|
|
616
|
+
small: number;
|
|
617
|
+
medium: number;
|
|
618
|
+
large: number;
|
|
619
|
+
xl: number;
|
|
620
|
+
xxl: number;
|
|
621
|
+
};
|
|
622
|
+
unit: string;
|
|
623
|
+
defaultBreakpoint: string;
|
|
624
|
+
};
|
|
491
625
|
colors: {
|
|
492
626
|
red: {
|
|
493
627
|
"10": string;
|
|
@@ -594,6 +728,7 @@ declare const extendTheming: (...allOverrideTokens: DeepPartial<Theme>[]) => {
|
|
|
594
728
|
primary: string;
|
|
595
729
|
secondary: string;
|
|
596
730
|
tertiary: string;
|
|
731
|
+
disabled: string;
|
|
597
732
|
inverse: string;
|
|
598
733
|
interactive: string;
|
|
599
734
|
hover: string;
|
|
@@ -608,6 +743,7 @@ declare const extendTheming: (...allOverrideTokens: DeepPartial<Theme>[]) => {
|
|
|
608
743
|
primary: string;
|
|
609
744
|
secondary: string;
|
|
610
745
|
tertiary: string;
|
|
746
|
+
disabled: string;
|
|
611
747
|
info: string;
|
|
612
748
|
warning: string;
|
|
613
749
|
error: string;
|
|
@@ -795,7 +931,10 @@ declare const useTheming: () => {
|
|
|
795
931
|
transitionDuration: string;
|
|
796
932
|
fontSize: string;
|
|
797
933
|
lineHeight: string;
|
|
798
|
-
|
|
934
|
+
paddingBlockStart: string;
|
|
935
|
+
paddingBlockEnd: string;
|
|
936
|
+
paddingInlineStart: string;
|
|
937
|
+
paddingInlineEnd: string;
|
|
799
938
|
borderColor: string;
|
|
800
939
|
borderWidth: string;
|
|
801
940
|
borderStyle: string;
|
|
@@ -870,12 +1009,18 @@ declare const useTheming: () => {
|
|
|
870
1009
|
small: {
|
|
871
1010
|
fontSize: string;
|
|
872
1011
|
lineHeight: string;
|
|
873
|
-
|
|
1012
|
+
paddingBlockStart: string;
|
|
1013
|
+
paddingBlockEnd: string;
|
|
1014
|
+
paddingInlineStart: string;
|
|
1015
|
+
paddingInlineEnd: string;
|
|
874
1016
|
};
|
|
875
1017
|
large: {
|
|
876
1018
|
fontSize: string;
|
|
877
1019
|
lineHeight: string;
|
|
878
|
-
|
|
1020
|
+
paddingBlockStart: string;
|
|
1021
|
+
paddingBlockEnd: string;
|
|
1022
|
+
paddingInlineStart: string;
|
|
1023
|
+
paddingInlineEnd: string;
|
|
879
1024
|
};
|
|
880
1025
|
};
|
|
881
1026
|
card: {
|
|
@@ -915,7 +1060,10 @@ declare const useTheming: () => {
|
|
|
915
1060
|
borderColor: string;
|
|
916
1061
|
borderWidth: string;
|
|
917
1062
|
borderRadius: string;
|
|
918
|
-
|
|
1063
|
+
paddingBlockStart: string;
|
|
1064
|
+
paddingBlockEnd: string;
|
|
1065
|
+
paddingInlineStart: string;
|
|
1066
|
+
paddingInlineEnd: string;
|
|
919
1067
|
fontSize: string;
|
|
920
1068
|
lineHeight: string;
|
|
921
1069
|
transitionDuration: string;
|
|
@@ -925,12 +1073,18 @@ declare const useTheming: () => {
|
|
|
925
1073
|
outlineOffset: string;
|
|
926
1074
|
small: {
|
|
927
1075
|
fontSize: string;
|
|
928
|
-
|
|
1076
|
+
paddingBlockStart: string;
|
|
1077
|
+
paddingBlockEnd: string;
|
|
1078
|
+
paddingInlineStart: string;
|
|
1079
|
+
paddingInlineEnd: string;
|
|
929
1080
|
lineHeight: string;
|
|
930
1081
|
};
|
|
931
1082
|
large: {
|
|
932
1083
|
fontSize: string;
|
|
933
|
-
|
|
1084
|
+
paddingBlockStart: string;
|
|
1085
|
+
paddingBlockEnd: string;
|
|
1086
|
+
paddingInlineStart: string;
|
|
1087
|
+
paddingInlineEnd: string;
|
|
934
1088
|
lineHeight: string;
|
|
935
1089
|
};
|
|
936
1090
|
quiet: {
|
|
@@ -1087,6 +1241,16 @@ declare const useTheming: () => {
|
|
|
1087
1241
|
borderRadius: string;
|
|
1088
1242
|
};
|
|
1089
1243
|
};
|
|
1244
|
+
phonenumberfield: {
|
|
1245
|
+
minWidth: string;
|
|
1246
|
+
whiteSpace: string;
|
|
1247
|
+
small: {
|
|
1248
|
+
minWidth: string;
|
|
1249
|
+
};
|
|
1250
|
+
large: {
|
|
1251
|
+
minWidth: string;
|
|
1252
|
+
};
|
|
1253
|
+
};
|
|
1090
1254
|
placeholder: {
|
|
1091
1255
|
borderRadius: string;
|
|
1092
1256
|
transitionDuration: string;
|
|
@@ -1102,6 +1266,66 @@ declare const useTheming: () => {
|
|
|
1102
1266
|
height: string;
|
|
1103
1267
|
};
|
|
1104
1268
|
};
|
|
1269
|
+
radio: {
|
|
1270
|
+
alignItems: string;
|
|
1271
|
+
justifyContent: string;
|
|
1272
|
+
gap: string;
|
|
1273
|
+
button: {
|
|
1274
|
+
alignItems: string;
|
|
1275
|
+
justifyContent: string;
|
|
1276
|
+
width: string;
|
|
1277
|
+
height: string;
|
|
1278
|
+
boxSizing: string;
|
|
1279
|
+
borderWidth: string;
|
|
1280
|
+
borderStyle: string;
|
|
1281
|
+
borderRadius: string;
|
|
1282
|
+
borderColor: string;
|
|
1283
|
+
color: string;
|
|
1284
|
+
backgroundColor: string;
|
|
1285
|
+
transitionProperty: string;
|
|
1286
|
+
transitionDuration: string;
|
|
1287
|
+
outlineColor: string;
|
|
1288
|
+
outlineStyle: string;
|
|
1289
|
+
outlineWidth: string;
|
|
1290
|
+
outlineOffset: string;
|
|
1291
|
+
before: {
|
|
1292
|
+
content: string;
|
|
1293
|
+
display: string;
|
|
1294
|
+
width: string;
|
|
1295
|
+
height: string;
|
|
1296
|
+
borderRadius: string;
|
|
1297
|
+
backgroundColor: string;
|
|
1298
|
+
};
|
|
1299
|
+
small: {
|
|
1300
|
+
width: string;
|
|
1301
|
+
height: string;
|
|
1302
|
+
};
|
|
1303
|
+
large: {
|
|
1304
|
+
width: string;
|
|
1305
|
+
height: string;
|
|
1306
|
+
};
|
|
1307
|
+
_checked: {
|
|
1308
|
+
color: string;
|
|
1309
|
+
_disabled: {
|
|
1310
|
+
color: string;
|
|
1311
|
+
};
|
|
1312
|
+
};
|
|
1313
|
+
_focus: {
|
|
1314
|
+
borderColor: string;
|
|
1315
|
+
boxShadow: string;
|
|
1316
|
+
};
|
|
1317
|
+
_disabled: {
|
|
1318
|
+
borderColor: string;
|
|
1319
|
+
backgroundColor: string;
|
|
1320
|
+
color: string;
|
|
1321
|
+
};
|
|
1322
|
+
};
|
|
1323
|
+
label: {
|
|
1324
|
+
_disabled: {
|
|
1325
|
+
color: string;
|
|
1326
|
+
};
|
|
1327
|
+
};
|
|
1328
|
+
};
|
|
1105
1329
|
rating: {
|
|
1106
1330
|
large: {
|
|
1107
1331
|
size: string;
|
|
@@ -1184,6 +1408,40 @@ declare const useTheming: () => {
|
|
|
1184
1408
|
width: string;
|
|
1185
1409
|
};
|
|
1186
1410
|
};
|
|
1411
|
+
tabs: {
|
|
1412
|
+
backgroundColor: string;
|
|
1413
|
+
borderColor: string;
|
|
1414
|
+
borderStyle: string;
|
|
1415
|
+
borderWidth: string;
|
|
1416
|
+
item: {
|
|
1417
|
+
backgroundColor: string;
|
|
1418
|
+
borderColor: string;
|
|
1419
|
+
borderStyle: string;
|
|
1420
|
+
borderWidth: string;
|
|
1421
|
+
color: string;
|
|
1422
|
+
fontSize: string;
|
|
1423
|
+
fontWeight: number;
|
|
1424
|
+
padding: string;
|
|
1425
|
+
textAlign: string;
|
|
1426
|
+
transitionDuration: string;
|
|
1427
|
+
_hover: {
|
|
1428
|
+
color: string;
|
|
1429
|
+
};
|
|
1430
|
+
_focus: {
|
|
1431
|
+
color: string;
|
|
1432
|
+
};
|
|
1433
|
+
_active: {
|
|
1434
|
+
color: string;
|
|
1435
|
+
borderColor: string;
|
|
1436
|
+
backgroundColor: string;
|
|
1437
|
+
};
|
|
1438
|
+
_disabled: {
|
|
1439
|
+
color: string;
|
|
1440
|
+
backgroundColor: string;
|
|
1441
|
+
borderColor: string;
|
|
1442
|
+
};
|
|
1443
|
+
};
|
|
1444
|
+
};
|
|
1187
1445
|
text: {
|
|
1188
1446
|
color: string;
|
|
1189
1447
|
primary: {
|
|
@@ -1214,6 +1472,18 @@ declare const useTheming: () => {
|
|
|
1214
1472
|
medium: string;
|
|
1215
1473
|
large: string;
|
|
1216
1474
|
};
|
|
1475
|
+
breakpoints: {
|
|
1476
|
+
values: {
|
|
1477
|
+
base: number;
|
|
1478
|
+
small: number;
|
|
1479
|
+
medium: number;
|
|
1480
|
+
large: number;
|
|
1481
|
+
xl: number;
|
|
1482
|
+
xxl: number;
|
|
1483
|
+
};
|
|
1484
|
+
unit: string;
|
|
1485
|
+
defaultBreakpoint: string;
|
|
1486
|
+
};
|
|
1217
1487
|
colors: {
|
|
1218
1488
|
red: {
|
|
1219
1489
|
"10": string;
|
|
@@ -1320,6 +1590,7 @@ declare const useTheming: () => {
|
|
|
1320
1590
|
primary: string;
|
|
1321
1591
|
secondary: string;
|
|
1322
1592
|
tertiary: string;
|
|
1593
|
+
disabled: string;
|
|
1323
1594
|
inverse: string;
|
|
1324
1595
|
interactive: string;
|
|
1325
1596
|
hover: string;
|
|
@@ -1334,6 +1605,7 @@ declare const useTheming: () => {
|
|
|
1334
1605
|
primary: string;
|
|
1335
1606
|
secondary: string;
|
|
1336
1607
|
tertiary: string;
|
|
1608
|
+
disabled: string;
|
|
1337
1609
|
info: string;
|
|
1338
1610
|
warning: string;
|
|
1339
1611
|
error: string;
|
|
@@ -1477,28 +1749,24 @@ interface AmplifyProviderProps {
|
|
|
1477
1749
|
declare function AmplifyProvider({ children, components, theming, }: AmplifyProviderProps): JSX.Element;
|
|
1478
1750
|
|
|
1479
1751
|
declare function SignUp(): JSX.Element;
|
|
1480
|
-
declare namespace SignUp {
|
|
1481
|
-
var AliasControl: ({ label, name, placeholder, }: {
|
|
1482
|
-
label?: any;
|
|
1483
|
-
name?: string;
|
|
1484
|
-
placeholder?: any;
|
|
1485
|
-
}) => JSX.Element;
|
|
1486
|
-
}
|
|
1487
1752
|
|
|
1488
1753
|
declare function SignIn(): JSX.Element;
|
|
1489
1754
|
|
|
1490
1755
|
declare function ConfirmSignUp(): JSX.Element;
|
|
1491
1756
|
|
|
1492
|
-
declare
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1757
|
+
declare type AuthenticatorProps = {
|
|
1758
|
+
children: (facade: ReturnType<typeof getServiceFacade>) => JSX.Element;
|
|
1759
|
+
className?: string;
|
|
1760
|
+
initialState?: 'signIn' | 'signUp' | 'resetPassword';
|
|
1761
|
+
loginMechanisms?: LoginMechanism[];
|
|
1762
|
+
};
|
|
1763
|
+
declare function Authenticator({ children, className, initialState, loginMechanisms, }: AuthenticatorProps): JSX.Element;
|
|
1496
1764
|
declare namespace Authenticator {
|
|
1497
1765
|
var ConfirmSignUp: typeof ConfirmSignUp;
|
|
1498
1766
|
var SignIn: typeof SignIn;
|
|
1499
1767
|
var SignUp: typeof SignUp;
|
|
1500
1768
|
}
|
|
1501
|
-
declare function withAuthenticator(Component: any): () => JSX.Element;
|
|
1769
|
+
declare function withAuthenticator(Component: any, props?: Omit<AuthenticatorProps, 'children'>): () => JSX.Element;
|
|
1502
1770
|
|
|
1503
1771
|
declare const index$1_AmplifyProvider: typeof AmplifyProvider;
|
|
1504
1772
|
declare const index$1_Authenticator: typeof Authenticator;
|
|
@@ -1537,31 +1805,12 @@ interface AriaProps {
|
|
|
1537
1805
|
}
|
|
1538
1806
|
declare type Sizes = 'small' | 'large';
|
|
1539
1807
|
|
|
1540
|
-
interface
|
|
1541
|
-
}
|
|
1542
|
-
|
|
1543
|
-
interface FlexStyleProps {
|
|
1544
|
-
/**
|
|
1545
|
-
* Controls where the flex items sit on the cross axis.
|
|
1546
|
-
*/
|
|
1547
|
-
alignItems?: Property.AlignItems;
|
|
1548
|
-
/**
|
|
1549
|
-
* Sets the distribution of space between and around content items
|
|
1550
|
-
*/
|
|
1551
|
-
alignContent?: Property.AlignContent;
|
|
1808
|
+
interface FlexStyleProps extends CSSLayoutStyleProps {
|
|
1552
1809
|
/**
|
|
1553
1810
|
* Sets how flex items are placed in the flex container defining the main axis
|
|
1554
1811
|
* and the direction (normal or reversed). (maps to flex-direction CSS property)
|
|
1555
1812
|
*/
|
|
1556
|
-
direction?: Property.FlexDirection
|
|
1557
|
-
/**
|
|
1558
|
-
* Spacing between child components
|
|
1559
|
-
*/
|
|
1560
|
-
gap?: Property.Gap;
|
|
1561
|
-
/**
|
|
1562
|
-
* Controls where the flex items sit on the main axis.
|
|
1563
|
-
*/
|
|
1564
|
-
justifyContent?: Property.JustifyContent;
|
|
1813
|
+
direction?: ResponsiveStyle<Property.FlexDirection>;
|
|
1565
1814
|
/**
|
|
1566
1815
|
* The flexWrap property is set on containers and it controls what happens when
|
|
1567
1816
|
* children overflow the size of the container along the main axis. By default,
|
|
@@ -1570,14 +1819,38 @@ interface FlexStyleProps {
|
|
|
1570
1819
|
* axis if needed.
|
|
1571
1820
|
* (maps to flex-wrap CSS property)
|
|
1572
1821
|
*/
|
|
1573
|
-
wrap?: Property.FlexWrap
|
|
1822
|
+
wrap?: ResponsiveStyle<Property.FlexWrap>;
|
|
1574
1823
|
}
|
|
1575
1824
|
interface FlexProps extends FlexStyleProps, BaseComponentProps {
|
|
1576
1825
|
}
|
|
1577
1826
|
|
|
1827
|
+
interface GridContainerStyleProps extends CSSLayoutStyleProps {
|
|
1828
|
+
autoColumns?: ResponsiveStyle<Property.GridAutoColumns>;
|
|
1829
|
+
autoFlow?: ResponsiveStyle<Property.GridAutoFlow>;
|
|
1830
|
+
autoRows?: ResponsiveStyle<Property.GridAutoRows>;
|
|
1831
|
+
columnGap?: ResponsiveStyle<Property.GridColumnGap>;
|
|
1832
|
+
rowGap?: ResponsiveStyle<Property.GridRowGap>;
|
|
1833
|
+
templateAreas?: ResponsiveStyle<Property.GridTemplateAreas>;
|
|
1834
|
+
templateColumns?: ResponsiveStyle<Property.GridTemplateColumns>;
|
|
1835
|
+
templateRows?: ResponsiveStyle<Property.GridTemplateRows>;
|
|
1836
|
+
}
|
|
1837
|
+
interface GridItemStyleProps {
|
|
1838
|
+
area?: ResponsiveStyle<Property.GridArea>;
|
|
1839
|
+
column?: ResponsiveStyle<Property.GridColumn>;
|
|
1840
|
+
columnEnd?: ResponsiveStyle<Property.GridColumnEnd>;
|
|
1841
|
+
columnSpan?: ResponsiveStyle<number | 'auto'>;
|
|
1842
|
+
columnStart?: ResponsiveStyle<Property.GridColumnStart>;
|
|
1843
|
+
row?: ResponsiveStyle<Property.GridRow>;
|
|
1844
|
+
rowEnd?: ResponsiveStyle<Property.GridRowEnd>;
|
|
1845
|
+
rowSpan?: ResponsiveStyle<number | 'auto'>;
|
|
1846
|
+
rowStart?: ResponsiveStyle<Property.GridRowStart>;
|
|
1847
|
+
}
|
|
1848
|
+
interface GridProps extends GridContainerStyleProps, ViewProps {
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1578
1851
|
interface ImageStyleProps {
|
|
1579
|
-
objectFit?: Property.ObjectFit
|
|
1580
|
-
objectPosition?: Property.ObjectPosition
|
|
1852
|
+
objectFit?: ResponsiveStyle<Property.ObjectFit>;
|
|
1853
|
+
objectPosition?: ResponsiveStyle<Property.ObjectPosition>;
|
|
1581
1854
|
}
|
|
1582
1855
|
interface ImageOptions extends ImageStyleProps {
|
|
1583
1856
|
/**
|
|
@@ -1611,30 +1884,58 @@ interface ImageOptions extends ImageStyleProps {
|
|
|
1611
1884
|
interface ImageProps extends ImageOptions, BaseComponentProps, BaseStyleProps {
|
|
1612
1885
|
}
|
|
1613
1886
|
|
|
1614
|
-
interface
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1887
|
+
interface ResponsiveObject<PropertyType> {
|
|
1888
|
+
base?: PropertyType;
|
|
1889
|
+
small?: PropertyType;
|
|
1890
|
+
medium?: PropertyType;
|
|
1891
|
+
large?: PropertyType;
|
|
1892
|
+
xl?: PropertyType;
|
|
1893
|
+
xxl?: PropertyType;
|
|
1894
|
+
}
|
|
1895
|
+
declare type ResponsiveStyle<PropertyType> = PropertyType | PropertyType[] | ResponsiveObject<PropertyType>;
|
|
1896
|
+
interface BaseStyleProps extends GridItemStyleProps {
|
|
1897
|
+
alignSelf?: ResponsiveStyle<Property.AlignSelf>;
|
|
1898
|
+
backgroundColor?: ResponsiveStyle<Property.BackgroundColor>;
|
|
1899
|
+
border?: ResponsiveStyle<Property.Border>;
|
|
1900
|
+
borderRadius?: ResponsiveStyle<Property.BorderRadius>;
|
|
1901
|
+
boxShadow?: ResponsiveStyle<Property.BoxShadow>;
|
|
1902
|
+
color?: ResponsiveStyle<Property.Color>;
|
|
1903
|
+
fontFamily?: ResponsiveStyle<Property.FontFamily>;
|
|
1904
|
+
fontSize?: ResponsiveStyle<Property.FontSize>;
|
|
1905
|
+
fontStyle?: ResponsiveStyle<Property.FontStyle>;
|
|
1906
|
+
fontWeight?: ResponsiveStyle<Property.FontWeight>;
|
|
1907
|
+
height?: ResponsiveStyle<Property.Height>;
|
|
1908
|
+
letterSpacing?: ResponsiveStyle<Property.LetterSpacing>;
|
|
1909
|
+
lineHeight?: ResponsiveStyle<Property.LineHeight>;
|
|
1910
|
+
maxHeight?: ResponsiveStyle<Property.MaxHeight>;
|
|
1911
|
+
maxWidth?: ResponsiveStyle<Property.MaxWidth>;
|
|
1912
|
+
minHeight?: ResponsiveStyle<Property.MinHeight>;
|
|
1913
|
+
minWidth?: ResponsiveStyle<Property.MinWidth>;
|
|
1914
|
+
opacity?: ResponsiveStyle<Property.Opacity>;
|
|
1915
|
+
padding?: ResponsiveStyle<Property.Padding>;
|
|
1916
|
+
textAlign?: ResponsiveStyle<Property.TextAlign>;
|
|
1917
|
+
textDecoration?: ResponsiveStyle<Property.TextDecoration>;
|
|
1918
|
+
width?: ResponsiveStyle<Property.Width>;
|
|
1919
|
+
}
|
|
1920
|
+
interface CSSLayoutStyleProps {
|
|
1921
|
+
/**
|
|
1922
|
+
* Controls where the Flex/Grid items sit on the cross axis.
|
|
1923
|
+
*/
|
|
1924
|
+
alignItems?: ResponsiveStyle<Property.AlignItems>;
|
|
1925
|
+
/**
|
|
1926
|
+
* Sets the distribution of space between and around content items
|
|
1927
|
+
*/
|
|
1928
|
+
alignContent?: ResponsiveStyle<Property.AlignContent>;
|
|
1929
|
+
/**
|
|
1930
|
+
* Controls where the Flex/Grid items sit on the main axis.
|
|
1931
|
+
*/
|
|
1932
|
+
justifyContent?: ResponsiveStyle<Property.JustifyContent>;
|
|
1933
|
+
/**
|
|
1934
|
+
* Spacing between child components. Shorthand for rowGap and columnGap.
|
|
1935
|
+
*/
|
|
1936
|
+
gap?: ResponsiveStyle<Property.Gap>;
|
|
1636
1937
|
}
|
|
1637
|
-
interface AllStyleProps extends BaseStyleProps, ImageStyleProps, FlexStyleProps {
|
|
1938
|
+
interface AllStyleProps extends BaseStyleProps, ImageStyleProps, FlexStyleProps, GridContainerStyleProps {
|
|
1638
1939
|
}
|
|
1639
1940
|
declare type ComponentPropToStyleProp = {
|
|
1640
1941
|
[key in keyof AllStyleProps]: keyof React.CSSProperties;
|
|
@@ -1645,27 +1946,17 @@ declare type ComponentPropToStyleProp = {
|
|
|
1645
1946
|
* such as wrap => flexWrap and direction => flexDirection
|
|
1646
1947
|
*/
|
|
1647
1948
|
declare const ComponentPropsToStylePropsMap: ComponentPropToStyleProp;
|
|
1949
|
+
declare const ComponentPropsToStylePropsMapKeys: (keyof AllStyleProps)[];
|
|
1648
1950
|
|
|
1649
|
-
declare type
|
|
1650
|
-
interface
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
as?: 'p' | 'span' | 'strong' | 'em';
|
|
1655
|
-
/**
|
|
1656
|
-
* This should be the primary way to handle different styles of text. Lower-level
|
|
1657
|
-
* text styling attributes like color can be set directly, that should be more of an
|
|
1658
|
-
* escape hatch.
|
|
1659
|
-
*/
|
|
1660
|
-
variation?: TextVariation;
|
|
1661
|
-
/**
|
|
1662
|
-
* This attribute will be used to indicate if the text component should truncate text
|
|
1663
|
-
* that exceeds the width of the text element. Truncated text will render an ellipsis.
|
|
1664
|
-
*/
|
|
1665
|
-
isTruncated?: boolean;
|
|
1951
|
+
declare type ViewAsHTMLElementTypes = keyof JSX.IntrinsicElements | React$1.ComponentType;
|
|
1952
|
+
interface ViewProps extends BaseComponentProps, BaseStyleProps, AriaProps {
|
|
1953
|
+
as?: ViewAsHTMLElementTypes;
|
|
1954
|
+
isDisabled?: boolean;
|
|
1955
|
+
style?: React$1.CSSProperties;
|
|
1666
1956
|
}
|
|
1667
1957
|
|
|
1668
|
-
interface
|
|
1958
|
+
interface VisuallyHiddenProps extends BaseComponentProps {
|
|
1959
|
+
as?: ViewAsHTMLElementTypes;
|
|
1669
1960
|
}
|
|
1670
1961
|
|
|
1671
1962
|
interface ViewBox {
|
|
@@ -1703,6 +1994,25 @@ interface IconProps extends BaseComponentProps, BaseStyleProps, AriaProps {
|
|
|
1703
1994
|
size?: IconSize;
|
|
1704
1995
|
}
|
|
1705
1996
|
|
|
1997
|
+
declare type TextVariation = 'primary' | 'secondary' | 'tertiary' | 'error' | 'warning' | 'info' | 'success';
|
|
1998
|
+
interface TextProps extends BaseComponentProps, BaseStyleProps {
|
|
1999
|
+
/**
|
|
2000
|
+
* HTML allowed tags
|
|
2001
|
+
*/
|
|
2002
|
+
as?: 'p' | 'span' | 'strong' | 'em';
|
|
2003
|
+
/**
|
|
2004
|
+
* This should be the primary way to handle different styles of text. Lower-level
|
|
2005
|
+
* text styling attributes like color can be set directly, that should be more of an
|
|
2006
|
+
* escape hatch.
|
|
2007
|
+
*/
|
|
2008
|
+
variation?: TextVariation;
|
|
2009
|
+
/**
|
|
2010
|
+
* This attribute will be used to indicate if the text component should truncate text
|
|
2011
|
+
* that exceeds the width of the text element. Truncated text will render an ellipsis.
|
|
2012
|
+
*/
|
|
2013
|
+
isTruncated?: boolean;
|
|
2014
|
+
}
|
|
2015
|
+
|
|
1706
2016
|
declare type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
1707
2017
|
interface HeadingProps extends TextProps {
|
|
1708
2018
|
level?: HeadingLevel;
|
|
@@ -1795,6 +2105,9 @@ interface ButtonProps extends BaseComponentProps, AriaProps {
|
|
|
1795
2105
|
variation?: ButtonVariation;
|
|
1796
2106
|
}
|
|
1797
2107
|
|
|
2108
|
+
interface CardProps extends BaseComponentProps, BaseStyleProps {
|
|
2109
|
+
}
|
|
2110
|
+
|
|
1798
2111
|
declare type CollectionType = 'list' | 'grid' | 'table';
|
|
1799
2112
|
interface CollectionTypeMapInterface {
|
|
1800
2113
|
[key: string]: CollectionType;
|
|
@@ -1827,10 +2140,165 @@ interface DividerOptions {
|
|
|
1827
2140
|
interface DividerProps extends DividerOptions, BaseComponentProps, BaseStyleProps {
|
|
1828
2141
|
}
|
|
1829
2142
|
|
|
2143
|
+
interface FieldGroupIconProps extends BaseComponentProps, BaseStyleProps, Pick<ButtonProps, 'onClick' | 'variation' | 'size' | 'type'>, Required<Pick<AriaProps, 'ariaLabel'>> {
|
|
2144
|
+
/**
|
|
2145
|
+
* React component to use instead of an anchor tag
|
|
2146
|
+
* This is used for react routing libraries that have routing components
|
|
2147
|
+
*/
|
|
2148
|
+
as?: React.ComponentType;
|
|
2149
|
+
/**
|
|
2150
|
+
* Determines whether Icon should be visible
|
|
2151
|
+
*/
|
|
2152
|
+
isVisible?: boolean;
|
|
2153
|
+
/**
|
|
2154
|
+
* Determines whether element should be focusable.
|
|
2155
|
+
* When set to false, tabindex="-1" will be set
|
|
2156
|
+
*/
|
|
2157
|
+
excludeFromTabOrder?: boolean;
|
|
2158
|
+
}
|
|
2159
|
+
interface FieldGroupIconButtonProps extends FieldGroupIconProps {
|
|
2160
|
+
}
|
|
2161
|
+
|
|
2162
|
+
declare type InputMode = 'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url';
|
|
2163
|
+
interface InputProps extends BaseComponentProps, BaseStyleProps, AriaProps {
|
|
2164
|
+
/**
|
|
2165
|
+
* Specifies permissions for browser UA to autocomplete field
|
|
2166
|
+
* @link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete
|
|
2167
|
+
*/
|
|
2168
|
+
autoComplete?: string;
|
|
2169
|
+
/**
|
|
2170
|
+
* If checked is provided, this will be a controlled checkbox or radio
|
|
2171
|
+
*/
|
|
2172
|
+
checked?: boolean;
|
|
2173
|
+
/**
|
|
2174
|
+
* Use this to initialize an uncontrolled checkbox or radio
|
|
2175
|
+
*/
|
|
2176
|
+
defaultChecked?: boolean;
|
|
2177
|
+
/**
|
|
2178
|
+
* Use this to provide a default value for an uncontrolled field
|
|
2179
|
+
*/
|
|
2180
|
+
defaultValue?: string | number | readonly string[];
|
|
2181
|
+
/**
|
|
2182
|
+
* Indicates that Field is in error state
|
|
2183
|
+
*/
|
|
2184
|
+
hasError?: boolean;
|
|
2185
|
+
/**
|
|
2186
|
+
* Provides hint for virtual keyboard shown
|
|
2187
|
+
* @link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode
|
|
2188
|
+
* @default: "text"
|
|
2189
|
+
*/
|
|
2190
|
+
inputMode?: InputMode;
|
|
2191
|
+
/**
|
|
2192
|
+
* Determines whether field should be disabled
|
|
2193
|
+
* @default false
|
|
2194
|
+
*/
|
|
2195
|
+
isDisabled?: boolean;
|
|
2196
|
+
/**
|
|
2197
|
+
* Determines whether field should be immutable
|
|
2198
|
+
* @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-readonly
|
|
2199
|
+
* @default false
|
|
2200
|
+
*/
|
|
2201
|
+
isReadOnly?: boolean;
|
|
2202
|
+
/**
|
|
2203
|
+
* Whether field should be marked required
|
|
2204
|
+
*/
|
|
2205
|
+
isRequired?: boolean;
|
|
2206
|
+
/**
|
|
2207
|
+
* Name of the field. Submitted with the form as part of a name/value pair.
|
|
2208
|
+
*/
|
|
2209
|
+
name?: string;
|
|
2210
|
+
/**
|
|
2211
|
+
* Input change event handler
|
|
2212
|
+
*/
|
|
2213
|
+
onChange?: React__default.ChangeEventHandler<HTMLInputElement>;
|
|
2214
|
+
/**
|
|
2215
|
+
*
|
|
2216
|
+
*/
|
|
2217
|
+
onInput?: React__default.ChangeEventHandler<HTMLInputElement>;
|
|
2218
|
+
/**
|
|
2219
|
+
* Copy clipboard event
|
|
2220
|
+
*/
|
|
2221
|
+
onCopy?: React__default.ClipboardEventHandler<HTMLInputElement>;
|
|
2222
|
+
/**
|
|
2223
|
+
* Cut clipboard event
|
|
2224
|
+
*/
|
|
2225
|
+
onCut?: React__default.ClipboardEventHandler<HTMLInputElement>;
|
|
2226
|
+
/**
|
|
2227
|
+
* Paste clipboard event
|
|
2228
|
+
*/
|
|
2229
|
+
onPaste?: React__default.ClipboardEventHandler<HTMLInputElement>;
|
|
2230
|
+
/**
|
|
2231
|
+
* Selection event
|
|
2232
|
+
*/
|
|
2233
|
+
onSelect?: React__default.FormEventHandler<HTMLInputElement>;
|
|
2234
|
+
/**
|
|
2235
|
+
* Fired on keyboard key down
|
|
2236
|
+
*/
|
|
2237
|
+
onKeyDown?: React__default.KeyboardEventHandler<HTMLInputElement>;
|
|
2238
|
+
/**
|
|
2239
|
+
* Placeholder text shown when field is empty
|
|
2240
|
+
* Accessibility tip: avoid putting important instructions for
|
|
2241
|
+
* filling out the TextField in the placeholder. Use descriptiveText
|
|
2242
|
+
* for important instructions
|
|
2243
|
+
*/
|
|
2244
|
+
placeholder?: string;
|
|
2245
|
+
/**
|
|
2246
|
+
* Changes the font-size, padding, and height of the field.
|
|
2247
|
+
*/
|
|
2248
|
+
size?: Sizes;
|
|
2249
|
+
/**
|
|
2250
|
+
* Input type
|
|
2251
|
+
* @default "text"
|
|
2252
|
+
*/
|
|
2253
|
+
type?: string;
|
|
2254
|
+
/**
|
|
2255
|
+
* If value is provided, this will be a controlled field
|
|
2256
|
+
*/
|
|
2257
|
+
value?: string | number | readonly string[];
|
|
2258
|
+
/**
|
|
2259
|
+
* Variants
|
|
2260
|
+
*/
|
|
2261
|
+
variation?: FieldVariations;
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2264
|
+
/**
|
|
2265
|
+
* Shared type across all field types
|
|
2266
|
+
*/
|
|
2267
|
+
interface FieldProps {
|
|
2268
|
+
/**
|
|
2269
|
+
* Provides additional information needed to fill field
|
|
2270
|
+
* (e.g. password requirements, etc.)
|
|
2271
|
+
*/
|
|
2272
|
+
descriptiveText?: React.ReactNode;
|
|
2273
|
+
/**
|
|
2274
|
+
* When defined and hasError is true, show error message
|
|
2275
|
+
*/
|
|
2276
|
+
errorMessage?: string;
|
|
2277
|
+
/**
|
|
2278
|
+
* Label text for field (required)
|
|
2279
|
+
*/
|
|
2280
|
+
label: React.ReactNode;
|
|
2281
|
+
/**
|
|
2282
|
+
* Hide label and use `aria-label` attribute instead. Common use case
|
|
2283
|
+
* is a search field.
|
|
2284
|
+
* @default false
|
|
2285
|
+
*/
|
|
2286
|
+
labelHidden?: boolean;
|
|
2287
|
+
}
|
|
2288
|
+
interface FieldClearButtonProps extends Partial<FieldGroupIconButtonProps> {
|
|
2289
|
+
}
|
|
2290
|
+
interface FieldDescriptionProps extends Pick<FieldProps, 'descriptiveText' | 'labelHidden'> {
|
|
2291
|
+
}
|
|
2292
|
+
interface FieldErrorMessageProps extends Pick<FieldProps, 'errorMessage'>, Pick<InputProps, 'hasError'> {
|
|
2293
|
+
}
|
|
2294
|
+
declare type FieldVariations = 'quiet';
|
|
2295
|
+
|
|
1830
2296
|
interface FieldGroupOptions extends BaseComponentProps, BaseStyleProps, FlexStyleProps {
|
|
1831
2297
|
children?: React.ReactNode;
|
|
1832
|
-
|
|
1833
|
-
|
|
2298
|
+
outerStartComponent?: React.ReactNode;
|
|
2299
|
+
outerEndComponent?: React.ReactNode;
|
|
2300
|
+
innerStartComponent?: React.ReactNode;
|
|
2301
|
+
innerEndComponent?: React.ReactNode;
|
|
1834
2302
|
}
|
|
1835
2303
|
|
|
1836
2304
|
interface LabelProps extends BaseComponentProps, AriaProps {
|
|
@@ -1924,58 +2392,45 @@ interface PaginationItemProps extends BaseComponentProps, BaseStyleProps, AriaPr
|
|
|
1924
2392
|
onClick?: (newPageIndex?: number, prevPageIndex?: number) => void;
|
|
1925
2393
|
}
|
|
1926
2394
|
|
|
1927
|
-
declare type
|
|
1928
|
-
interface
|
|
1929
|
-
/**
|
|
1930
|
-
* If true, the placeholder won't show, if false the placeholder will show. Default: false.
|
|
1931
|
-
*/
|
|
1932
|
-
isLoaded?: boolean;
|
|
1933
|
-
size?: PlaceholderSize;
|
|
1934
|
-
}
|
|
1935
|
-
|
|
1936
|
-
declare type RatingSize = 'small' | 'medium' | 'large';
|
|
1937
|
-
interface RatingOptions {
|
|
2395
|
+
declare type TextFieldType = 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'url' | string;
|
|
2396
|
+
interface TextFieldProps extends InputProps, FieldProps, FlexStyleProps {
|
|
1938
2397
|
/**
|
|
1939
|
-
*
|
|
1940
|
-
* Default css value is #A2A2A2
|
|
2398
|
+
* Input field type
|
|
1941
2399
|
*/
|
|
1942
|
-
|
|
2400
|
+
type?: TextFieldType;
|
|
1943
2401
|
/**
|
|
1944
|
-
*
|
|
1945
|
-
* override the empty icon an will create a rating component that uses
|
|
1946
|
-
* different icons for filled and empty icons.
|
|
2402
|
+
* Component(s) to show after input
|
|
1947
2403
|
*/
|
|
1948
|
-
|
|
2404
|
+
outerEndComponent?: React$1.ReactNode;
|
|
1949
2405
|
/**
|
|
1950
|
-
*
|
|
1951
|
-
* Default css value is #ffb400
|
|
2406
|
+
* Component(s) to show before input
|
|
1952
2407
|
*/
|
|
1953
|
-
|
|
2408
|
+
outerStartComponent?: React$1.ReactNode;
|
|
1954
2409
|
/**
|
|
1955
|
-
*
|
|
1956
|
-
* the filled and empty icon values unless an empty icon is specified
|
|
1957
|
-
* with the emptyIcon prop
|
|
1958
|
-
* Default is <IconStar />
|
|
2410
|
+
* FieldGroupIconButton component to show inside of input at start
|
|
1959
2411
|
*/
|
|
1960
|
-
|
|
2412
|
+
innerStartComponent?: React$1.ReactNode;
|
|
1961
2413
|
/**
|
|
1962
|
-
*
|
|
1963
|
-
* Default is 5
|
|
2414
|
+
* FieldGroupIconButton component to show inside of input at end
|
|
1964
2415
|
*/
|
|
1965
|
-
|
|
2416
|
+
innerEndComponent?: React$1.ReactNode;
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2419
|
+
interface PasswordFieldProps extends TextFieldProps {
|
|
1966
2420
|
/**
|
|
1967
|
-
*
|
|
1968
|
-
* This will set the icon size of the stars
|
|
1969
|
-
* Default css value is medium
|
|
2421
|
+
* For password fields, will hide the "show password" button
|
|
1970
2422
|
*/
|
|
1971
|
-
|
|
2423
|
+
hideShowPassword?: boolean;
|
|
1972
2424
|
/**
|
|
1973
|
-
*
|
|
1974
|
-
*
|
|
2425
|
+
* Password autocomplete type
|
|
2426
|
+
* See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values
|
|
2427
|
+
* @default "current-password"
|
|
1975
2428
|
*/
|
|
1976
|
-
|
|
2429
|
+
autoComplete?: 'new-password' | 'current-password' | string;
|
|
1977
2430
|
}
|
|
1978
|
-
|
|
2431
|
+
declare type PasswordFieldType = 'password' | 'text';
|
|
2432
|
+
interface ShowPasswordButtonProps extends Pick<ButtonProps, 'onClick' | 'size'> {
|
|
2433
|
+
fieldType: PasswordFieldType;
|
|
1979
2434
|
}
|
|
1980
2435
|
|
|
1981
2436
|
declare type SelectSize = 'small' | 'large';
|
|
@@ -1996,123 +2451,92 @@ interface SelectProps extends AriaProps, BaseComponentProps, BaseStyleProps {
|
|
|
1996
2451
|
onChange?: React$1.ChangeEventHandler<HTMLSelectElement>;
|
|
1997
2452
|
}
|
|
1998
2453
|
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
* Provides hint for virtual keyboard shown
|
|
2016
|
-
* @link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode
|
|
2017
|
-
* @default: "text"
|
|
2018
|
-
*/
|
|
2019
|
-
inputMode?: InputMode;
|
|
2020
|
-
/**
|
|
2021
|
-
* Determines whether field should be disabled
|
|
2022
|
-
* @default false
|
|
2023
|
-
*/
|
|
2024
|
-
isDisabled?: boolean;
|
|
2025
|
-
/**
|
|
2026
|
-
* Determines whether field should be immutable
|
|
2027
|
-
* @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-readonly
|
|
2028
|
-
* @default false
|
|
2029
|
-
*/
|
|
2030
|
-
isReadOnly?: boolean;
|
|
2031
|
-
/**
|
|
2032
|
-
* Whether field should be marked required
|
|
2033
|
-
*/
|
|
2034
|
-
isRequired?: boolean;
|
|
2035
|
-
/**
|
|
2036
|
-
* Name of the field. Submitted with the form as part of a name/value pair.
|
|
2037
|
-
*/
|
|
2038
|
-
name?: string;
|
|
2039
|
-
/**
|
|
2040
|
-
* Input change event handler
|
|
2041
|
-
*/
|
|
2042
|
-
onChange?: React__default.ChangeEventHandler<HTMLInputElement>;
|
|
2043
|
-
/**
|
|
2044
|
-
*
|
|
2045
|
-
*/
|
|
2046
|
-
onInput?: React__default.ChangeEventHandler<HTMLInputElement>;
|
|
2047
|
-
/**
|
|
2048
|
-
* Copy clipboard event
|
|
2049
|
-
*/
|
|
2050
|
-
onCopy?: React__default.ClipboardEventHandler<HTMLInputElement>;
|
|
2454
|
+
interface SelectFieldProps extends FieldProps, FlexStyleProps, SelectProps {
|
|
2455
|
+
}
|
|
2456
|
+
|
|
2457
|
+
interface PhoneNumberFieldProps extends TextFieldProps {
|
|
2458
|
+
countryCodeLabel?: string;
|
|
2459
|
+
countryCodeName?: string;
|
|
2460
|
+
defaultCountryCode: string;
|
|
2461
|
+
onCountryCodeChange?: React$1.ChangeEventHandler<HTMLSelectElement>;
|
|
2462
|
+
type?: 'tel';
|
|
2463
|
+
}
|
|
2464
|
+
interface CountryCodeSelectProps extends SelectFieldProps {
|
|
2465
|
+
defaultValue: string;
|
|
2466
|
+
}
|
|
2467
|
+
|
|
2468
|
+
declare type PlaceholderSize = 'small' | 'large';
|
|
2469
|
+
interface PlaceholderProps extends BaseComponentProps {
|
|
2051
2470
|
/**
|
|
2052
|
-
*
|
|
2471
|
+
* If true, the placeholder won't show, if false the placeholder will show. Default: false.
|
|
2053
2472
|
*/
|
|
2054
|
-
|
|
2473
|
+
isLoaded?: boolean;
|
|
2474
|
+
size?: PlaceholderSize;
|
|
2475
|
+
}
|
|
2476
|
+
|
|
2477
|
+
interface RadioProps extends BaseComponentProps, BaseStyleProps {
|
|
2478
|
+
value: string;
|
|
2479
|
+
isDisabled?: boolean;
|
|
2480
|
+
}
|
|
2481
|
+
|
|
2482
|
+
interface RadioGroupFieldProps extends FieldProps, FlexStyleProps, InputProps {
|
|
2483
|
+
name: string;
|
|
2484
|
+
value?: string;
|
|
2485
|
+
defaultValue?: string;
|
|
2486
|
+
}
|
|
2487
|
+
|
|
2488
|
+
declare type RatingSize = 'small' | 'medium' | 'large';
|
|
2489
|
+
interface RatingOptions {
|
|
2055
2490
|
/**
|
|
2056
|
-
*
|
|
2491
|
+
* The CSS color to use on the empty rating icon
|
|
2492
|
+
* Default css value is #A2A2A2
|
|
2057
2493
|
*/
|
|
2058
|
-
|
|
2494
|
+
emptyColor?: Property.Color;
|
|
2059
2495
|
/**
|
|
2060
|
-
*
|
|
2496
|
+
* This will override which icon to use as the empty icon. This will only
|
|
2497
|
+
* override the empty icon an will create a rating component that uses
|
|
2498
|
+
* different icons for filled and empty icons.
|
|
2061
2499
|
*/
|
|
2062
|
-
|
|
2500
|
+
emptyIcon?: JSX.Element;
|
|
2063
2501
|
/**
|
|
2064
|
-
*
|
|
2065
|
-
*
|
|
2066
|
-
* filling out the TextField in the placeholder. Use descriptiveText
|
|
2067
|
-
* for important instructions
|
|
2502
|
+
* The CSS color to use on the filled rating icon
|
|
2503
|
+
* Default css value is #ffb400
|
|
2068
2504
|
*/
|
|
2069
|
-
|
|
2505
|
+
fillColor?: Property.Color;
|
|
2070
2506
|
/**
|
|
2071
|
-
*
|
|
2507
|
+
* This will override which icon to use. This will override both
|
|
2508
|
+
* the filled and empty icon values unless an empty icon is specified
|
|
2509
|
+
* with the emptyIcon prop
|
|
2510
|
+
* Default is <IconStar />
|
|
2072
2511
|
*/
|
|
2073
|
-
|
|
2512
|
+
icon?: JSX.Element;
|
|
2074
2513
|
/**
|
|
2075
|
-
*
|
|
2076
|
-
*
|
|
2514
|
+
* The max rating integer value
|
|
2515
|
+
* Default is 5
|
|
2077
2516
|
*/
|
|
2078
|
-
|
|
2517
|
+
maxValue?: number;
|
|
2079
2518
|
/**
|
|
2080
|
-
*
|
|
2519
|
+
*
|
|
2520
|
+
* This will set the icon size of the stars
|
|
2521
|
+
* Default css value is medium
|
|
2081
2522
|
*/
|
|
2082
|
-
|
|
2523
|
+
size?: RatingSize;
|
|
2083
2524
|
/**
|
|
2084
|
-
*
|
|
2525
|
+
* The value of the rating
|
|
2526
|
+
* Default is 0
|
|
2085
2527
|
*/
|
|
2086
|
-
|
|
2528
|
+
value?: number;
|
|
2529
|
+
}
|
|
2530
|
+
interface RatingProps extends RatingOptions, BaseComponentProps, BaseStyleProps {
|
|
2087
2531
|
}
|
|
2088
2532
|
|
|
2089
|
-
|
|
2090
|
-
* Shared type across all field types
|
|
2091
|
-
*/
|
|
2092
|
-
interface FieldProps {
|
|
2093
|
-
/**
|
|
2094
|
-
* Provides additional information needed to fill field
|
|
2095
|
-
* (e.g. password requirements, etc.)
|
|
2096
|
-
*/
|
|
2097
|
-
descriptiveText?: React.ReactNode;
|
|
2098
|
-
/**
|
|
2099
|
-
* When defined and hasError is true, show error message
|
|
2100
|
-
*/
|
|
2101
|
-
errorMessage?: string;
|
|
2102
|
-
/**
|
|
2103
|
-
* Label text for field (required)
|
|
2104
|
-
*/
|
|
2105
|
-
label: React.ReactNode;
|
|
2533
|
+
interface SearchFieldProps extends TextFieldProps {
|
|
2106
2534
|
/**
|
|
2107
|
-
*
|
|
2108
|
-
* is a search field.
|
|
2109
|
-
* @default false
|
|
2535
|
+
* Handle submission of search field input
|
|
2110
2536
|
*/
|
|
2111
|
-
|
|
2537
|
+
onSubmit?: (value: string) => void;
|
|
2112
2538
|
}
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
interface SelectFieldProps extends FieldProps, FlexStyleProps, SelectProps {
|
|
2539
|
+
interface SearchFieldButtonProps extends Partial<FieldGroupIconButtonProps> {
|
|
2116
2540
|
}
|
|
2117
2541
|
|
|
2118
2542
|
declare type labelPositions = 'start' | 'end' | 'top' | 'bottom';
|
|
@@ -2172,42 +2596,45 @@ interface SwitchFieldProps extends InputProps, FieldProps, BaseStyleProps {
|
|
|
2172
2596
|
value?: string | number;
|
|
2173
2597
|
}
|
|
2174
2598
|
|
|
2175
|
-
declare type
|
|
2176
|
-
interface
|
|
2599
|
+
declare type TabsGrow = 'equal' | 'relative';
|
|
2600
|
+
interface TabsProps extends BaseComponentProps, AriaProps, BaseStyleProps, FlexStyleProps {
|
|
2177
2601
|
/**
|
|
2178
|
-
*
|
|
2602
|
+
* The Tabs component only accepts TabItem components as children.
|
|
2179
2603
|
*/
|
|
2180
|
-
|
|
2604
|
+
children: React__default.ReactElement | React__default.ReactElement[];
|
|
2181
2605
|
/**
|
|
2182
|
-
*
|
|
2606
|
+
* Change which Tab content is initially displayed. Pass in the index of the Tab you wish to show. The default is index 0 (the first tab).
|
|
2183
2607
|
*/
|
|
2184
|
-
|
|
2608
|
+
defaultIndex?: number | string;
|
|
2185
2609
|
/**
|
|
2186
|
-
*
|
|
2610
|
+
* The controlled index of the currently selected tab. This should be used with
|
|
2611
|
+
* `onChange` as well to make the component controlled.
|
|
2187
2612
|
*/
|
|
2188
|
-
|
|
2189
|
-
}
|
|
2190
|
-
|
|
2191
|
-
interface PasswordFieldProps extends Omit<TextFieldProps, 'type'> {
|
|
2613
|
+
currentIndex?: number | string;
|
|
2192
2614
|
/**
|
|
2193
|
-
* For
|
|
2615
|
+
* For controlled usage, use the onChange event to listen to when a tab is clicked
|
|
2616
|
+
* and update the `currentIndex` accordingly. The index of the tab clicked is passed
|
|
2617
|
+
* to onChange.
|
|
2194
2618
|
*/
|
|
2195
|
-
|
|
2619
|
+
onChange?: (value: number | string) => void;
|
|
2196
2620
|
/**
|
|
2197
|
-
*
|
|
2198
|
-
*
|
|
2199
|
-
* @default "current-password"
|
|
2621
|
+
* Control how Tabs take up the remaining space. Pass `equal` to make each tab take up the same amount of space,
|
|
2622
|
+
* and `relative` to make each tab take up space relative to the size of its title.
|
|
2200
2623
|
*/
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2624
|
+
grow?: TabsGrow;
|
|
2625
|
+
/**
|
|
2626
|
+
* Sets the border and indicator of the tabs to be the top or bottom.
|
|
2627
|
+
*/
|
|
2628
|
+
indicatorPosition?: 'top' | 'bottom';
|
|
2206
2629
|
}
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2630
|
+
interface TabItemProps extends BaseComponentProps, BaseStyleProps {
|
|
2631
|
+
/**
|
|
2632
|
+
* Change the title corresponding with each Tab's content panel.
|
|
2633
|
+
*/
|
|
2634
|
+
title: React__default.ReactNode;
|
|
2635
|
+
/**
|
|
2636
|
+
* Make a Tab not clickable and its content not visible to the user. Defaults to false (i.e., visible).
|
|
2637
|
+
*/
|
|
2211
2638
|
isDisabled?: boolean;
|
|
2212
2639
|
}
|
|
2213
2640
|
|
|
@@ -2225,8 +2652,14 @@ declare const Divider: React$1.FC<DividerProps>;
|
|
|
2225
2652
|
|
|
2226
2653
|
declare const FieldGroup: React$1.FC<FieldGroupOptions>;
|
|
2227
2654
|
|
|
2655
|
+
declare const FieldGroupIcon: React$1.FC<FieldGroupIconProps>;
|
|
2656
|
+
|
|
2657
|
+
declare const FieldGroupIconButton: React$1.FC<FieldGroupIconButtonProps>;
|
|
2658
|
+
|
|
2228
2659
|
declare const Flex: React__default.FC<FlexProps>;
|
|
2229
2660
|
|
|
2661
|
+
declare const Grid: React__default.FC<GridProps>;
|
|
2662
|
+
|
|
2230
2663
|
declare const Heading: React__default.FC<HeadingProps>;
|
|
2231
2664
|
|
|
2232
2665
|
declare const Icon: React__default.FC<IconProps>;
|
|
@@ -5871,12 +6304,31 @@ declare const Placeholder: React__default.FC<PlaceholderProps>;
|
|
|
5871
6304
|
|
|
5872
6305
|
declare const PasswordField: React$1.FC<PasswordFieldProps>;
|
|
5873
6306
|
|
|
6307
|
+
declare const Radio: React__default.FC<RadioProps>;
|
|
6308
|
+
|
|
6309
|
+
declare const RadioGroupField: React__default.FC<RadioGroupFieldProps>;
|
|
6310
|
+
|
|
5874
6311
|
declare const Rating: React__default.FC<RatingProps>;
|
|
5875
6312
|
|
|
5876
6313
|
declare const SelectField: React__default.FC<SelectFieldProps>;
|
|
5877
6314
|
|
|
6315
|
+
declare const useSearchField: (onSubmit: SearchFieldProps['onSubmit']) => {
|
|
6316
|
+
value: string;
|
|
6317
|
+
clearValue: () => void;
|
|
6318
|
+
onKeyDown: React$1.KeyboardEventHandler<HTMLInputElement>;
|
|
6319
|
+
onInput: React$1.ChangeEventHandler<HTMLInputElement>;
|
|
6320
|
+
onClick: (event: React$1.MouseEvent<Element, MouseEvent>) => void;
|
|
6321
|
+
};
|
|
6322
|
+
declare const SearchField: React$1.FC<SearchFieldProps>;
|
|
6323
|
+
|
|
5878
6324
|
declare const SwitchField: React__default.FC<SwitchFieldProps>;
|
|
5879
6325
|
|
|
6326
|
+
interface Tabs {
|
|
6327
|
+
(props: TabsProps): React__default.ReactComponentElement<any>;
|
|
6328
|
+
}
|
|
6329
|
+
declare const Tabs: Tabs;
|
|
6330
|
+
declare const TabItem: React__default.FC<TabItemProps>;
|
|
6331
|
+
|
|
5880
6332
|
declare const Text: React__default.FC<TextProps>;
|
|
5881
6333
|
|
|
5882
6334
|
declare const TextField: React$1.FC<TextFieldProps>;
|
|
@@ -5891,16 +6343,25 @@ declare enum ComponentClassNames {
|
|
|
5891
6343
|
Badge = "amplify-badge",
|
|
5892
6344
|
Button = "amplify-button",
|
|
5893
6345
|
Card = "amplify-card",
|
|
6346
|
+
CountryCodeSelect = "amplify-countrycodeselect",
|
|
5894
6347
|
Divider = "amplify-divider",
|
|
5895
6348
|
Field = "amplify-field",
|
|
5896
6349
|
FieldDescription = "amplify-field__description",
|
|
5897
6350
|
FieldErrorMessage = "amplify-field__error-message",
|
|
5898
6351
|
FieldGroup = "amplify-field-group",
|
|
5899
6352
|
FieldGroupControl = "amplify-field-group__control",
|
|
5900
|
-
|
|
5901
|
-
|
|
6353
|
+
FieldGroupOuterEnd = "amplify-field-group__outer-end",
|
|
6354
|
+
FieldGroupOuterStart = "amplify-field-group__outer-start",
|
|
6355
|
+
FieldGroupInnerEnd = "amplify-field-group__inner-end",
|
|
6356
|
+
FieldGroupInnerStart = "amplify-field-group__inner-start",
|
|
6357
|
+
FieldGroupIcon = "amplify-field-group__icon",
|
|
6358
|
+
FieldGroupIconButton = "amplify-field-group__icon-button",
|
|
6359
|
+
FieldGroupHasInnerEnd = "amplify-field-group--has-inner-end",
|
|
6360
|
+
FieldGroupHasInnerStart = "amplify-field-group--has-inner-start",
|
|
5902
6361
|
FieldShowPassword = "amplify-field__show-password",
|
|
6362
|
+
FieldGroupFieldWrapper = "amplify-field-group__field-wrapper",
|
|
5903
6363
|
Flex = "amplify-flex",
|
|
6364
|
+
Grid = "amplify-grid",
|
|
5904
6365
|
Heading = "amplify-heading",
|
|
5905
6366
|
Icon = "amplify-icon",
|
|
5906
6367
|
Image = "amplify-image",
|
|
@@ -5909,10 +6370,20 @@ declare enum ComponentClassNames {
|
|
|
5909
6370
|
Link = "amplify-link",
|
|
5910
6371
|
Pagination = "amplify-pagination",
|
|
5911
6372
|
PasswordField = "amplify-passwordfield",
|
|
6373
|
+
PhoneNumberField = "amplify-phonenumberfield",
|
|
5912
6374
|
Placeholder = "amplify-placeholder",
|
|
6375
|
+
Radio = "amplify-radio",
|
|
6376
|
+
RadioButton = "amplify-radio__button",
|
|
6377
|
+
RadioInput = "amplify-radio__input",
|
|
6378
|
+
RadioLabel = "amplify-radio__label",
|
|
6379
|
+
RadioGroupField = "amplify-radiogroupfield",
|
|
6380
|
+
RadioGroup = "amplify-radiogroup",
|
|
5913
6381
|
Rating = "amplify-rating",
|
|
5914
6382
|
Select = "amplify-select",
|
|
5915
6383
|
SelectField = "amplify-selectfield",
|
|
6384
|
+
SearchField = "amplify-searchfield",
|
|
6385
|
+
SearchFieldClear = "amplify-searchfield__clear",
|
|
6386
|
+
SearchFieldSearch = "amplify-searchfield__search",
|
|
5916
6387
|
SelectWrapper = "amplify-select__wrapper",
|
|
5917
6388
|
SelectIconWrapper = "amplify-select__icon-wrapper",
|
|
5918
6389
|
SwitchField = "amplify-switchfield",
|
|
@@ -5920,40 +6391,14 @@ declare enum ComponentClassNames {
|
|
|
5920
6391
|
SwitchThumb = "amplify-switch-thumb",
|
|
5921
6392
|
SwitchTrack = "amplify-switch-track",
|
|
5922
6393
|
SwitchWrapper = "amplify-switch__wrapper",
|
|
6394
|
+
Tabs = "amplify-tabs",
|
|
6395
|
+
TabItems = "amplify-tabs-item",
|
|
5923
6396
|
Text = "amplify-text",
|
|
5924
6397
|
TextField = "amplify-textfield",
|
|
5925
6398
|
View = "amplify-view",
|
|
5926
6399
|
VisuallyHidden = "amplify-visually-hidden"
|
|
5927
6400
|
}
|
|
5928
6401
|
|
|
5929
|
-
declare const prefixer: any;
|
|
5930
|
-
declare const strHasLength: (str: unknown) => str is string;
|
|
5931
|
-
/**
|
|
5932
|
-
* Convert style props to CSS variables for React style prop
|
|
5933
|
-
* Note: Will filter out undefined, null, and empty string prop values
|
|
5934
|
-
* @returns CSSProperties styles
|
|
5935
|
-
*/
|
|
5936
|
-
declare const convertStylePropsToStyleObj: (props: ViewProps, style?: React$1.CSSProperties) => React$1.CSSProperties;
|
|
5937
|
-
/**
|
|
5938
|
-
* Filter out known style props to prevent errors adding invalid HTML attributes
|
|
5939
|
-
* @param props
|
|
5940
|
-
* @returns non styled props
|
|
5941
|
-
*/
|
|
5942
|
-
declare const getNonStyleProps: (props: ViewProps) => {};
|
|
5943
|
-
/**
|
|
5944
|
-
* Create a consecutive integer array from start value to end value.
|
|
5945
|
-
* @param start start value
|
|
5946
|
-
* @param end end value
|
|
5947
|
-
* @returns an integer array with elements from start to end consecutively
|
|
5948
|
-
*/
|
|
5949
|
-
declare const getConsecutiveIntArray: (start: number, end: number) => number[];
|
|
5950
|
-
/**
|
|
5951
|
-
* Create a uuid to use with amplify fields unless
|
|
5952
|
-
* an id is already defined
|
|
5953
|
-
* @param id user specified id or undefined
|
|
5954
|
-
* @returns string
|
|
5955
|
-
*/
|
|
5956
|
-
declare const useAmplifyFieldID: (id?: string) => string;
|
|
5957
6402
|
/**
|
|
5958
6403
|
* This method is used to parse through all of the overrides and
|
|
5959
6404
|
* only pass the relevant child overrides for a given component.
|
|
@@ -5977,12 +6422,25 @@ declare type EscapeHatchProps = {
|
|
|
5977
6422
|
};
|
|
5978
6423
|
|
|
5979
6424
|
declare const SharedText: {
|
|
6425
|
+
CountryCodeSelect: {
|
|
6426
|
+
ariaLabel: string;
|
|
6427
|
+
};
|
|
5980
6428
|
ShowPasswordButton: {
|
|
5981
6429
|
ariaLabel: {
|
|
5982
6430
|
showPassword: string;
|
|
5983
6431
|
hidePassword: string;
|
|
5984
6432
|
};
|
|
5985
6433
|
};
|
|
6434
|
+
Fields: {
|
|
6435
|
+
ariaLabel: {
|
|
6436
|
+
clearField: string;
|
|
6437
|
+
};
|
|
6438
|
+
};
|
|
6439
|
+
SearchField: {
|
|
6440
|
+
ariaLabel: {
|
|
6441
|
+
search: string;
|
|
6442
|
+
};
|
|
6443
|
+
};
|
|
5986
6444
|
};
|
|
5987
6445
|
|
|
5988
6446
|
declare function Box(props: any): JSX.Element;
|
|
@@ -6015,7 +6473,10 @@ declare const index_Card: typeof Card;
|
|
|
6015
6473
|
declare const index_Collection: typeof Collection;
|
|
6016
6474
|
declare const index_Divider: typeof Divider;
|
|
6017
6475
|
declare const index_FieldGroup: typeof FieldGroup;
|
|
6476
|
+
declare const index_FieldGroupIcon: typeof FieldGroupIcon;
|
|
6477
|
+
declare const index_FieldGroupIconButton: typeof FieldGroupIconButton;
|
|
6018
6478
|
declare const index_Flex: typeof Flex;
|
|
6479
|
+
declare const index_Grid: typeof Grid;
|
|
6019
6480
|
declare const index_Heading: typeof Heading;
|
|
6020
6481
|
declare const index_Icon: typeof Icon;
|
|
6021
6482
|
declare const index_Icon3dRotation: typeof Icon3dRotation;
|
|
@@ -7838,24 +8299,24 @@ declare const index_Pagination: typeof Pagination;
|
|
|
7838
8299
|
declare const index_usePagination: typeof usePagination;
|
|
7839
8300
|
declare const index_Placeholder: typeof Placeholder;
|
|
7840
8301
|
declare const index_PasswordField: typeof PasswordField;
|
|
8302
|
+
declare const index_Radio: typeof Radio;
|
|
8303
|
+
declare const index_RadioGroupField: typeof RadioGroupField;
|
|
7841
8304
|
declare const index_Rating: typeof Rating;
|
|
7842
8305
|
declare const index_SelectField: typeof SelectField;
|
|
8306
|
+
declare const index_useSearchField: typeof useSearchField;
|
|
8307
|
+
declare const index_SearchField: typeof SearchField;
|
|
7843
8308
|
declare const index_SwitchField: typeof SwitchField;
|
|
8309
|
+
declare const index_Tabs: typeof Tabs;
|
|
8310
|
+
declare const index_TabItem: typeof TabItem;
|
|
7844
8311
|
declare const index_Text: typeof Text;
|
|
7845
8312
|
declare const index_TextField: typeof TextField;
|
|
7846
8313
|
declare const index_View: typeof View;
|
|
7847
8314
|
declare const index_VisuallyHidden: typeof VisuallyHidden;
|
|
7848
|
-
type
|
|
7849
|
-
declare const index_ComponentClassNames: typeof ComponentClassNames;
|
|
7850
|
-
declare const index_prefixer: typeof prefixer;
|
|
7851
|
-
declare const index_strHasLength: typeof strHasLength;
|
|
7852
|
-
declare const index_convertStylePropsToStyleObj: typeof convertStylePropsToStyleObj;
|
|
7853
|
-
declare const index_getNonStyleProps: typeof getNonStyleProps;
|
|
7854
|
-
declare const index_getConsecutiveIntArray: typeof getConsecutiveIntArray;
|
|
7855
|
-
declare const index_useAmplifyFieldID: typeof useAmplifyFieldID;
|
|
8315
|
+
type index_EscapeHatchProps = EscapeHatchProps;
|
|
7856
8316
|
declare const index_findChildOverrides: typeof findChildOverrides;
|
|
7857
8317
|
declare const index_getOverrideProps: typeof getOverrideProps;
|
|
7858
|
-
type
|
|
8318
|
+
type index_ComponentClassNames = ComponentClassNames;
|
|
8319
|
+
declare const index_ComponentClassNames: typeof ComponentClassNames;
|
|
7859
8320
|
declare const index_SharedText: typeof SharedText;
|
|
7860
8321
|
type index_AlertVariation = AlertVariation;
|
|
7861
8322
|
type index_AlertProps = AlertProps;
|
|
@@ -7869,6 +8330,7 @@ type index_ButtonSize = ButtonSize;
|
|
|
7869
8330
|
type index_ButtonTypes = ButtonTypes;
|
|
7870
8331
|
type index_ButtonVariation = ButtonVariation;
|
|
7871
8332
|
type index_ButtonProps = ButtonProps;
|
|
8333
|
+
type index_CardProps = CardProps;
|
|
7872
8334
|
type index_CollectionType = CollectionType;
|
|
7873
8335
|
type index_CollectionTypeMapInterface = CollectionTypeMapInterface;
|
|
7874
8336
|
declare const index_CollectionTypeMap: typeof CollectionTypeMap;
|
|
@@ -7879,14 +8341,23 @@ type index_DividerOrientation = DividerOrientation;
|
|
|
7879
8341
|
type index_DividerSize = DividerSize;
|
|
7880
8342
|
type index_DividerOptions = DividerOptions;
|
|
7881
8343
|
type index_DividerProps = DividerProps;
|
|
8344
|
+
type index_FieldProps = FieldProps;
|
|
8345
|
+
type index_FieldClearButtonProps = FieldClearButtonProps;
|
|
8346
|
+
type index_FieldDescriptionProps = FieldDescriptionProps;
|
|
8347
|
+
type index_FieldErrorMessageProps = FieldErrorMessageProps;
|
|
8348
|
+
type index_FieldVariations = FieldVariations;
|
|
8349
|
+
type index_FieldGroupOptions = FieldGroupOptions;
|
|
8350
|
+
type index_FieldGroupIconProps = FieldGroupIconProps;
|
|
8351
|
+
type index_FieldGroupIconButtonProps = FieldGroupIconButtonProps;
|
|
7882
8352
|
type index_FlexStyleProps = FlexStyleProps;
|
|
7883
8353
|
type index_FlexProps = FlexProps;
|
|
7884
|
-
type index_FieldGroupOptions = FieldGroupOptions;
|
|
7885
8354
|
type index_HeadingLevel = HeadingLevel;
|
|
7886
8355
|
type index_HeadingProps = HeadingProps;
|
|
7887
8356
|
type index_ViewBox = ViewBox;
|
|
7888
8357
|
type index_IconSize = IconSize;
|
|
7889
8358
|
type index_IconProps = IconProps;
|
|
8359
|
+
type index_InputMode = InputMode;
|
|
8360
|
+
type index_InputProps = InputProps;
|
|
7890
8361
|
type index_ImageStyleProps = ImageStyleProps;
|
|
7891
8362
|
type index_ImageOptions = ImageOptions;
|
|
7892
8363
|
type index_ImageProps = ImageProps;
|
|
@@ -7899,25 +8370,43 @@ type index_PaginationProps = PaginationProps;
|
|
|
7899
8370
|
type index_UsePaginationProps = UsePaginationProps;
|
|
7900
8371
|
type index_UsePaginationResult = UsePaginationResult;
|
|
7901
8372
|
type index_PaginationItemProps = PaginationItemProps;
|
|
8373
|
+
type index_PasswordFieldProps = PasswordFieldProps;
|
|
8374
|
+
type index_PasswordFieldType = PasswordFieldType;
|
|
8375
|
+
type index_ShowPasswordButtonProps = ShowPasswordButtonProps;
|
|
8376
|
+
type index_PhoneNumberFieldProps = PhoneNumberFieldProps;
|
|
8377
|
+
type index_CountryCodeSelectProps = CountryCodeSelectProps;
|
|
7902
8378
|
type index_PlaceholderSize = PlaceholderSize;
|
|
7903
8379
|
type index_PlaceholderProps = PlaceholderProps;
|
|
8380
|
+
type index_RadioProps = RadioProps;
|
|
8381
|
+
type index_RadioGroupFieldProps = RadioGroupFieldProps;
|
|
7904
8382
|
type index_RatingSize = RatingSize;
|
|
7905
8383
|
type index_RatingOptions = RatingOptions;
|
|
7906
8384
|
type index_RatingProps = RatingProps;
|
|
8385
|
+
type index_SearchFieldProps = SearchFieldProps;
|
|
8386
|
+
type index_SearchFieldButtonProps = SearchFieldButtonProps;
|
|
7907
8387
|
type index_SelectFieldProps = SelectFieldProps;
|
|
8388
|
+
type index_ResponsiveObject<_0> = ResponsiveObject<_0>;
|
|
8389
|
+
type index_ResponsiveStyle<_0> = ResponsiveStyle<_0>;
|
|
7908
8390
|
type index_BaseStyleProps = BaseStyleProps;
|
|
8391
|
+
type index_CSSLayoutStyleProps = CSSLayoutStyleProps;
|
|
7909
8392
|
type index_AllStyleProps = AllStyleProps;
|
|
7910
8393
|
type index_ComponentPropToStyleProp = ComponentPropToStyleProp;
|
|
7911
8394
|
declare const index_ComponentPropsToStylePropsMap: typeof ComponentPropsToStylePropsMap;
|
|
8395
|
+
declare const index_ComponentPropsToStylePropsMapKeys: typeof ComponentPropsToStylePropsMapKeys;
|
|
7912
8396
|
type index_labelPositions = labelPositions;
|
|
7913
8397
|
type index_SwitchFieldProps = SwitchFieldProps;
|
|
8398
|
+
type index_TabsGrow = TabsGrow;
|
|
8399
|
+
type index_TabsProps = TabsProps;
|
|
8400
|
+
type index_TabItemProps = TabItemProps;
|
|
8401
|
+
type index_TextVariation = TextVariation;
|
|
8402
|
+
type index_TextProps = TextProps;
|
|
7914
8403
|
type index_TextFieldType = TextFieldType;
|
|
7915
8404
|
type index_TextFieldProps = TextFieldProps;
|
|
7916
|
-
type index_PasswordFieldProps = PasswordFieldProps;
|
|
7917
|
-
type index_PasswordFieldType = PasswordFieldType;
|
|
7918
|
-
type index_ShowPasswordButtonProps = ShowPasswordButtonProps;
|
|
7919
8405
|
type index_ViewAsHTMLElementTypes = ViewAsHTMLElementTypes;
|
|
7920
8406
|
type index_ViewProps = ViewProps;
|
|
8407
|
+
type index_GridContainerStyleProps = GridContainerStyleProps;
|
|
8408
|
+
type index_GridItemStyleProps = GridItemStyleProps;
|
|
8409
|
+
type index_GridProps = GridProps;
|
|
7921
8410
|
declare namespace index {
|
|
7922
8411
|
export {
|
|
7923
8412
|
index_Box as Box,
|
|
@@ -7938,7 +8427,10 @@ declare namespace index {
|
|
|
7938
8427
|
index_Collection as Collection,
|
|
7939
8428
|
index_Divider as Divider,
|
|
7940
8429
|
index_FieldGroup as FieldGroup,
|
|
8430
|
+
index_FieldGroupIcon as FieldGroupIcon,
|
|
8431
|
+
index_FieldGroupIconButton as FieldGroupIconButton,
|
|
7941
8432
|
index_Flex as Flex,
|
|
8433
|
+
index_Grid as Grid,
|
|
7942
8434
|
index_Heading as Heading,
|
|
7943
8435
|
index_Icon as Icon,
|
|
7944
8436
|
index_Icon3dRotation as Icon3dRotation,
|
|
@@ -9761,23 +10253,23 @@ declare namespace index {
|
|
|
9761
10253
|
index_usePagination as usePagination,
|
|
9762
10254
|
index_Placeholder as Placeholder,
|
|
9763
10255
|
index_PasswordField as PasswordField,
|
|
10256
|
+
index_Radio as Radio,
|
|
10257
|
+
index_RadioGroupField as RadioGroupField,
|
|
9764
10258
|
index_Rating as Rating,
|
|
9765
10259
|
index_SelectField as SelectField,
|
|
10260
|
+
index_useSearchField as useSearchField,
|
|
10261
|
+
index_SearchField as SearchField,
|
|
9766
10262
|
index_SwitchField as SwitchField,
|
|
10263
|
+
index_Tabs as Tabs,
|
|
10264
|
+
index_TabItem as TabItem,
|
|
9767
10265
|
index_Text as Text,
|
|
9768
10266
|
index_TextField as TextField,
|
|
9769
10267
|
index_View as View,
|
|
9770
10268
|
index_VisuallyHidden as VisuallyHidden,
|
|
9771
|
-
|
|
9772
|
-
index_prefixer as prefixer,
|
|
9773
|
-
index_strHasLength as strHasLength,
|
|
9774
|
-
index_convertStylePropsToStyleObj as convertStylePropsToStyleObj,
|
|
9775
|
-
index_getNonStyleProps as getNonStyleProps,
|
|
9776
|
-
index_getConsecutiveIntArray as getConsecutiveIntArray,
|
|
9777
|
-
index_useAmplifyFieldID as useAmplifyFieldID,
|
|
10269
|
+
index_EscapeHatchProps as EscapeHatchProps,
|
|
9778
10270
|
index_findChildOverrides as findChildOverrides,
|
|
9779
10271
|
index_getOverrideProps as getOverrideProps,
|
|
9780
|
-
|
|
10272
|
+
index_ComponentClassNames as ComponentClassNames,
|
|
9781
10273
|
index_SharedText as SharedText,
|
|
9782
10274
|
index_AlertVariation as AlertVariation,
|
|
9783
10275
|
index_AlertProps as AlertProps,
|
|
@@ -9791,6 +10283,7 @@ declare namespace index {
|
|
|
9791
10283
|
index_ButtonTypes as ButtonTypes,
|
|
9792
10284
|
index_ButtonVariation as ButtonVariation,
|
|
9793
10285
|
index_ButtonProps as ButtonProps,
|
|
10286
|
+
index_CardProps as CardProps,
|
|
9794
10287
|
index_CollectionType as CollectionType,
|
|
9795
10288
|
index_CollectionTypeMapInterface as CollectionTypeMapInterface,
|
|
9796
10289
|
index_CollectionTypeMap as CollectionTypeMap,
|
|
@@ -9801,14 +10294,23 @@ declare namespace index {
|
|
|
9801
10294
|
index_DividerSize as DividerSize,
|
|
9802
10295
|
index_DividerOptions as DividerOptions,
|
|
9803
10296
|
index_DividerProps as DividerProps,
|
|
10297
|
+
index_FieldProps as FieldProps,
|
|
10298
|
+
index_FieldClearButtonProps as FieldClearButtonProps,
|
|
10299
|
+
index_FieldDescriptionProps as FieldDescriptionProps,
|
|
10300
|
+
index_FieldErrorMessageProps as FieldErrorMessageProps,
|
|
10301
|
+
index_FieldVariations as FieldVariations,
|
|
10302
|
+
index_FieldGroupOptions as FieldGroupOptions,
|
|
10303
|
+
index_FieldGroupIconProps as FieldGroupIconProps,
|
|
10304
|
+
index_FieldGroupIconButtonProps as FieldGroupIconButtonProps,
|
|
9804
10305
|
index_FlexStyleProps as FlexStyleProps,
|
|
9805
10306
|
index_FlexProps as FlexProps,
|
|
9806
|
-
index_FieldGroupOptions as FieldGroupOptions,
|
|
9807
10307
|
index_HeadingLevel as HeadingLevel,
|
|
9808
10308
|
index_HeadingProps as HeadingProps,
|
|
9809
10309
|
index_ViewBox as ViewBox,
|
|
9810
10310
|
index_IconSize as IconSize,
|
|
9811
10311
|
index_IconProps as IconProps,
|
|
10312
|
+
index_InputMode as InputMode,
|
|
10313
|
+
index_InputProps as InputProps,
|
|
9812
10314
|
index_ImageStyleProps as ImageStyleProps,
|
|
9813
10315
|
index_ImageOptions as ImageOptions,
|
|
9814
10316
|
index_ImageProps as ImageProps,
|
|
@@ -9821,25 +10323,43 @@ declare namespace index {
|
|
|
9821
10323
|
index_UsePaginationProps as UsePaginationProps,
|
|
9822
10324
|
index_UsePaginationResult as UsePaginationResult,
|
|
9823
10325
|
index_PaginationItemProps as PaginationItemProps,
|
|
10326
|
+
index_PasswordFieldProps as PasswordFieldProps,
|
|
10327
|
+
index_PasswordFieldType as PasswordFieldType,
|
|
10328
|
+
index_ShowPasswordButtonProps as ShowPasswordButtonProps,
|
|
10329
|
+
index_PhoneNumberFieldProps as PhoneNumberFieldProps,
|
|
10330
|
+
index_CountryCodeSelectProps as CountryCodeSelectProps,
|
|
9824
10331
|
index_PlaceholderSize as PlaceholderSize,
|
|
9825
10332
|
index_PlaceholderProps as PlaceholderProps,
|
|
10333
|
+
index_RadioProps as RadioProps,
|
|
10334
|
+
index_RadioGroupFieldProps as RadioGroupFieldProps,
|
|
9826
10335
|
index_RatingSize as RatingSize,
|
|
9827
10336
|
index_RatingOptions as RatingOptions,
|
|
9828
10337
|
index_RatingProps as RatingProps,
|
|
10338
|
+
index_SearchFieldProps as SearchFieldProps,
|
|
10339
|
+
index_SearchFieldButtonProps as SearchFieldButtonProps,
|
|
9829
10340
|
index_SelectFieldProps as SelectFieldProps,
|
|
10341
|
+
index_ResponsiveObject as ResponsiveObject,
|
|
10342
|
+
index_ResponsiveStyle as ResponsiveStyle,
|
|
9830
10343
|
index_BaseStyleProps as BaseStyleProps,
|
|
10344
|
+
index_CSSLayoutStyleProps as CSSLayoutStyleProps,
|
|
9831
10345
|
index_AllStyleProps as AllStyleProps,
|
|
9832
10346
|
index_ComponentPropToStyleProp as ComponentPropToStyleProp,
|
|
9833
10347
|
index_ComponentPropsToStylePropsMap as ComponentPropsToStylePropsMap,
|
|
10348
|
+
index_ComponentPropsToStylePropsMapKeys as ComponentPropsToStylePropsMapKeys,
|
|
9834
10349
|
index_labelPositions as labelPositions,
|
|
9835
10350
|
index_SwitchFieldProps as SwitchFieldProps,
|
|
10351
|
+
index_TabsGrow as TabsGrow,
|
|
10352
|
+
index_TabsProps as TabsProps,
|
|
10353
|
+
index_TabItemProps as TabItemProps,
|
|
10354
|
+
index_TextVariation as TextVariation,
|
|
10355
|
+
index_TextProps as TextProps,
|
|
9836
10356
|
index_TextFieldType as TextFieldType,
|
|
9837
10357
|
index_TextFieldProps as TextFieldProps,
|
|
9838
|
-
index_PasswordFieldProps as PasswordFieldProps,
|
|
9839
|
-
index_PasswordFieldType as PasswordFieldType,
|
|
9840
|
-
index_ShowPasswordButtonProps as ShowPasswordButtonProps,
|
|
9841
10358
|
index_ViewAsHTMLElementTypes as ViewAsHTMLElementTypes,
|
|
9842
10359
|
index_ViewProps as ViewProps,
|
|
10360
|
+
index_GridContainerStyleProps as GridContainerStyleProps,
|
|
10361
|
+
index_GridItemStyleProps as GridItemStyleProps,
|
|
10362
|
+
index_GridProps as GridProps,
|
|
9843
10363
|
};
|
|
9844
10364
|
}
|
|
9845
10365
|
|
|
@@ -9863,7 +10383,10 @@ declare function useAmplify(namespace: any): {
|
|
|
9863
10383
|
Collection: <CollectionItemType>({ items, children, className, direction, type, ...rest }: CollectionProps<CollectionItemType>) => JSX.Element;
|
|
9864
10384
|
Divider: React$1.FC<DividerProps>;
|
|
9865
10385
|
FieldGroup: React$1.FC<FieldGroupOptions>;
|
|
10386
|
+
FieldGroupIcon: React$1.FC<FieldGroupIconProps>;
|
|
10387
|
+
FieldGroupIconButton: React$1.FC<FieldGroupIconButtonProps>;
|
|
9866
10388
|
Flex: React$1.FC<FlexProps>;
|
|
10389
|
+
Grid: React$1.FC<GridProps>;
|
|
9867
10390
|
Heading: React$1.FC<HeadingProps>;
|
|
9868
10391
|
Icon: React$1.FC<IconProps>;
|
|
9869
10392
|
Icon3dRotation: (props: any) => JSX.Element;
|
|
@@ -11686,34 +12209,54 @@ declare function useAmplify(namespace: any): {
|
|
|
11686
12209
|
usePagination: (props: UsePaginationProps) => UsePaginationResult;
|
|
11687
12210
|
Placeholder: React$1.FC<PlaceholderProps>;
|
|
11688
12211
|
PasswordField: React$1.FC<PasswordFieldProps>;
|
|
12212
|
+
Radio: React$1.FC<RadioProps>;
|
|
12213
|
+
RadioGroupField: React$1.FC<RadioGroupFieldProps>;
|
|
11689
12214
|
Rating: React$1.FC<RatingProps>;
|
|
11690
12215
|
SelectField: React$1.FC<SelectFieldProps>;
|
|
12216
|
+
useSearchField: (onSubmit: (value: string) => void) => {
|
|
12217
|
+
value: string;
|
|
12218
|
+
clearValue: () => void;
|
|
12219
|
+
onKeyDown: React$1.KeyboardEventHandler<HTMLInputElement>;
|
|
12220
|
+
onInput: React$1.ChangeEventHandler<HTMLInputElement>;
|
|
12221
|
+
onClick: (event: React$1.MouseEvent<Element, MouseEvent>) => void;
|
|
12222
|
+
};
|
|
12223
|
+
SearchField: React$1.FC<SearchFieldProps>;
|
|
11691
12224
|
SwitchField: React$1.FC<SwitchFieldProps>;
|
|
12225
|
+
Tabs: Tabs;
|
|
12226
|
+
TabItem: React$1.FC<TabItemProps>;
|
|
11692
12227
|
Text: React$1.FC<TextProps>;
|
|
11693
12228
|
TextField: React$1.FC<TextFieldProps>;
|
|
11694
12229
|
View: React$1.FC<ViewProps>;
|
|
11695
12230
|
VisuallyHidden: React$1.FC<VisuallyHiddenProps>;
|
|
11696
|
-
ComponentClassNames: typeof ComponentClassNames;
|
|
11697
|
-
prefixer: any;
|
|
11698
|
-
strHasLength: (str: unknown) => str is string;
|
|
11699
|
-
convertStylePropsToStyleObj: (props: ViewProps, style?: React$1.CSSProperties) => React$1.CSSProperties;
|
|
11700
|
-
getNonStyleProps: (props: ViewProps) => {};
|
|
11701
|
-
getConsecutiveIntArray: (start: number, end: number) => number[];
|
|
11702
|
-
useAmplifyFieldID: (id?: string) => string;
|
|
11703
12231
|
findChildOverrides: (overrides: EscapeHatchProps, elementHierarchy: string) => any;
|
|
11704
12232
|
getOverrideProps: (overrides: EscapeHatchProps, elementHierarchy: string) => {
|
|
11705
12233
|
[k: string]: string;
|
|
11706
12234
|
};
|
|
12235
|
+
ComponentClassNames: typeof ComponentClassNames;
|
|
11707
12236
|
SharedText: {
|
|
12237
|
+
CountryCodeSelect: {
|
|
12238
|
+
ariaLabel: string;
|
|
12239
|
+
};
|
|
11708
12240
|
ShowPasswordButton: {
|
|
11709
12241
|
ariaLabel: {
|
|
11710
12242
|
showPassword: string;
|
|
11711
12243
|
hidePassword: string;
|
|
11712
12244
|
};
|
|
11713
12245
|
};
|
|
12246
|
+
Fields: {
|
|
12247
|
+
ariaLabel: {
|
|
12248
|
+
clearField: string;
|
|
12249
|
+
};
|
|
12250
|
+
};
|
|
12251
|
+
SearchField: {
|
|
12252
|
+
ariaLabel: {
|
|
12253
|
+
search: string;
|
|
12254
|
+
};
|
|
12255
|
+
};
|
|
11714
12256
|
};
|
|
11715
12257
|
CollectionTypeMap: CollectionTypeMapInterface;
|
|
11716
12258
|
ComponentPropsToStylePropsMap: ComponentPropToStyleProp;
|
|
12259
|
+
ComponentPropsToStylePropsMapKeys: (keyof AllStyleProps)[];
|
|
11717
12260
|
};
|
|
11718
12261
|
theming: {
|
|
11719
12262
|
theme: {
|
|
@@ -11770,7 +12313,10 @@ declare function useAmplify(namespace: any): {
|
|
|
11770
12313
|
transitionDuration: string;
|
|
11771
12314
|
fontSize: string;
|
|
11772
12315
|
lineHeight: string;
|
|
11773
|
-
|
|
12316
|
+
paddingBlockStart: string;
|
|
12317
|
+
paddingBlockEnd: string;
|
|
12318
|
+
paddingInlineStart: string;
|
|
12319
|
+
paddingInlineEnd: string;
|
|
11774
12320
|
borderColor: string;
|
|
11775
12321
|
borderWidth: string;
|
|
11776
12322
|
borderStyle: string;
|
|
@@ -11845,12 +12391,18 @@ declare function useAmplify(namespace: any): {
|
|
|
11845
12391
|
small: {
|
|
11846
12392
|
fontSize: string;
|
|
11847
12393
|
lineHeight: string;
|
|
11848
|
-
|
|
12394
|
+
paddingBlockStart: string;
|
|
12395
|
+
paddingBlockEnd: string;
|
|
12396
|
+
paddingInlineStart: string;
|
|
12397
|
+
paddingInlineEnd: string;
|
|
11849
12398
|
};
|
|
11850
12399
|
large: {
|
|
11851
12400
|
fontSize: string;
|
|
11852
12401
|
lineHeight: string;
|
|
11853
|
-
|
|
12402
|
+
paddingBlockStart: string;
|
|
12403
|
+
paddingBlockEnd: string;
|
|
12404
|
+
paddingInlineStart: string;
|
|
12405
|
+
paddingInlineEnd: string;
|
|
11854
12406
|
};
|
|
11855
12407
|
};
|
|
11856
12408
|
card: {
|
|
@@ -11890,7 +12442,10 @@ declare function useAmplify(namespace: any): {
|
|
|
11890
12442
|
borderColor: string;
|
|
11891
12443
|
borderWidth: string;
|
|
11892
12444
|
borderRadius: string;
|
|
11893
|
-
|
|
12445
|
+
paddingBlockStart: string;
|
|
12446
|
+
paddingBlockEnd: string;
|
|
12447
|
+
paddingInlineStart: string;
|
|
12448
|
+
paddingInlineEnd: string;
|
|
11894
12449
|
fontSize: string;
|
|
11895
12450
|
lineHeight: string;
|
|
11896
12451
|
transitionDuration: string;
|
|
@@ -11900,12 +12455,18 @@ declare function useAmplify(namespace: any): {
|
|
|
11900
12455
|
outlineOffset: string;
|
|
11901
12456
|
small: {
|
|
11902
12457
|
fontSize: string;
|
|
11903
|
-
|
|
12458
|
+
paddingBlockStart: string;
|
|
12459
|
+
paddingBlockEnd: string;
|
|
12460
|
+
paddingInlineStart: string;
|
|
12461
|
+
paddingInlineEnd: string;
|
|
11904
12462
|
lineHeight: string;
|
|
11905
12463
|
};
|
|
11906
12464
|
large: {
|
|
11907
12465
|
fontSize: string;
|
|
11908
|
-
|
|
12466
|
+
paddingBlockStart: string;
|
|
12467
|
+
paddingBlockEnd: string;
|
|
12468
|
+
paddingInlineStart: string;
|
|
12469
|
+
paddingInlineEnd: string;
|
|
11909
12470
|
lineHeight: string;
|
|
11910
12471
|
};
|
|
11911
12472
|
quiet: {
|
|
@@ -12062,6 +12623,16 @@ declare function useAmplify(namespace: any): {
|
|
|
12062
12623
|
borderRadius: string;
|
|
12063
12624
|
};
|
|
12064
12625
|
};
|
|
12626
|
+
phonenumberfield: {
|
|
12627
|
+
minWidth: string;
|
|
12628
|
+
whiteSpace: string;
|
|
12629
|
+
small: {
|
|
12630
|
+
minWidth: string;
|
|
12631
|
+
};
|
|
12632
|
+
large: {
|
|
12633
|
+
minWidth: string;
|
|
12634
|
+
};
|
|
12635
|
+
};
|
|
12065
12636
|
placeholder: {
|
|
12066
12637
|
borderRadius: string;
|
|
12067
12638
|
transitionDuration: string;
|
|
@@ -12077,6 +12648,66 @@ declare function useAmplify(namespace: any): {
|
|
|
12077
12648
|
height: string;
|
|
12078
12649
|
};
|
|
12079
12650
|
};
|
|
12651
|
+
radio: {
|
|
12652
|
+
alignItems: string;
|
|
12653
|
+
justifyContent: string;
|
|
12654
|
+
gap: string;
|
|
12655
|
+
button: {
|
|
12656
|
+
alignItems: string;
|
|
12657
|
+
justifyContent: string;
|
|
12658
|
+
width: string;
|
|
12659
|
+
height: string;
|
|
12660
|
+
boxSizing: string;
|
|
12661
|
+
borderWidth: string;
|
|
12662
|
+
borderStyle: string;
|
|
12663
|
+
borderRadius: string;
|
|
12664
|
+
borderColor: string;
|
|
12665
|
+
color: string;
|
|
12666
|
+
backgroundColor: string;
|
|
12667
|
+
transitionProperty: string;
|
|
12668
|
+
transitionDuration: string;
|
|
12669
|
+
outlineColor: string;
|
|
12670
|
+
outlineStyle: string;
|
|
12671
|
+
outlineWidth: string;
|
|
12672
|
+
outlineOffset: string;
|
|
12673
|
+
before: {
|
|
12674
|
+
content: string;
|
|
12675
|
+
display: string;
|
|
12676
|
+
width: string;
|
|
12677
|
+
height: string;
|
|
12678
|
+
borderRadius: string;
|
|
12679
|
+
backgroundColor: string;
|
|
12680
|
+
};
|
|
12681
|
+
small: {
|
|
12682
|
+
width: string;
|
|
12683
|
+
height: string;
|
|
12684
|
+
};
|
|
12685
|
+
large: {
|
|
12686
|
+
width: string;
|
|
12687
|
+
height: string;
|
|
12688
|
+
};
|
|
12689
|
+
_checked: {
|
|
12690
|
+
color: string;
|
|
12691
|
+
_disabled: {
|
|
12692
|
+
color: string;
|
|
12693
|
+
};
|
|
12694
|
+
};
|
|
12695
|
+
_focus: {
|
|
12696
|
+
borderColor: string;
|
|
12697
|
+
boxShadow: string;
|
|
12698
|
+
};
|
|
12699
|
+
_disabled: {
|
|
12700
|
+
borderColor: string;
|
|
12701
|
+
backgroundColor: string;
|
|
12702
|
+
color: string;
|
|
12703
|
+
};
|
|
12704
|
+
};
|
|
12705
|
+
label: {
|
|
12706
|
+
_disabled: {
|
|
12707
|
+
color: string;
|
|
12708
|
+
};
|
|
12709
|
+
};
|
|
12710
|
+
};
|
|
12080
12711
|
rating: {
|
|
12081
12712
|
large: {
|
|
12082
12713
|
size: string;
|
|
@@ -12159,6 +12790,40 @@ declare function useAmplify(namespace: any): {
|
|
|
12159
12790
|
width: string;
|
|
12160
12791
|
};
|
|
12161
12792
|
};
|
|
12793
|
+
tabs: {
|
|
12794
|
+
backgroundColor: string;
|
|
12795
|
+
borderColor: string;
|
|
12796
|
+
borderStyle: string;
|
|
12797
|
+
borderWidth: string;
|
|
12798
|
+
item: {
|
|
12799
|
+
backgroundColor: string;
|
|
12800
|
+
borderColor: string;
|
|
12801
|
+
borderStyle: string;
|
|
12802
|
+
borderWidth: string;
|
|
12803
|
+
color: string;
|
|
12804
|
+
fontSize: string;
|
|
12805
|
+
fontWeight: number;
|
|
12806
|
+
padding: string;
|
|
12807
|
+
textAlign: string;
|
|
12808
|
+
transitionDuration: string;
|
|
12809
|
+
_hover: {
|
|
12810
|
+
color: string;
|
|
12811
|
+
};
|
|
12812
|
+
_focus: {
|
|
12813
|
+
color: string;
|
|
12814
|
+
};
|
|
12815
|
+
_active: {
|
|
12816
|
+
color: string;
|
|
12817
|
+
borderColor: string;
|
|
12818
|
+
backgroundColor: string;
|
|
12819
|
+
};
|
|
12820
|
+
_disabled: {
|
|
12821
|
+
color: string;
|
|
12822
|
+
backgroundColor: string;
|
|
12823
|
+
borderColor: string;
|
|
12824
|
+
};
|
|
12825
|
+
};
|
|
12826
|
+
};
|
|
12162
12827
|
text: {
|
|
12163
12828
|
color: string;
|
|
12164
12829
|
primary: {
|
|
@@ -12189,6 +12854,18 @@ declare function useAmplify(namespace: any): {
|
|
|
12189
12854
|
medium: string;
|
|
12190
12855
|
large: string;
|
|
12191
12856
|
};
|
|
12857
|
+
breakpoints: {
|
|
12858
|
+
values: {
|
|
12859
|
+
base: number;
|
|
12860
|
+
small: number;
|
|
12861
|
+
medium: number;
|
|
12862
|
+
large: number;
|
|
12863
|
+
xl: number;
|
|
12864
|
+
xxl: number;
|
|
12865
|
+
};
|
|
12866
|
+
unit: string;
|
|
12867
|
+
defaultBreakpoint: string;
|
|
12868
|
+
};
|
|
12192
12869
|
colors: {
|
|
12193
12870
|
red: {
|
|
12194
12871
|
"10": string;
|
|
@@ -12295,6 +12972,7 @@ declare function useAmplify(namespace: any): {
|
|
|
12295
12972
|
primary: string;
|
|
12296
12973
|
secondary: string;
|
|
12297
12974
|
tertiary: string;
|
|
12975
|
+
disabled: string;
|
|
12298
12976
|
inverse: string;
|
|
12299
12977
|
interactive: string;
|
|
12300
12978
|
hover: string;
|
|
@@ -12309,6 +12987,7 @@ declare function useAmplify(namespace: any): {
|
|
|
12309
12987
|
primary: string;
|
|
12310
12988
|
secondary: string;
|
|
12311
12989
|
tertiary: string;
|
|
12990
|
+
disabled: string;
|
|
12312
12991
|
info: string;
|
|
12313
12992
|
warning: string;
|
|
12314
12993
|
error: string;
|
|
@@ -12442,7 +13121,7 @@ declare function useAmplify(namespace: any): {
|
|
|
12442
13121
|
};
|
|
12443
13122
|
};
|
|
12444
13123
|
|
|
12445
|
-
declare function
|
|
13124
|
+
declare function useAuthenticator(): [xstate.State<_aws_amplify_ui.AuthContext, _aws_amplify_ui.AuthEvent, any, {
|
|
12446
13125
|
value: any;
|
|
12447
13126
|
context: _aws_amplify_ui.AuthContext;
|
|
12448
13127
|
}>, (event: xstate.SingleOrArray<xstate.Event<_aws_amplify_ui.AuthEvent>> | xstate.SCXML.Event<_aws_amplify_ui.AuthEvent>, payload?: xstate.EventData) => xstate.State<_aws_amplify_ui.AuthContext, _aws_amplify_ui.AuthEvent, any, {
|
|
@@ -12450,4 +13129,4 @@ declare function useAuth(): [xstate.State<_aws_amplify_ui.AuthContext, _aws_ampl
|
|
|
12450
13129
|
context: _aws_amplify_ui.AuthContext;
|
|
12451
13130
|
}>];
|
|
12452
13131
|
|
|
12453
|
-
export { Alert, AlertProps, AlertVariation, AllStyleProps, AmplifyProvider, AriaProps, Authenticator, Badge, BadgeProps, BadgeSize, BadgeVariation, BaseComponentProps, BaseStyleProps, Box, Button, ButtonProps, ButtonSize, ButtonTypes, ButtonVariation, Card, Collection, CollectionBaseProps, CollectionProps, CollectionType, CollectionTypeMap, CollectionTypeMapInterface, ComponentClassNames, ComponentPropToStyleProp, ComponentPropsToStylePropsMap, DeepPartial, Divider, DividerOptions, DividerOrientation, DividerProps, DividerSize, ErrorText, EscapeHatchProps, FieldGroup, FieldGroupOptions, Fieldset, Flex, FlexProps, FlexStyleProps, Footer, Form, Header, Heading, HeadingLevel, HeadingProps, Icon, Icon10k, Icon10mp, Icon11mp, Icon12mp, Icon13mp, Icon14mp, Icon15mp, Icon16mp, Icon17mp, Icon18mp, Icon19mp, Icon1k, Icon1kPlus, Icon1xMobiledata, Icon20mp, Icon21mp, Icon22mp, Icon23mp, Icon24mp, Icon2k, Icon2kPlus, Icon2mp, Icon30fps, Icon30fpsSelect, Icon360, Icon3dRotation, Icon3gMobiledata, Icon3k, Icon3kPlus, Icon3mp, Icon3p, Icon4gMobiledata, Icon4gPlusMobiledata, Icon4k, Icon4kPlus, Icon4mp, Icon5g, Icon5k, Icon5kPlus, Icon5mp, Icon60fps, Icon60fpsSelect, Icon6FtApart, Icon6k, Icon6kPlus, Icon6mp, Icon7k, Icon7kPlus, Icon7mp, Icon8k, Icon8kPlus, Icon8mp, Icon9k, Icon9kPlus, Icon9mp, IconAcUnit, IconAccessAlarm, IconAccessAlarms, IconAccessTime, IconAccessTimeFilled, IconAccessibility, IconAccessibilityNew, IconAccessible, IconAccessibleForward, IconAccountBalance, IconAccountBalanceWallet, IconAccountBox, IconAccountCircle, IconAccountTree, IconAdUnits, IconAdb, IconAdd, IconAddAPhoto, IconAddAlarm, IconAddAlert, IconAddBox, IconAddBusiness, IconAddCall, IconAddChart, IconAddCircle, IconAddCircleOutline, IconAddComment, IconAddIcCall, IconAddLink, IconAddLocation, IconAddLocationAlt, IconAddModerator, IconAddPhotoAlternate, IconAddReaction, IconAddRoad, IconAddShoppingCart, IconAddTask, IconAddToDrive, IconAddToHomeScreen, IconAddToPhotos, IconAddToQueue, IconAdjust, IconAdminPanelSettings, IconAdsClick, IconAgriculture, IconAir, IconAirlineSeatFlat, IconAirlineSeatFlatAngled, IconAirlineSeatIndividualSuite, IconAirlineSeatLegroomExtra, IconAirlineSeatLegroomNormal, IconAirlineSeatLegroomReduced, IconAirlineSeatReclineExtra, IconAirlineSeatReclineNormal, IconAirplaneTicket, IconAirplanemodeActive, IconAirplanemodeInactive, IconAirplay, IconAirportShuttle, IconAlarm, IconAlarmAdd, IconAlarmOff, IconAlarmOn, IconAlbum, IconAlignHorizontalCenter, IconAlignHorizontalLeft, IconAlignHorizontalRight, IconAlignVerticalBottom, IconAlignVerticalCenter, IconAlignVerticalTop, IconAllInbox, IconAllInclusive, IconAllOut, IconAltRoute, IconAlternateEmail, IconAmpStories, IconAnalytics, IconAnchor, IconAndroid, IconAnimation, IconAnnouncement, IconAod, IconApartment, IconApi, IconAppBlocking, IconAppRegistration, IconAppSettingsAlt, IconApproval, IconApps, IconArchitecture, IconArchive, IconAreaChart, IconArrowBack, IconArrowBackIos, IconArrowBackIosNew, IconArrowCircleDown, IconArrowCircleUp, IconArrowDownward, IconArrowDropDown, IconArrowDropDownCircle, IconArrowDropUp, IconArrowForward, IconArrowForwardIos, IconArrowLeft, IconArrowRight, IconArrowRightAlt, IconArrowUpward, IconArtTrack, IconArticle, IconAspectRatio, IconAssessment, IconAssignment, IconAssignmentInd, IconAssignmentLate, IconAssignmentReturn, IconAssignmentReturned, IconAssignmentTurnedIn, IconAssistant, IconAssistantDirection, IconAssistantNavigation, IconAssistantPhoto, IconAtm, IconAttachEmail, IconAttachFile, IconAttachMoney, IconAttachment, IconAttractions, IconAttribution, IconAudiotrack, IconAutoAwesome, IconAutoAwesomeMosaic, IconAutoAwesomeMotion, IconAutoDelete, IconAutoFixHigh, IconAutoFixNormal, IconAutoFixOff, IconAutoGraph, IconAutoStories, IconAutofpsSelect, IconAutorenew, IconAvTimer, IconBabyChangingStation, IconBackHand, IconBackpack, IconBackspace, IconBackup, IconBackupTable, IconBadge, IconBakeryDining, IconBalcony, IconBallot, IconBarChart, IconBatchPrediction, IconBathroom, IconBathtub, IconBatteryAlert, IconBatteryChargingFull, IconBatteryFull, IconBatterySaver, IconBatteryStd, IconBatteryUnknown, IconBeachAccess, IconBed, IconBedroomBaby, IconBedroomChild, IconBedroomParent, IconBedtime, IconBeenhere, IconBento, IconBikeScooter, IconBiotech, IconBlender, IconBlock, IconBlockFlipped, IconBloodtype, IconBluetooth, IconBluetoothAudio, IconBluetoothConnected, IconBluetoothDisabled, IconBluetoothDrive, IconBluetoothSearching, IconBlurCircular, IconBlurLinear, IconBlurOff, IconBlurOn, IconBolt, IconBook, IconBookOnline, IconBookmark, IconBookmarkAdd, IconBookmarkAdded, IconBookmarkBorder, IconBookmarkRemove, IconBookmarks, IconBorderAll, IconBorderBottom, IconBorderClear, IconBorderColor, IconBorderHorizontal, IconBorderInner, IconBorderLeft, IconBorderOuter, IconBorderRight, IconBorderStyle, IconBorderTop, IconBorderVertical, IconBrandingWatermark, IconBreakfastDining, IconBrightnessAuto, IconBrightnessHigh, IconBrightnessLow, IconBrightnessMedium, IconBrightness_1, IconBrightness_2, IconBrightness_3, IconBrightness_4, IconBrightness_5, IconBrightness_6, IconBrightness_7, IconBrokenImage, IconBrowserNotSupported, IconBrunchDining, IconBrush, IconBubbleChart, IconBugReport, IconBuild, IconBuildCircle, IconBungalow, IconBurstMode, IconBusAlert, IconBusiness, IconBusinessCenter, IconCabin, IconCable, IconCached, IconCake, IconCalculate, IconCalendarToday, IconCalendarViewDay, IconCalendarViewMonth, IconCalendarViewWeek, IconCall, IconCallEnd, IconCallMade, IconCallMerge, IconCallMissed, IconCallMissedOutgoing, IconCallReceived, IconCallSplit, IconCallToAction, IconCamera, IconCameraAlt, IconCameraEnhance, IconCameraFront, IconCameraIndoor, IconCameraOutdoor, IconCameraRear, IconCameraRoll, IconCameraswitch, IconCampaign, IconCancel, IconCancelPresentation, IconCancelScheduleSend, IconCarRental, IconCarRepair, IconCardGiftcard, IconCardMembership, IconCardTravel, IconCarpenter, IconCases, IconCasino, IconCast, IconCastConnected, IconCastForEducation, IconCatchingPokemon, IconCategory, IconCelebration, IconCellWifi, IconCenterFocusStrong, IconCenterFocusWeak, IconChair, IconChairAlt, IconChalet, IconChangeCircle, IconChangeHistory, IconChargingStation, IconChat, IconChatBubble, IconChatBubbleOutline, IconCheck, IconCheckBox, IconCheckBoxOutlineBlank, IconCheckCircle, IconCheckCircleOutline, IconChecklist, IconChecklistRtl, IconCheckroom, IconChevronLeft, IconChevronRight, IconChildCare, IconChildFriendly, IconChromeReaderMode, IconCircle, IconCircleNotifications, IconClass, IconCleanHands, IconCleaningServices, IconClear, IconClearAll, IconClose, IconCloseFullscreen, IconClosedCaption, IconClosedCaptionDisabled, IconClosedCaptionOff, IconCloud, IconCloudCircle, IconCloudDone, IconCloudDownload, IconCloudOff, IconCloudQueue, IconCloudUpload, IconCode, IconCodeOff, IconCoffee, IconCoffeeMaker, IconCollections, IconCollectionsBookmark, IconColorLens, IconColorize, IconComment, IconCommentBank, IconCommute, IconCompare, IconCompareArrows, IconCompassCalibration, IconCompost, IconCompress, IconComputer, IconConfirmationNumber, IconConnectWithoutContact, IconConnectedTv, IconConstruction, IconContactMail, IconContactPage, IconContactPhone, IconContactSupport, IconContactless, IconContacts, IconContentCopy, IconContentCut, IconContentPaste, IconContentPasteOff, IconControlCamera, IconControlPoint, IconControlPointDuplicate, IconCopyAll, IconCopyright, IconCoronavirus, IconCorporateFare, IconCottage, IconCountertops, IconCreate, IconCreateNewFolder, IconCreditCard, IconCreditCardOff, IconCreditScore, IconCrib, IconCrop, IconCropDin, IconCropFree, IconCropLandscape, IconCropOriginal, IconCropPortrait, IconCropRotate, IconCropSquare, IconCrop_16_9, IconCrop_3_2, IconCrop_5_4, IconCrop_7_5, IconCrueltyFree, IconDangerous, IconDarkMode, IconDashboard, IconDashboardCustomize, IconDataExploration, IconDataSaverOff, IconDataSaverOn, IconDataUsage, IconDateRange, IconDeck, IconDehaze, IconDelete, IconDeleteForever, IconDeleteOutline, IconDeleteSweep, IconDeliveryDining, IconDepartureBoard, IconDescription, IconDesignServices, IconDesktopAccessDisabled, IconDesktopMac, IconDesktopWindows, IconDetails, IconDeveloperBoard, IconDeveloperBoardOff, IconDeveloperMode, IconDeviceHub, IconDeviceThermostat, IconDeviceUnknown, IconDevices, IconDevicesOther, IconDialerSip, IconDialpad, IconDining, IconDinnerDining, IconDirections, IconDirectionsBike, IconDirectionsBoat, IconDirectionsBoatFilled, IconDirectionsBus, IconDirectionsBusFilled, IconDirectionsCar, IconDirectionsCarFilled, IconDirectionsOff, IconDirectionsRailway, IconDirectionsRailwayFilled, IconDirectionsRun, IconDirectionsSubway, IconDirectionsSubwayFilled, IconDirectionsTransit, IconDirectionsTransitFilled, IconDirectionsWalk, IconDirtyLens, IconDisabledByDefault, IconDisabledVisible, IconDiscFull, IconDns, IconDoDisturb, IconDoDisturbAlt, IconDoDisturbOff, IconDoDisturbOn, IconDoNotDisturb, IconDoNotDisturbAlt, IconDoNotDisturbOff, IconDoNotDisturbOn, IconDoNotDisturbOnTotalSilence, IconDoNotStep, IconDoNotTouch, IconDock, IconDocumentScanner, IconDomain, IconDomainDisabled, IconDomainVerification, IconDone, IconDoneAll, IconDoneOutline, IconDonutLarge, IconDonutSmall, IconDoorBack, IconDoorFront, IconDoorSliding, IconDoorbell, IconDoubleArrow, IconDownhillSkiing, IconDownload, IconDownloadDone, IconDownloadForOffline, IconDownloading, IconDrafts, IconDragHandle, IconDragIndicator, IconDraw, IconDriveEta, IconDriveFileMove, IconDriveFileMoveOutline, IconDriveFileMoveRtl, IconDriveFileRenameOutline, IconDriveFolderUpload, IconDry, IconDryCleaning, IconDuo, IconDvr, IconDynamicFeed, IconDynamicForm, IconEMobiledata, IconEarbuds, IconEarbudsBattery, IconEast, IconEco, IconEdgesensorHigh, IconEdgesensorLow, IconEdit, IconEditAttributes, IconEditCalendar, IconEditLocation, IconEditLocationAlt, IconEditNote, IconEditNotifications, IconEditOff, IconEditRoad, IconEject, IconElderly, IconElectricBike, IconElectricCar, IconElectricMoped, IconElectricRickshaw, IconElectricScooter, IconElectricalServices, IconElevator, IconEmail, IconEmergency, IconEmojiEmotions, IconEmojiEvents, IconEmojiFlags, IconEmojiFoodBeverage, IconEmojiNature, IconEmojiObjects, IconEmojiPeople, IconEmojiSymbols, IconEmojiTransportation, IconEngineering, IconEnhancedEncryption, IconEqualizer, IconError, IconErrorOutline, IconEscalator, IconEscalatorWarning, IconEuro, IconEuroSymbol, IconEvStation, IconEvent, IconEventAvailable, IconEventBusy, IconEventNote, IconEventSeat, IconExitToApp, IconExpand, IconExpandLess, IconExpandMore, IconExplicit, IconExplore, IconExploreOff, IconExposure, IconExposureNeg_1, IconExposureNeg_2, IconExposurePlus_1, IconExposurePlus_2, IconExposureZero, IconExtension, IconExtensionOff, IconFace, IconFaceRetouchingNatural, IconFaceRetouchingOff, IconFacebook, IconFactCheck, IconFamilyRestroom, IconFastForward, IconFastRewind, IconFastfood, IconFavorite, IconFavoriteBorder, IconFeaturedPlayList, IconFeaturedVideo, IconFeed, IconFeedback, IconFemale, IconFence, IconFestival, IconFiberDvr, IconFiberManualRecord, IconFiberNew, IconFiberPin, IconFiberSmartRecord, IconFileCopy, IconFileDownload, IconFileDownloadDone, IconFileDownloadOff, IconFilePresent, IconFileUpload, IconFilter, IconFilterAlt, IconFilterBAndW, IconFilterCenterFocus, IconFilterDrama, IconFilterFrames, IconFilterHdr, IconFilterList, IconFilterListAlt, IconFilterNone, IconFilterTiltShift, IconFilterVintage, IconFilter_1, IconFilter_2, IconFilter_3, IconFilter_4, IconFilter_5, IconFilter_6, IconFilter_7, IconFilter_8, IconFilter_9, IconFilter_9Plus, IconFindInPage, IconFindReplace, IconFingerprint, IconFireExtinguisher, IconFireplace, IconFirstPage, IconFitScreen, IconFitnessCenter, IconFlag, IconFlaky, IconFlare, IconFlashAuto, IconFlashOff, IconFlashOn, IconFlashlightOff, IconFlashlightOn, IconFlatware, IconFlight, IconFlightLand, IconFlightTakeoff, IconFlip, IconFlipCameraAndroid, IconFlipCameraIos, IconFlipToBack, IconFlipToFront, IconFlourescent, IconFlutterDash, IconFmdBad, IconFmdGood, IconFolder, IconFolderOpen, IconFolderShared, IconFolderSpecial, IconFollowTheSigns, IconFontDownload, IconFontDownloadOff, IconFoodBank, IconFormatAlignCenter, IconFormatAlignJustify, IconFormatAlignLeft, IconFormatAlignRight, IconFormatBold, IconFormatClear, IconFormatColorFill, IconFormatColorReset, IconFormatColorText, IconFormatIndentDecrease, IconFormatIndentIncrease, IconFormatItalic, IconFormatLineSpacing, IconFormatListBulleted, IconFormatListNumbered, IconFormatListNumberedRtl, IconFormatPaint, IconFormatQuote, IconFormatShapes, IconFormatSize, IconFormatStrikethrough, IconFormatTextdirectionLToR, IconFormatTextdirectionRToL, IconFormatUnderlined, IconForum, IconForward, IconForwardToInbox, IconForward_10, IconForward_30, IconForward_5, IconFoundation, IconFreeBreakfast, IconFreeCancellation, IconFrontHand, IconFullscreen, IconFullscreenExit, IconFunctions, IconGMobiledata, IconGTranslate, IconGamepad, IconGames, IconGarage, IconGavel, IconGeneratingTokens, IconGesture, IconGetApp, IconGif, IconGite, IconGolfCourse, IconGppBad, IconGppGood, IconGppMaybe, IconGpsFixed, IconGpsNotFixed, IconGpsOff, IconGrade, IconGradient, IconGrading, IconGrain, IconGraphicEq, IconGrass, IconGridGoldenratio, IconGridOff, IconGridOn, IconGridView, IconGrid_3x3, IconGrid_4x4, IconGroup, IconGroupAdd, IconGroupOff, IconGroupWork, IconGroups, IconHMobiledata, IconHPlusMobiledata, IconHail, IconHandyman, IconHardware, IconHd, IconHdrAuto, IconHdrAutoSelect, IconHdrEnhancedSelect, IconHdrOff, IconHdrOffSelect, IconHdrOn, IconHdrOnSelect, IconHdrPlus, IconHdrStrong, IconHdrWeak, IconHeadphones, IconHeadphonesBattery, IconHeadset, IconHeadsetMic, IconHeadsetOff, IconHealing, IconHealthAndSafety, IconHearing, IconHearingDisabled, IconHeight, IconHelp, IconHelpCenter, IconHelpOutline, IconHevc, IconHideImage, IconHideSource, IconHighQuality, IconHighlight, IconHighlightAlt, IconHighlightOff, IconHiking, IconHistory, IconHistoryEdu, IconHistoryToggleOff, IconHolidayVillage, IconHome, IconHomeFilled, IconHomeMax, IconHomeMini, IconHomeRepairService, IconHomeWork, IconHorizontalDistribute, IconHorizontalRule, IconHorizontalSplit, IconHotTub, IconHotel, IconHotelClass, IconHourglassBottom, IconHourglassDisabled, IconHourglassEmpty, IconHourglassFull, IconHourglassTop, IconHouse, IconHouseSiding, IconHouseboat, IconHowToReg, IconHowToVote, IconHttp, IconHttps, IconHvac, IconIceSkating, IconIcecream, IconImage, IconImageAspectRatio, IconImageNotSupported, IconImageSearch, IconImagesearchRoller, IconImportContacts, IconImportExport, IconImportantDevices, IconInbox, IconIncompleteCircle, IconIndeterminateCheckBox, IconInfo, IconInfoOutline, IconInput, IconInsertChart, IconInsertChartOutlined, IconInsertComment, IconInsertDriveFile, IconInsertEmoticon, IconInsertInvitation, IconInsertLink, IconInsertPhoto, IconInsights, IconIntegrationInstructions, IconInventory, IconInventory_2, IconInvertColors, IconInvertColorsOff, IconIosShare, IconIron, IconIso, IconKayaking, IconKeyboard, IconKeyboardAlt, IconKeyboardArrowDown, IconKeyboardArrowLeft, IconKeyboardArrowRight, IconKeyboardArrowUp, IconKeyboardBackspace, IconKeyboardCapslock, IconKeyboardHide, IconKeyboardReturn, IconKeyboardTab, IconKeyboardVoice, IconKingBed, IconKitchen, IconKitesurfing, IconLabel, IconLabelImportant, IconLabelImportantOutline, IconLabelOff, IconLabelOutline, IconLandscape, IconLanguage, IconLaptop, IconLaptopChromebook, IconLaptopMac, IconLaptopWindows, IconLastPage, IconLaunch, IconLayers, IconLayersClear, IconLeaderboard, IconLeakAdd, IconLeakRemove, IconLegendToggle, IconLens, IconLensBlur, IconLibraryAdd, IconLibraryAddCheck, IconLibraryBooks, IconLibraryMusic, IconLight, IconLightMode, IconLightbulb, IconLightbulbOutline, IconLineStyle, IconLineWeight, IconLinearScale, IconLink, IconLinkOff, IconLinkedCamera, IconLiquor, IconList, IconListAlt, IconLiveHelp, IconLiveTv, IconLiving, IconLocalActivity, IconLocalAirport, IconLocalAtm, IconLocalBar, IconLocalCafe, IconLocalCarWash, IconLocalConvenienceStore, IconLocalDining, IconLocalDrink, IconLocalFireDepartment, IconLocalFlorist, IconLocalGasStation, IconLocalGroceryStore, IconLocalHospital, IconLocalHotel, IconLocalLaundryService, IconLocalLibrary, IconLocalMall, IconLocalMovies, IconLocalOffer, IconLocalParking, IconLocalPharmacy, IconLocalPhone, IconLocalPizza, IconLocalPlay, IconLocalPolice, IconLocalPostOffice, IconLocalPrintshop, IconLocalSee, IconLocalShipping, IconLocalTaxi, IconLocationCity, IconLocationDisabled, IconLocationOff, IconLocationOn, IconLocationPin, IconLocationSearching, IconLock, IconLockClock, IconLockOpen, IconLockOutline, IconLogin, IconLogout, IconLooks, IconLooksOne, IconLooksTwo, IconLooks_3, IconLooks_4, IconLooks_5, IconLooks_6, IconLoop, IconLoupe, IconLowPriority, IconLoyalty, IconLteMobiledata, IconLtePlusMobiledata, IconLuggage, IconLunchDining, IconMail, IconMailOutline, IconMale, IconManageAccounts, IconManageSearch, IconMap, IconMapsHomeWork, IconMapsUgc, IconMargin, IconMarkAsUnread, IconMarkChatRead, IconMarkChatUnread, IconMarkEmailRead, IconMarkEmailUnread, IconMarkunread, IconMarkunreadMailbox, IconMasks, IconMaximize, IconMediaBluetoothOff, IconMediaBluetoothOn, IconMediation, IconMedicalServices, IconMedication, IconMeetingRoom, IconMemory, IconMenu, IconMenuBook, IconMenuOpen, IconMergeType, IconMessage, IconMic, IconMicExternalOff, IconMicExternalOn, IconMicNone, IconMicOff, IconMicrowave, IconMilitaryTech, IconMinimize, IconMiscellaneousServices, IconMissedVideoCall, IconMms, IconMobileFriendly, IconMobileOff, IconMobileScreenShare, IconMobiledataOff, IconMode, IconModeComment, IconModeEdit, IconModeEditOutline, IconModeNight, IconModeStandby, IconModelTraining, IconMonetizationOn, IconMoney, IconMoneyOff, IconMoneyOffCsred, IconMonitor, IconMonitorWeight, IconMonochromePhotos, IconMood, IconMoodBad, IconMoped, IconMore, IconMoreHoriz, IconMoreTime, IconMoreVert, IconMotionPhotosAuto, IconMotionPhotosOff, IconMotionPhotosOn, IconMotionPhotosPause, IconMotionPhotosPaused, IconMouse, IconMoveToInbox, IconMovie, IconMovieCreation, IconMovieFilter, IconMoving, IconMp, IconMultilineChart, IconMultipleStop, IconMuseum, IconMusicNote, IconMusicOff, IconMusicVideo, IconMyLocation, IconNat, IconNature, IconNaturePeople, IconNavigateBefore, IconNavigateNext, IconNavigation, IconNearMe, IconNearMeDisabled, IconNearbyError, IconNearbyOff, IconNetworkCell, IconNetworkCheck, IconNetworkLocked, IconNetworkWifi, IconNewLabel, IconNewReleases, IconNextPlan, IconNextWeek, IconNfc, IconNightShelter, IconNightlife, IconNightlight, IconNightlightRound, IconNightsStay, IconNoAccounts, IconNoBackpack, IconNoCell, IconNoDrinks, IconNoEncryption, IconNoEncryptionGmailerrorred, IconNoFlash, IconNoFood, IconNoLuggage, IconNoMeals, IconNoMealsOuline, IconNoMeetingRoom, IconNoPhotography, IconNoSim, IconNoStroller, IconNoTransfer, IconNordicWalking, IconNorth, IconNorthEast, IconNorthWest, IconNotAccessible, IconNotInterested, IconNotListedLocation, IconNotStarted, IconNote, IconNoteAdd, IconNoteAlt, IconNotes, IconNotificationAdd, IconNotificationImportant, IconNotifications, IconNotificationsActive, IconNotificationsNone, IconNotificationsOff, IconNotificationsPaused, IconOfflineBolt, IconOfflinePin, IconOfflineShare, IconOndemandVideo, IconOnlinePrediction, IconOpacity, IconOpenInBrowser, IconOpenInFull, IconOpenInNew, IconOpenInNewOff, IconOpenWith, IconOtherHouses, IconOutbond, IconOutbound, IconOutbox, IconOutdoorGrill, IconOutgoingMail, IconOutlet, IconOutlinedFlag, IconPadding, IconPages, IconPageview, IconPaid, IconPalette, IconPanTool, IconPanorama, IconPanoramaFishEye, IconPanoramaHorizontal, IconPanoramaHorizontalSelect, IconPanoramaPhotosphere, IconPanoramaPhotosphereSelect, IconPanoramaVertical, IconPanoramaVerticalSelect, IconPanoramaWideAngle, IconPanoramaWideAngleSelect, IconParagliding, IconPark, IconPartyMode, IconPassword, IconPattern, IconPause, IconPauseCircle, IconPauseCircleFilled, IconPauseCircleOutline, IconPausePresentation, IconPayment, IconPayments, IconPedalBike, IconPending, IconPendingActions, IconPeople, IconPeopleAlt, IconPeopleOutline, IconPermCameraMic, IconPermContactCalendar, IconPermDataSetting, IconPermDeviceInformation, IconPermIdentity, IconPermMedia, IconPermPhoneMsg, IconPermScanWifi, IconPerson, IconPersonAdd, IconPersonAddAlt, IconPersonAddAlt_1, IconPersonAddDisabled, IconPersonOff, IconPersonOutline, IconPersonPin, IconPersonPinCircle, IconPersonRemove, IconPersonRemoveAlt_1, IconPersonSearch, IconPersonalInjury, IconPersonalVideo, IconPestControl, IconPestControlRodent, IconPets, IconPhone, IconPhoneAndroid, IconPhoneBluetoothSpeaker, IconPhoneCallback, IconPhoneDisabled, IconPhoneEnabled, IconPhoneForwarded, IconPhoneInTalk, IconPhoneIphone, IconPhoneLocked, IconPhoneMissed, IconPhonePaused, IconPhonelink, IconPhonelinkErase, IconPhonelinkLock, IconPhonelinkOff, IconPhonelinkRing, IconPhonelinkSetup, IconPhoto, IconPhotoAlbum, IconPhotoCamera, IconPhotoCameraBack, IconPhotoCameraFront, IconPhotoFilter, IconPhotoLibrary, IconPhotoSizeSelectActual, IconPhotoSizeSelectLarge, IconPhotoSizeSelectSmall, IconPiano, IconPianoOff, IconPictureAsPdf, IconPictureInPicture, IconPictureInPictureAlt, IconPieChart, IconPieChartOutline, IconPieChartOutlined, IconPin, IconPinDrop, IconPinEnd, IconPinInvoke, IconPivotTableChart, IconPlace, IconPlagiarism, IconPlayArrow, IconPlayCircle, IconPlayCircleFilled, IconPlayCircleOutline, IconPlayDisabled, IconPlayForWork, IconPlayLesson, IconPlaylistAdd, IconPlaylistAddCheck, IconPlaylistPlay, IconPlumbing, IconPlusOne, IconPodcasts, IconPointOfSale, IconPolicy, IconPoll, IconPolymer, IconPool, IconPortableWifiOff, IconPortrait, IconPostAdd, IconPower, IconPowerInput, IconPowerOff, IconPowerSettingsNew, IconPrecisionManufacturing, IconPregnantWoman, IconPresentToAll, IconPreview, IconPriceChange, IconPriceCheck, IconPrint, IconPrintDisabled, IconPriorityHigh, IconPrivacyTip, IconPrivateConnectivity, IconProductionQuantityLimits, IconProps, IconPsychology, IconPublic, IconPublicOff, IconPublish, IconPublishedWithChanges, IconPushPin, IconQrCode, IconQrCodeScanner, IconQrCode_2, IconQueryBuilder, IconQueryStats, IconQuestionAnswer, IconQueue, IconQueueMusic, IconQueuePlayNext, IconQuickreply, IconQuiz, IconRMobiledata, IconRadar, IconRadio, IconRadioButtonChecked, IconRadioButtonUnchecked, IconRailwayAlert, IconRamenDining, IconRateReview, IconRawOff, IconRawOn, IconReadMore, IconRealEstateAgent, IconReceipt, IconReceiptLong, IconRecentActors, IconRecommend, IconRecordVoiceOver, IconRecycling, IconRedeem, IconRedo, IconReduceCapacity, IconRefresh, IconRememberMe, IconRemove, IconRemoveCircle, IconRemoveCircleOutline, IconRemoveDone, IconRemoveFromQueue, IconRemoveModerator, IconRemoveRedEye, IconRemoveShoppingCart, IconReorder, IconRepeat, IconRepeatOn, IconRepeatOne, IconRepeatOneOn, IconReplay, IconReplayCircleFilled, IconReplay_10, IconReplay_30, IconReplay_5, IconReply, IconReplyAll, IconReport, IconReportGmailerrorred, IconReportOff, IconReportProblem, IconRequestPage, IconRequestQuote, IconResetTv, IconRestartAlt, IconRestaurant, IconRestaurantMenu, IconRestore, IconRestoreFromTrash, IconRestorePage, IconReviews, IconRiceBowl, IconRingVolume, IconRoofing, IconRoom, IconRoomPreferences, IconRoomService, IconRotateLeft, IconRotateRight, IconRotate_90DegreesCcw, IconRoundedCorner, IconRouter, IconRowing, IconRssFeed, IconRsvp, IconRtt, IconRule, IconRuleFolder, IconRunCircle, IconRunningWithErrors, IconRvHookup, IconSafetyDivider, IconSailing, IconSanitizer, IconSatellite, IconSave, IconSaveAlt, IconSavedSearch, IconSavings, IconScanner, IconScatterPlot, IconSchedule, IconScheduleSend, IconSchema, IconSchool, IconScience, IconScore, IconScreenLockLandscape, IconScreenLockPortrait, IconScreenLockRotation, IconScreenRotation, IconScreenSearchDesktop, IconScreenShare, IconScreenshot, IconSd, IconSdCard, IconSdCardAlert, IconSdStorage, IconSearch, IconSearchOff, IconSecurity, IconSecurityUpdate, IconSecurityUpdateGood, IconSecurityUpdateWarning, IconSegment, IconSelectAll, IconSelfImprovement, IconSell, IconSend, IconSendAndArchive, IconSendToMobile, IconSensorDoor, IconSensorWindow, IconSensors, IconSensorsOff, IconSentimentDissatisfied, IconSentimentNeutral, IconSentimentSatisfied, IconSentimentSatisfiedAlt, IconSentimentVeryDissatisfied, IconSentimentVerySatisfied, IconSetMeal, IconSettings, IconSettingsAccessibility, IconSettingsApplications, IconSettingsBackupRestore, IconSettingsBluetooth, IconSettingsBrightness, IconSettingsCell, IconSettingsEthernet, IconSettingsInputAntenna, IconSettingsInputComponent, IconSettingsInputComposite, IconSettingsInputHdmi, IconSettingsInputSvideo, IconSettingsOverscan, IconSettingsPhone, IconSettingsPower, IconSettingsRemote, IconSettingsSuggest, IconSettingsSystemDaydream, IconSettingsVoice, IconShare, IconShareLocation, IconShield, IconShop, IconShopTwo, IconShop_2, IconShoppingBag, IconShoppingBasket, IconShoppingCart, IconShortText, IconShortcut, IconShowChart, IconShower, IconShuffle, IconShuffleOn, IconShutterSpeed, IconSick, IconSignalCellularAlt, IconSignalCellularConnectedNoInternet_0Bar, IconSignalCellularConnectedNoInternet_4Bar, IconSignalCellularNoSim, IconSignalCellularNodata, IconSignalCellularNull, IconSignalCellularOff, IconSignalCellular_0Bar, IconSignalCellular_4Bar, IconSignalWifiBad, IconSignalWifiConnectedNoInternet_4, IconSignalWifiOff, IconSignalWifiStatusbarConnectedNoInternet_4, IconSignalWifiStatusbarNull, IconSignalWifiStatusbar_4Bar, IconSignalWifi_0Bar, IconSignalWifi_4Bar, IconSignalWifi_4BarLock, IconSimCard, IconSimCardAlert, IconSimCardDownload, IconSingleBed, IconSip, IconSize, IconSkateboarding, IconSkipNext, IconSkipPrevious, IconSledding, IconSlideshow, IconSlowMotionVideo, IconSmartButton, IconSmartDisplay, IconSmartScreen, IconSmartToy, IconSmartphone, IconSmokeFree, IconSmokingRooms, IconSms, IconSmsFailed, IconSnippetFolder, IconSnooze, IconSnowboarding, IconSnowmobile, IconSnowshoeing, IconSoap, IconSocialDistance, IconSort, IconSortByAlpha, IconSource, IconSouth, IconSouthEast, IconSouthWest, IconSpa, IconSpaceBar, IconSpaceDashboard, IconSpeaker, IconSpeakerGroup, IconSpeakerNotes, IconSpeakerNotesOff, IconSpeakerPhone, IconSpeed, IconSpellcheck, IconSplitscreen, IconSports, IconSportsBar, IconSportsBaseball, IconSportsBasketball, IconSportsCricket, IconSportsEsports, IconSportsFootball, IconSportsGolf, IconSportsHandball, IconSportsHockey, IconSportsKabaddi, IconSportsMma, IconSportsMotorsports, IconSportsRugby, IconSportsScore, IconSportsSoccer, IconSportsTennis, IconSportsVolleyball, IconSquareFoot, IconStackedBarChart, IconStackedLineChart, IconStairs, IconStar, IconStarBorder, IconStarBorderPurple500, IconStarHalf, IconStarOutline, IconStarPurple500, IconStarRate, IconStars, IconStayCurrentLandscape, IconStayCurrentPortrait, IconStayPrimaryLandscape, IconStayPrimaryPortrait, IconStickyNote_2, IconStop, IconStopCircle, IconStopScreenShare, IconStorage, IconStore, IconStoreMallDirectory, IconStorefront, IconStorm, IconStraighten, IconStream, IconStreetview, IconStrikethroughS, IconStroller, IconStyle, IconSubdirectoryArrowLeft, IconSubdirectoryArrowRight, IconSubject, IconSubscript, IconSubscriptions, IconSubtitles, IconSubtitlesOff, IconSubway, IconSummarize, IconSuperscript, IconSupervisedUserCircle, IconSupervisorAccount, IconSupport, IconSupportAgent, IconSurfing, IconSurroundSound, IconSwapCalls, IconSwapHoriz, IconSwapHorizontalCircle, IconSwapVert, IconSwapVerticalCircle, IconSwipe, IconSwitchAccount, IconSwitchCamera, IconSwitchLeft, IconSwitchRight, IconSwitchVideo, IconSync, IconSyncAlt, IconSyncDisabled, IconSyncProblem, IconSystemSecurityUpdate, IconSystemSecurityUpdateGood, IconSystemSecurityUpdateWarning, IconSystemUpdate, IconSystemUpdateAlt, IconTab, IconTabUnselected, IconTableChart, IconTableRows, IconTableView, IconTablet, IconTabletAndroid, IconTabletMac, IconTag, IconTagFaces, IconTakeoutDining, IconTapAndPlay, IconTapas, IconTask, IconTaskAlt, IconTaxiAlert, IconTerrain, IconTextFields, IconTextFormat, IconTextRotateUp, IconTextRotateVertical, IconTextRotationAngledown, IconTextRotationAngleup, IconTextRotationDown, IconTextRotationNone, IconTextSnippet, IconTextsms, IconTexture, IconTheaterComedy, IconTheaters, IconThermostat, IconThermostatAuto, IconThumbDown, IconThumbDownAlt, IconThumbDownOffAlt, IconThumbUp, IconThumbUpAlt, IconThumbUpOffAlt, IconThumbsUpDown, IconTimeToLeave, IconTimelapse, IconTimeline, IconTimer, IconTimerOff, IconTimer_10, IconTimer_10Select, IconTimer_3, IconTimer_3Select, IconTipsAndUpdates, IconTitle, IconToc, IconToday, IconToggleOff, IconToggleOn, IconToll, IconTonality, IconTopic, IconTouchApp, IconTour, IconToys, IconTrackChanges, IconTraffic, IconTrain, IconTram, IconTransferWithinAStation, IconTransform, IconTransgender, IconTransitEnterexit, IconTranslate, IconTravelExplore, IconTrendingDown, IconTrendingFlat, IconTrendingUp, IconTripOrigin, IconTry, IconTty, IconTune, IconTungsten, IconTurnedIn, IconTurnedInNot, IconTv, IconTvOff, IconTwoWheeler, IconUmbrella, IconUnarchive, IconUndo, IconUnfoldLess, IconUnfoldMore, IconUnpublished, IconUnsubscribe, IconUpcoming, IconUpdate, IconUpdateDisabled, IconUpgrade, IconUpload, IconUploadFile, IconUsb, IconUsbOff, IconVerified, IconVerifiedUser, IconVerticalAlignBottom, IconVerticalAlignCenter, IconVerticalAlignTop, IconVerticalDistribute, IconVerticalSplit, IconVibration, IconVideoCall, IconVideoCameraBack, IconVideoCameraFront, IconVideoLabel, IconVideoLibrary, IconVideoSettings, IconVideoStable, IconVideocam, IconVideocamOff, IconVideogameAsset, IconVideogameAssetOff, IconViewAgenda, IconViewArray, IconViewCarousel, IconViewColumn, IconViewComfy, IconViewCompact, IconViewDay, IconViewHeadline, IconViewInAr, IconViewList, IconViewModule, IconViewQuilt, IconViewSidebar, IconViewStream, IconViewWeek, IconVignette, IconVilla, IconVisibility, IconVisibilityOff, IconVoiceChat, IconVoiceOverOff, IconVoicemail, IconVolumeDown, IconVolumeDownAlt, IconVolumeMute, IconVolumeOff, IconVolumeUp, IconVolunteerActivism, IconVpnKey, IconVpnLock, IconVrpano, IconWallpaper, IconWarning, IconWarningAmber, IconWash, IconWatch, IconWatchLater, IconWater, IconWaterDamage, IconWaterDrop, IconWaterfallChart, IconWaves, IconWavingHand, IconWbAuto, IconWbCloudy, IconWbIncandescent, IconWbIridescent, IconWbShade, IconWbSunny, IconWbTwighlight, IconWbTwilight, IconWc, IconWeb, IconWebAsset, IconWebAssetOff, IconWebStories, IconWeekend, IconWest, IconWhatshot, IconWheelchairPickup, IconWhereToVote, IconWidgets, IconWifi, IconWifiCalling, IconWifiCalling_3, IconWifiLock, IconWifiOff, IconWifiProtectedSetup, IconWifiTethering, IconWifiTetheringErrorRounded, IconWifiTetheringOff, IconWindow, IconWineBar, IconWork, IconWorkOff, IconWorkOutline, IconWorkspaces, IconWorkspacesFilled, IconWorkspacesOutline, IconWrapText, IconWrongLocation, IconWysiwyg, IconYard, IconYoutubeSearchedFor, IconZoomIn, IconZoomOut, IconZoomOutMap, Image, ImageOptions, ImageProps, ImageStyleProps, Input, Label, LabelProps, Link, LinkOptions, LinkProps, ListCollectionProps, Main, Pagination, PaginationCallbackType, PaginationItemProps, PaginationItemType, PaginationProps, PasswordField, PasswordFieldProps, PasswordFieldType, Placeholder, PlaceholderProps, PlaceholderSize, Rating, RatingOptions, RatingProps, RatingSize, SelectField, SelectFieldProps, SharedText, ShowPasswordButtonProps, Sizes, Spacer, SwitchField, SwitchFieldProps, Text, TextField, TextFieldProps, TextFieldType, Theme, Tokens, UsePaginationProps, UsePaginationResult, View, ViewAsHTMLElementTypes, ViewBox, ViewProps, VisuallyHidden, Wrapper, index$1 as components, convertStylePropsToStyleObj, defaultCSSVariables, extendTheming, findChildOverrides, getConsecutiveIntArray, getNonStyleProps, getOverrideProps, labelPositions, prefixer, index as primitives, strHasLength, useAmplify, useAmplifyFieldID, useAuth, usePagination, useTheming, withAuthenticator };
|
|
13132
|
+
export { Alert, AlertProps, AlertVariation, AllStyleProps, AmplifyProvider, AriaProps, Authenticator, Badge, BadgeProps, BadgeSize, BadgeVariation, BaseComponentProps, BaseStyleProps, Box, Button, ButtonProps, ButtonSize, ButtonTypes, ButtonVariation, CSSLayoutStyleProps, Card, CardProps, Collection, CollectionBaseProps, CollectionProps, CollectionType, CollectionTypeMap, CollectionTypeMapInterface, ComponentClassNames, ComponentPropToStyleProp, ComponentPropsToStylePropsMap, ComponentPropsToStylePropsMapKeys, CountryCodeSelectProps, DeepPartial, Divider, DividerOptions, DividerOrientation, DividerProps, DividerSize, ErrorText, EscapeHatchProps, FieldClearButtonProps, FieldDescriptionProps, FieldErrorMessageProps, FieldGroup, FieldGroupIcon, FieldGroupIconButton, FieldGroupIconButtonProps, FieldGroupIconProps, FieldGroupOptions, FieldProps, FieldVariations, Fieldset, Flex, FlexProps, FlexStyleProps, Footer, Form, Grid, GridContainerStyleProps, GridItemStyleProps, GridProps, Header, Heading, HeadingLevel, HeadingProps, Icon, Icon10k, Icon10mp, Icon11mp, Icon12mp, Icon13mp, Icon14mp, Icon15mp, Icon16mp, Icon17mp, Icon18mp, Icon19mp, Icon1k, Icon1kPlus, Icon1xMobiledata, Icon20mp, Icon21mp, Icon22mp, Icon23mp, Icon24mp, Icon2k, Icon2kPlus, Icon2mp, Icon30fps, Icon30fpsSelect, Icon360, Icon3dRotation, Icon3gMobiledata, Icon3k, Icon3kPlus, Icon3mp, Icon3p, Icon4gMobiledata, Icon4gPlusMobiledata, Icon4k, Icon4kPlus, Icon4mp, Icon5g, Icon5k, Icon5kPlus, Icon5mp, Icon60fps, Icon60fpsSelect, Icon6FtApart, Icon6k, Icon6kPlus, Icon6mp, Icon7k, Icon7kPlus, Icon7mp, Icon8k, Icon8kPlus, Icon8mp, Icon9k, Icon9kPlus, Icon9mp, IconAcUnit, IconAccessAlarm, IconAccessAlarms, IconAccessTime, IconAccessTimeFilled, IconAccessibility, IconAccessibilityNew, IconAccessible, IconAccessibleForward, IconAccountBalance, IconAccountBalanceWallet, IconAccountBox, IconAccountCircle, IconAccountTree, IconAdUnits, IconAdb, IconAdd, IconAddAPhoto, IconAddAlarm, IconAddAlert, IconAddBox, IconAddBusiness, IconAddCall, IconAddChart, IconAddCircle, IconAddCircleOutline, IconAddComment, IconAddIcCall, IconAddLink, IconAddLocation, IconAddLocationAlt, IconAddModerator, IconAddPhotoAlternate, IconAddReaction, IconAddRoad, IconAddShoppingCart, IconAddTask, IconAddToDrive, IconAddToHomeScreen, IconAddToPhotos, IconAddToQueue, IconAdjust, IconAdminPanelSettings, IconAdsClick, IconAgriculture, IconAir, IconAirlineSeatFlat, IconAirlineSeatFlatAngled, IconAirlineSeatIndividualSuite, IconAirlineSeatLegroomExtra, IconAirlineSeatLegroomNormal, IconAirlineSeatLegroomReduced, IconAirlineSeatReclineExtra, IconAirlineSeatReclineNormal, IconAirplaneTicket, IconAirplanemodeActive, IconAirplanemodeInactive, IconAirplay, IconAirportShuttle, IconAlarm, IconAlarmAdd, IconAlarmOff, IconAlarmOn, IconAlbum, IconAlignHorizontalCenter, IconAlignHorizontalLeft, IconAlignHorizontalRight, IconAlignVerticalBottom, IconAlignVerticalCenter, IconAlignVerticalTop, IconAllInbox, IconAllInclusive, IconAllOut, IconAltRoute, IconAlternateEmail, IconAmpStories, IconAnalytics, IconAnchor, IconAndroid, IconAnimation, IconAnnouncement, IconAod, IconApartment, IconApi, IconAppBlocking, IconAppRegistration, IconAppSettingsAlt, IconApproval, IconApps, IconArchitecture, IconArchive, IconAreaChart, IconArrowBack, IconArrowBackIos, IconArrowBackIosNew, IconArrowCircleDown, IconArrowCircleUp, IconArrowDownward, IconArrowDropDown, IconArrowDropDownCircle, IconArrowDropUp, IconArrowForward, IconArrowForwardIos, IconArrowLeft, IconArrowRight, IconArrowRightAlt, IconArrowUpward, IconArtTrack, IconArticle, IconAspectRatio, IconAssessment, IconAssignment, IconAssignmentInd, IconAssignmentLate, IconAssignmentReturn, IconAssignmentReturned, IconAssignmentTurnedIn, IconAssistant, IconAssistantDirection, IconAssistantNavigation, IconAssistantPhoto, IconAtm, IconAttachEmail, IconAttachFile, IconAttachMoney, IconAttachment, IconAttractions, IconAttribution, IconAudiotrack, IconAutoAwesome, IconAutoAwesomeMosaic, IconAutoAwesomeMotion, IconAutoDelete, IconAutoFixHigh, IconAutoFixNormal, IconAutoFixOff, IconAutoGraph, IconAutoStories, IconAutofpsSelect, IconAutorenew, IconAvTimer, IconBabyChangingStation, IconBackHand, IconBackpack, IconBackspace, IconBackup, IconBackupTable, IconBadge, IconBakeryDining, IconBalcony, IconBallot, IconBarChart, IconBatchPrediction, IconBathroom, IconBathtub, IconBatteryAlert, IconBatteryChargingFull, IconBatteryFull, IconBatterySaver, IconBatteryStd, IconBatteryUnknown, IconBeachAccess, IconBed, IconBedroomBaby, IconBedroomChild, IconBedroomParent, IconBedtime, IconBeenhere, IconBento, IconBikeScooter, IconBiotech, IconBlender, IconBlock, IconBlockFlipped, IconBloodtype, IconBluetooth, IconBluetoothAudio, IconBluetoothConnected, IconBluetoothDisabled, IconBluetoothDrive, IconBluetoothSearching, IconBlurCircular, IconBlurLinear, IconBlurOff, IconBlurOn, IconBolt, IconBook, IconBookOnline, IconBookmark, IconBookmarkAdd, IconBookmarkAdded, IconBookmarkBorder, IconBookmarkRemove, IconBookmarks, IconBorderAll, IconBorderBottom, IconBorderClear, IconBorderColor, IconBorderHorizontal, IconBorderInner, IconBorderLeft, IconBorderOuter, IconBorderRight, IconBorderStyle, IconBorderTop, IconBorderVertical, IconBrandingWatermark, IconBreakfastDining, IconBrightnessAuto, IconBrightnessHigh, IconBrightnessLow, IconBrightnessMedium, IconBrightness_1, IconBrightness_2, IconBrightness_3, IconBrightness_4, IconBrightness_5, IconBrightness_6, IconBrightness_7, IconBrokenImage, IconBrowserNotSupported, IconBrunchDining, IconBrush, IconBubbleChart, IconBugReport, IconBuild, IconBuildCircle, IconBungalow, IconBurstMode, IconBusAlert, IconBusiness, IconBusinessCenter, IconCabin, IconCable, IconCached, IconCake, IconCalculate, IconCalendarToday, IconCalendarViewDay, IconCalendarViewMonth, IconCalendarViewWeek, IconCall, IconCallEnd, IconCallMade, IconCallMerge, IconCallMissed, IconCallMissedOutgoing, IconCallReceived, IconCallSplit, IconCallToAction, IconCamera, IconCameraAlt, IconCameraEnhance, IconCameraFront, IconCameraIndoor, IconCameraOutdoor, IconCameraRear, IconCameraRoll, IconCameraswitch, IconCampaign, IconCancel, IconCancelPresentation, IconCancelScheduleSend, IconCarRental, IconCarRepair, IconCardGiftcard, IconCardMembership, IconCardTravel, IconCarpenter, IconCases, IconCasino, IconCast, IconCastConnected, IconCastForEducation, IconCatchingPokemon, IconCategory, IconCelebration, IconCellWifi, IconCenterFocusStrong, IconCenterFocusWeak, IconChair, IconChairAlt, IconChalet, IconChangeCircle, IconChangeHistory, IconChargingStation, IconChat, IconChatBubble, IconChatBubbleOutline, IconCheck, IconCheckBox, IconCheckBoxOutlineBlank, IconCheckCircle, IconCheckCircleOutline, IconChecklist, IconChecklistRtl, IconCheckroom, IconChevronLeft, IconChevronRight, IconChildCare, IconChildFriendly, IconChromeReaderMode, IconCircle, IconCircleNotifications, IconClass, IconCleanHands, IconCleaningServices, IconClear, IconClearAll, IconClose, IconCloseFullscreen, IconClosedCaption, IconClosedCaptionDisabled, IconClosedCaptionOff, IconCloud, IconCloudCircle, IconCloudDone, IconCloudDownload, IconCloudOff, IconCloudQueue, IconCloudUpload, IconCode, IconCodeOff, IconCoffee, IconCoffeeMaker, IconCollections, IconCollectionsBookmark, IconColorLens, IconColorize, IconComment, IconCommentBank, IconCommute, IconCompare, IconCompareArrows, IconCompassCalibration, IconCompost, IconCompress, IconComputer, IconConfirmationNumber, IconConnectWithoutContact, IconConnectedTv, IconConstruction, IconContactMail, IconContactPage, IconContactPhone, IconContactSupport, IconContactless, IconContacts, IconContentCopy, IconContentCut, IconContentPaste, IconContentPasteOff, IconControlCamera, IconControlPoint, IconControlPointDuplicate, IconCopyAll, IconCopyright, IconCoronavirus, IconCorporateFare, IconCottage, IconCountertops, IconCreate, IconCreateNewFolder, IconCreditCard, IconCreditCardOff, IconCreditScore, IconCrib, IconCrop, IconCropDin, IconCropFree, IconCropLandscape, IconCropOriginal, IconCropPortrait, IconCropRotate, IconCropSquare, IconCrop_16_9, IconCrop_3_2, IconCrop_5_4, IconCrop_7_5, IconCrueltyFree, IconDangerous, IconDarkMode, IconDashboard, IconDashboardCustomize, IconDataExploration, IconDataSaverOff, IconDataSaverOn, IconDataUsage, IconDateRange, IconDeck, IconDehaze, IconDelete, IconDeleteForever, IconDeleteOutline, IconDeleteSweep, IconDeliveryDining, IconDepartureBoard, IconDescription, IconDesignServices, IconDesktopAccessDisabled, IconDesktopMac, IconDesktopWindows, IconDetails, IconDeveloperBoard, IconDeveloperBoardOff, IconDeveloperMode, IconDeviceHub, IconDeviceThermostat, IconDeviceUnknown, IconDevices, IconDevicesOther, IconDialerSip, IconDialpad, IconDining, IconDinnerDining, IconDirections, IconDirectionsBike, IconDirectionsBoat, IconDirectionsBoatFilled, IconDirectionsBus, IconDirectionsBusFilled, IconDirectionsCar, IconDirectionsCarFilled, IconDirectionsOff, IconDirectionsRailway, IconDirectionsRailwayFilled, IconDirectionsRun, IconDirectionsSubway, IconDirectionsSubwayFilled, IconDirectionsTransit, IconDirectionsTransitFilled, IconDirectionsWalk, IconDirtyLens, IconDisabledByDefault, IconDisabledVisible, IconDiscFull, IconDns, IconDoDisturb, IconDoDisturbAlt, IconDoDisturbOff, IconDoDisturbOn, IconDoNotDisturb, IconDoNotDisturbAlt, IconDoNotDisturbOff, IconDoNotDisturbOn, IconDoNotDisturbOnTotalSilence, IconDoNotStep, IconDoNotTouch, IconDock, IconDocumentScanner, IconDomain, IconDomainDisabled, IconDomainVerification, IconDone, IconDoneAll, IconDoneOutline, IconDonutLarge, IconDonutSmall, IconDoorBack, IconDoorFront, IconDoorSliding, IconDoorbell, IconDoubleArrow, IconDownhillSkiing, IconDownload, IconDownloadDone, IconDownloadForOffline, IconDownloading, IconDrafts, IconDragHandle, IconDragIndicator, IconDraw, IconDriveEta, IconDriveFileMove, IconDriveFileMoveOutline, IconDriveFileMoveRtl, IconDriveFileRenameOutline, IconDriveFolderUpload, IconDry, IconDryCleaning, IconDuo, IconDvr, IconDynamicFeed, IconDynamicForm, IconEMobiledata, IconEarbuds, IconEarbudsBattery, IconEast, IconEco, IconEdgesensorHigh, IconEdgesensorLow, IconEdit, IconEditAttributes, IconEditCalendar, IconEditLocation, IconEditLocationAlt, IconEditNote, IconEditNotifications, IconEditOff, IconEditRoad, IconEject, IconElderly, IconElectricBike, IconElectricCar, IconElectricMoped, IconElectricRickshaw, IconElectricScooter, IconElectricalServices, IconElevator, IconEmail, IconEmergency, IconEmojiEmotions, IconEmojiEvents, IconEmojiFlags, IconEmojiFoodBeverage, IconEmojiNature, IconEmojiObjects, IconEmojiPeople, IconEmojiSymbols, IconEmojiTransportation, IconEngineering, IconEnhancedEncryption, IconEqualizer, IconError, IconErrorOutline, IconEscalator, IconEscalatorWarning, IconEuro, IconEuroSymbol, IconEvStation, IconEvent, IconEventAvailable, IconEventBusy, IconEventNote, IconEventSeat, IconExitToApp, IconExpand, IconExpandLess, IconExpandMore, IconExplicit, IconExplore, IconExploreOff, IconExposure, IconExposureNeg_1, IconExposureNeg_2, IconExposurePlus_1, IconExposurePlus_2, IconExposureZero, IconExtension, IconExtensionOff, IconFace, IconFaceRetouchingNatural, IconFaceRetouchingOff, IconFacebook, IconFactCheck, IconFamilyRestroom, IconFastForward, IconFastRewind, IconFastfood, IconFavorite, IconFavoriteBorder, IconFeaturedPlayList, IconFeaturedVideo, IconFeed, IconFeedback, IconFemale, IconFence, IconFestival, IconFiberDvr, IconFiberManualRecord, IconFiberNew, IconFiberPin, IconFiberSmartRecord, IconFileCopy, IconFileDownload, IconFileDownloadDone, IconFileDownloadOff, IconFilePresent, IconFileUpload, IconFilter, IconFilterAlt, IconFilterBAndW, IconFilterCenterFocus, IconFilterDrama, IconFilterFrames, IconFilterHdr, IconFilterList, IconFilterListAlt, IconFilterNone, IconFilterTiltShift, IconFilterVintage, IconFilter_1, IconFilter_2, IconFilter_3, IconFilter_4, IconFilter_5, IconFilter_6, IconFilter_7, IconFilter_8, IconFilter_9, IconFilter_9Plus, IconFindInPage, IconFindReplace, IconFingerprint, IconFireExtinguisher, IconFireplace, IconFirstPage, IconFitScreen, IconFitnessCenter, IconFlag, IconFlaky, IconFlare, IconFlashAuto, IconFlashOff, IconFlashOn, IconFlashlightOff, IconFlashlightOn, IconFlatware, IconFlight, IconFlightLand, IconFlightTakeoff, IconFlip, IconFlipCameraAndroid, IconFlipCameraIos, IconFlipToBack, IconFlipToFront, IconFlourescent, IconFlutterDash, IconFmdBad, IconFmdGood, IconFolder, IconFolderOpen, IconFolderShared, IconFolderSpecial, IconFollowTheSigns, IconFontDownload, IconFontDownloadOff, IconFoodBank, IconFormatAlignCenter, IconFormatAlignJustify, IconFormatAlignLeft, IconFormatAlignRight, IconFormatBold, IconFormatClear, IconFormatColorFill, IconFormatColorReset, IconFormatColorText, IconFormatIndentDecrease, IconFormatIndentIncrease, IconFormatItalic, IconFormatLineSpacing, IconFormatListBulleted, IconFormatListNumbered, IconFormatListNumberedRtl, IconFormatPaint, IconFormatQuote, IconFormatShapes, IconFormatSize, IconFormatStrikethrough, IconFormatTextdirectionLToR, IconFormatTextdirectionRToL, IconFormatUnderlined, IconForum, IconForward, IconForwardToInbox, IconForward_10, IconForward_30, IconForward_5, IconFoundation, IconFreeBreakfast, IconFreeCancellation, IconFrontHand, IconFullscreen, IconFullscreenExit, IconFunctions, IconGMobiledata, IconGTranslate, IconGamepad, IconGames, IconGarage, IconGavel, IconGeneratingTokens, IconGesture, IconGetApp, IconGif, IconGite, IconGolfCourse, IconGppBad, IconGppGood, IconGppMaybe, IconGpsFixed, IconGpsNotFixed, IconGpsOff, IconGrade, IconGradient, IconGrading, IconGrain, IconGraphicEq, IconGrass, IconGridGoldenratio, IconGridOff, IconGridOn, IconGridView, IconGrid_3x3, IconGrid_4x4, IconGroup, IconGroupAdd, IconGroupOff, IconGroupWork, IconGroups, IconHMobiledata, IconHPlusMobiledata, IconHail, IconHandyman, IconHardware, IconHd, IconHdrAuto, IconHdrAutoSelect, IconHdrEnhancedSelect, IconHdrOff, IconHdrOffSelect, IconHdrOn, IconHdrOnSelect, IconHdrPlus, IconHdrStrong, IconHdrWeak, IconHeadphones, IconHeadphonesBattery, IconHeadset, IconHeadsetMic, IconHeadsetOff, IconHealing, IconHealthAndSafety, IconHearing, IconHearingDisabled, IconHeight, IconHelp, IconHelpCenter, IconHelpOutline, IconHevc, IconHideImage, IconHideSource, IconHighQuality, IconHighlight, IconHighlightAlt, IconHighlightOff, IconHiking, IconHistory, IconHistoryEdu, IconHistoryToggleOff, IconHolidayVillage, IconHome, IconHomeFilled, IconHomeMax, IconHomeMini, IconHomeRepairService, IconHomeWork, IconHorizontalDistribute, IconHorizontalRule, IconHorizontalSplit, IconHotTub, IconHotel, IconHotelClass, IconHourglassBottom, IconHourglassDisabled, IconHourglassEmpty, IconHourglassFull, IconHourglassTop, IconHouse, IconHouseSiding, IconHouseboat, IconHowToReg, IconHowToVote, IconHttp, IconHttps, IconHvac, IconIceSkating, IconIcecream, IconImage, IconImageAspectRatio, IconImageNotSupported, IconImageSearch, IconImagesearchRoller, IconImportContacts, IconImportExport, IconImportantDevices, IconInbox, IconIncompleteCircle, IconIndeterminateCheckBox, IconInfo, IconInfoOutline, IconInput, IconInsertChart, IconInsertChartOutlined, IconInsertComment, IconInsertDriveFile, IconInsertEmoticon, IconInsertInvitation, IconInsertLink, IconInsertPhoto, IconInsights, IconIntegrationInstructions, IconInventory, IconInventory_2, IconInvertColors, IconInvertColorsOff, IconIosShare, IconIron, IconIso, IconKayaking, IconKeyboard, IconKeyboardAlt, IconKeyboardArrowDown, IconKeyboardArrowLeft, IconKeyboardArrowRight, IconKeyboardArrowUp, IconKeyboardBackspace, IconKeyboardCapslock, IconKeyboardHide, IconKeyboardReturn, IconKeyboardTab, IconKeyboardVoice, IconKingBed, IconKitchen, IconKitesurfing, IconLabel, IconLabelImportant, IconLabelImportantOutline, IconLabelOff, IconLabelOutline, IconLandscape, IconLanguage, IconLaptop, IconLaptopChromebook, IconLaptopMac, IconLaptopWindows, IconLastPage, IconLaunch, IconLayers, IconLayersClear, IconLeaderboard, IconLeakAdd, IconLeakRemove, IconLegendToggle, IconLens, IconLensBlur, IconLibraryAdd, IconLibraryAddCheck, IconLibraryBooks, IconLibraryMusic, IconLight, IconLightMode, IconLightbulb, IconLightbulbOutline, IconLineStyle, IconLineWeight, IconLinearScale, IconLink, IconLinkOff, IconLinkedCamera, IconLiquor, IconList, IconListAlt, IconLiveHelp, IconLiveTv, IconLiving, IconLocalActivity, IconLocalAirport, IconLocalAtm, IconLocalBar, IconLocalCafe, IconLocalCarWash, IconLocalConvenienceStore, IconLocalDining, IconLocalDrink, IconLocalFireDepartment, IconLocalFlorist, IconLocalGasStation, IconLocalGroceryStore, IconLocalHospital, IconLocalHotel, IconLocalLaundryService, IconLocalLibrary, IconLocalMall, IconLocalMovies, IconLocalOffer, IconLocalParking, IconLocalPharmacy, IconLocalPhone, IconLocalPizza, IconLocalPlay, IconLocalPolice, IconLocalPostOffice, IconLocalPrintshop, IconLocalSee, IconLocalShipping, IconLocalTaxi, IconLocationCity, IconLocationDisabled, IconLocationOff, IconLocationOn, IconLocationPin, IconLocationSearching, IconLock, IconLockClock, IconLockOpen, IconLockOutline, IconLogin, IconLogout, IconLooks, IconLooksOne, IconLooksTwo, IconLooks_3, IconLooks_4, IconLooks_5, IconLooks_6, IconLoop, IconLoupe, IconLowPriority, IconLoyalty, IconLteMobiledata, IconLtePlusMobiledata, IconLuggage, IconLunchDining, IconMail, IconMailOutline, IconMale, IconManageAccounts, IconManageSearch, IconMap, IconMapsHomeWork, IconMapsUgc, IconMargin, IconMarkAsUnread, IconMarkChatRead, IconMarkChatUnread, IconMarkEmailRead, IconMarkEmailUnread, IconMarkunread, IconMarkunreadMailbox, IconMasks, IconMaximize, IconMediaBluetoothOff, IconMediaBluetoothOn, IconMediation, IconMedicalServices, IconMedication, IconMeetingRoom, IconMemory, IconMenu, IconMenuBook, IconMenuOpen, IconMergeType, IconMessage, IconMic, IconMicExternalOff, IconMicExternalOn, IconMicNone, IconMicOff, IconMicrowave, IconMilitaryTech, IconMinimize, IconMiscellaneousServices, IconMissedVideoCall, IconMms, IconMobileFriendly, IconMobileOff, IconMobileScreenShare, IconMobiledataOff, IconMode, IconModeComment, IconModeEdit, IconModeEditOutline, IconModeNight, IconModeStandby, IconModelTraining, IconMonetizationOn, IconMoney, IconMoneyOff, IconMoneyOffCsred, IconMonitor, IconMonitorWeight, IconMonochromePhotos, IconMood, IconMoodBad, IconMoped, IconMore, IconMoreHoriz, IconMoreTime, IconMoreVert, IconMotionPhotosAuto, IconMotionPhotosOff, IconMotionPhotosOn, IconMotionPhotosPause, IconMotionPhotosPaused, IconMouse, IconMoveToInbox, IconMovie, IconMovieCreation, IconMovieFilter, IconMoving, IconMp, IconMultilineChart, IconMultipleStop, IconMuseum, IconMusicNote, IconMusicOff, IconMusicVideo, IconMyLocation, IconNat, IconNature, IconNaturePeople, IconNavigateBefore, IconNavigateNext, IconNavigation, IconNearMe, IconNearMeDisabled, IconNearbyError, IconNearbyOff, IconNetworkCell, IconNetworkCheck, IconNetworkLocked, IconNetworkWifi, IconNewLabel, IconNewReleases, IconNextPlan, IconNextWeek, IconNfc, IconNightShelter, IconNightlife, IconNightlight, IconNightlightRound, IconNightsStay, IconNoAccounts, IconNoBackpack, IconNoCell, IconNoDrinks, IconNoEncryption, IconNoEncryptionGmailerrorred, IconNoFlash, IconNoFood, IconNoLuggage, IconNoMeals, IconNoMealsOuline, IconNoMeetingRoom, IconNoPhotography, IconNoSim, IconNoStroller, IconNoTransfer, IconNordicWalking, IconNorth, IconNorthEast, IconNorthWest, IconNotAccessible, IconNotInterested, IconNotListedLocation, IconNotStarted, IconNote, IconNoteAdd, IconNoteAlt, IconNotes, IconNotificationAdd, IconNotificationImportant, IconNotifications, IconNotificationsActive, IconNotificationsNone, IconNotificationsOff, IconNotificationsPaused, IconOfflineBolt, IconOfflinePin, IconOfflineShare, IconOndemandVideo, IconOnlinePrediction, IconOpacity, IconOpenInBrowser, IconOpenInFull, IconOpenInNew, IconOpenInNewOff, IconOpenWith, IconOtherHouses, IconOutbond, IconOutbound, IconOutbox, IconOutdoorGrill, IconOutgoingMail, IconOutlet, IconOutlinedFlag, IconPadding, IconPages, IconPageview, IconPaid, IconPalette, IconPanTool, IconPanorama, IconPanoramaFishEye, IconPanoramaHorizontal, IconPanoramaHorizontalSelect, IconPanoramaPhotosphere, IconPanoramaPhotosphereSelect, IconPanoramaVertical, IconPanoramaVerticalSelect, IconPanoramaWideAngle, IconPanoramaWideAngleSelect, IconParagliding, IconPark, IconPartyMode, IconPassword, IconPattern, IconPause, IconPauseCircle, IconPauseCircleFilled, IconPauseCircleOutline, IconPausePresentation, IconPayment, IconPayments, IconPedalBike, IconPending, IconPendingActions, IconPeople, IconPeopleAlt, IconPeopleOutline, IconPermCameraMic, IconPermContactCalendar, IconPermDataSetting, IconPermDeviceInformation, IconPermIdentity, IconPermMedia, IconPermPhoneMsg, IconPermScanWifi, IconPerson, IconPersonAdd, IconPersonAddAlt, IconPersonAddAlt_1, IconPersonAddDisabled, IconPersonOff, IconPersonOutline, IconPersonPin, IconPersonPinCircle, IconPersonRemove, IconPersonRemoveAlt_1, IconPersonSearch, IconPersonalInjury, IconPersonalVideo, IconPestControl, IconPestControlRodent, IconPets, IconPhone, IconPhoneAndroid, IconPhoneBluetoothSpeaker, IconPhoneCallback, IconPhoneDisabled, IconPhoneEnabled, IconPhoneForwarded, IconPhoneInTalk, IconPhoneIphone, IconPhoneLocked, IconPhoneMissed, IconPhonePaused, IconPhonelink, IconPhonelinkErase, IconPhonelinkLock, IconPhonelinkOff, IconPhonelinkRing, IconPhonelinkSetup, IconPhoto, IconPhotoAlbum, IconPhotoCamera, IconPhotoCameraBack, IconPhotoCameraFront, IconPhotoFilter, IconPhotoLibrary, IconPhotoSizeSelectActual, IconPhotoSizeSelectLarge, IconPhotoSizeSelectSmall, IconPiano, IconPianoOff, IconPictureAsPdf, IconPictureInPicture, IconPictureInPictureAlt, IconPieChart, IconPieChartOutline, IconPieChartOutlined, IconPin, IconPinDrop, IconPinEnd, IconPinInvoke, IconPivotTableChart, IconPlace, IconPlagiarism, IconPlayArrow, IconPlayCircle, IconPlayCircleFilled, IconPlayCircleOutline, IconPlayDisabled, IconPlayForWork, IconPlayLesson, IconPlaylistAdd, IconPlaylistAddCheck, IconPlaylistPlay, IconPlumbing, IconPlusOne, IconPodcasts, IconPointOfSale, IconPolicy, IconPoll, IconPolymer, IconPool, IconPortableWifiOff, IconPortrait, IconPostAdd, IconPower, IconPowerInput, IconPowerOff, IconPowerSettingsNew, IconPrecisionManufacturing, IconPregnantWoman, IconPresentToAll, IconPreview, IconPriceChange, IconPriceCheck, IconPrint, IconPrintDisabled, IconPriorityHigh, IconPrivacyTip, IconPrivateConnectivity, IconProductionQuantityLimits, IconProps, IconPsychology, IconPublic, IconPublicOff, IconPublish, IconPublishedWithChanges, IconPushPin, IconQrCode, IconQrCodeScanner, IconQrCode_2, IconQueryBuilder, IconQueryStats, IconQuestionAnswer, IconQueue, IconQueueMusic, IconQueuePlayNext, IconQuickreply, IconQuiz, IconRMobiledata, IconRadar, IconRadio, IconRadioButtonChecked, IconRadioButtonUnchecked, IconRailwayAlert, IconRamenDining, IconRateReview, IconRawOff, IconRawOn, IconReadMore, IconRealEstateAgent, IconReceipt, IconReceiptLong, IconRecentActors, IconRecommend, IconRecordVoiceOver, IconRecycling, IconRedeem, IconRedo, IconReduceCapacity, IconRefresh, IconRememberMe, IconRemove, IconRemoveCircle, IconRemoveCircleOutline, IconRemoveDone, IconRemoveFromQueue, IconRemoveModerator, IconRemoveRedEye, IconRemoveShoppingCart, IconReorder, IconRepeat, IconRepeatOn, IconRepeatOne, IconRepeatOneOn, IconReplay, IconReplayCircleFilled, IconReplay_10, IconReplay_30, IconReplay_5, IconReply, IconReplyAll, IconReport, IconReportGmailerrorred, IconReportOff, IconReportProblem, IconRequestPage, IconRequestQuote, IconResetTv, IconRestartAlt, IconRestaurant, IconRestaurantMenu, IconRestore, IconRestoreFromTrash, IconRestorePage, IconReviews, IconRiceBowl, IconRingVolume, IconRoofing, IconRoom, IconRoomPreferences, IconRoomService, IconRotateLeft, IconRotateRight, IconRotate_90DegreesCcw, IconRoundedCorner, IconRouter, IconRowing, IconRssFeed, IconRsvp, IconRtt, IconRule, IconRuleFolder, IconRunCircle, IconRunningWithErrors, IconRvHookup, IconSafetyDivider, IconSailing, IconSanitizer, IconSatellite, IconSave, IconSaveAlt, IconSavedSearch, IconSavings, IconScanner, IconScatterPlot, IconSchedule, IconScheduleSend, IconSchema, IconSchool, IconScience, IconScore, IconScreenLockLandscape, IconScreenLockPortrait, IconScreenLockRotation, IconScreenRotation, IconScreenSearchDesktop, IconScreenShare, IconScreenshot, IconSd, IconSdCard, IconSdCardAlert, IconSdStorage, IconSearch, IconSearchOff, IconSecurity, IconSecurityUpdate, IconSecurityUpdateGood, IconSecurityUpdateWarning, IconSegment, IconSelectAll, IconSelfImprovement, IconSell, IconSend, IconSendAndArchive, IconSendToMobile, IconSensorDoor, IconSensorWindow, IconSensors, IconSensorsOff, IconSentimentDissatisfied, IconSentimentNeutral, IconSentimentSatisfied, IconSentimentSatisfiedAlt, IconSentimentVeryDissatisfied, IconSentimentVerySatisfied, IconSetMeal, IconSettings, IconSettingsAccessibility, IconSettingsApplications, IconSettingsBackupRestore, IconSettingsBluetooth, IconSettingsBrightness, IconSettingsCell, IconSettingsEthernet, IconSettingsInputAntenna, IconSettingsInputComponent, IconSettingsInputComposite, IconSettingsInputHdmi, IconSettingsInputSvideo, IconSettingsOverscan, IconSettingsPhone, IconSettingsPower, IconSettingsRemote, IconSettingsSuggest, IconSettingsSystemDaydream, IconSettingsVoice, IconShare, IconShareLocation, IconShield, IconShop, IconShopTwo, IconShop_2, IconShoppingBag, IconShoppingBasket, IconShoppingCart, IconShortText, IconShortcut, IconShowChart, IconShower, IconShuffle, IconShuffleOn, IconShutterSpeed, IconSick, IconSignalCellularAlt, IconSignalCellularConnectedNoInternet_0Bar, IconSignalCellularConnectedNoInternet_4Bar, IconSignalCellularNoSim, IconSignalCellularNodata, IconSignalCellularNull, IconSignalCellularOff, IconSignalCellular_0Bar, IconSignalCellular_4Bar, IconSignalWifiBad, IconSignalWifiConnectedNoInternet_4, IconSignalWifiOff, IconSignalWifiStatusbarConnectedNoInternet_4, IconSignalWifiStatusbarNull, IconSignalWifiStatusbar_4Bar, IconSignalWifi_0Bar, IconSignalWifi_4Bar, IconSignalWifi_4BarLock, IconSimCard, IconSimCardAlert, IconSimCardDownload, IconSingleBed, IconSip, IconSize, IconSkateboarding, IconSkipNext, IconSkipPrevious, IconSledding, IconSlideshow, IconSlowMotionVideo, IconSmartButton, IconSmartDisplay, IconSmartScreen, IconSmartToy, IconSmartphone, IconSmokeFree, IconSmokingRooms, IconSms, IconSmsFailed, IconSnippetFolder, IconSnooze, IconSnowboarding, IconSnowmobile, IconSnowshoeing, IconSoap, IconSocialDistance, IconSort, IconSortByAlpha, IconSource, IconSouth, IconSouthEast, IconSouthWest, IconSpa, IconSpaceBar, IconSpaceDashboard, IconSpeaker, IconSpeakerGroup, IconSpeakerNotes, IconSpeakerNotesOff, IconSpeakerPhone, IconSpeed, IconSpellcheck, IconSplitscreen, IconSports, IconSportsBar, IconSportsBaseball, IconSportsBasketball, IconSportsCricket, IconSportsEsports, IconSportsFootball, IconSportsGolf, IconSportsHandball, IconSportsHockey, IconSportsKabaddi, IconSportsMma, IconSportsMotorsports, IconSportsRugby, IconSportsScore, IconSportsSoccer, IconSportsTennis, IconSportsVolleyball, IconSquareFoot, IconStackedBarChart, IconStackedLineChart, IconStairs, IconStar, IconStarBorder, IconStarBorderPurple500, IconStarHalf, IconStarOutline, IconStarPurple500, IconStarRate, IconStars, IconStayCurrentLandscape, IconStayCurrentPortrait, IconStayPrimaryLandscape, IconStayPrimaryPortrait, IconStickyNote_2, IconStop, IconStopCircle, IconStopScreenShare, IconStorage, IconStore, IconStoreMallDirectory, IconStorefront, IconStorm, IconStraighten, IconStream, IconStreetview, IconStrikethroughS, IconStroller, IconStyle, IconSubdirectoryArrowLeft, IconSubdirectoryArrowRight, IconSubject, IconSubscript, IconSubscriptions, IconSubtitles, IconSubtitlesOff, IconSubway, IconSummarize, IconSuperscript, IconSupervisedUserCircle, IconSupervisorAccount, IconSupport, IconSupportAgent, IconSurfing, IconSurroundSound, IconSwapCalls, IconSwapHoriz, IconSwapHorizontalCircle, IconSwapVert, IconSwapVerticalCircle, IconSwipe, IconSwitchAccount, IconSwitchCamera, IconSwitchLeft, IconSwitchRight, IconSwitchVideo, IconSync, IconSyncAlt, IconSyncDisabled, IconSyncProblem, IconSystemSecurityUpdate, IconSystemSecurityUpdateGood, IconSystemSecurityUpdateWarning, IconSystemUpdate, IconSystemUpdateAlt, IconTab, IconTabUnselected, IconTableChart, IconTableRows, IconTableView, IconTablet, IconTabletAndroid, IconTabletMac, IconTag, IconTagFaces, IconTakeoutDining, IconTapAndPlay, IconTapas, IconTask, IconTaskAlt, IconTaxiAlert, IconTerrain, IconTextFields, IconTextFormat, IconTextRotateUp, IconTextRotateVertical, IconTextRotationAngledown, IconTextRotationAngleup, IconTextRotationDown, IconTextRotationNone, IconTextSnippet, IconTextsms, IconTexture, IconTheaterComedy, IconTheaters, IconThermostat, IconThermostatAuto, IconThumbDown, IconThumbDownAlt, IconThumbDownOffAlt, IconThumbUp, IconThumbUpAlt, IconThumbUpOffAlt, IconThumbsUpDown, IconTimeToLeave, IconTimelapse, IconTimeline, IconTimer, IconTimerOff, IconTimer_10, IconTimer_10Select, IconTimer_3, IconTimer_3Select, IconTipsAndUpdates, IconTitle, IconToc, IconToday, IconToggleOff, IconToggleOn, IconToll, IconTonality, IconTopic, IconTouchApp, IconTour, IconToys, IconTrackChanges, IconTraffic, IconTrain, IconTram, IconTransferWithinAStation, IconTransform, IconTransgender, IconTransitEnterexit, IconTranslate, IconTravelExplore, IconTrendingDown, IconTrendingFlat, IconTrendingUp, IconTripOrigin, IconTry, IconTty, IconTune, IconTungsten, IconTurnedIn, IconTurnedInNot, IconTv, IconTvOff, IconTwoWheeler, IconUmbrella, IconUnarchive, IconUndo, IconUnfoldLess, IconUnfoldMore, IconUnpublished, IconUnsubscribe, IconUpcoming, IconUpdate, IconUpdateDisabled, IconUpgrade, IconUpload, IconUploadFile, IconUsb, IconUsbOff, IconVerified, IconVerifiedUser, IconVerticalAlignBottom, IconVerticalAlignCenter, IconVerticalAlignTop, IconVerticalDistribute, IconVerticalSplit, IconVibration, IconVideoCall, IconVideoCameraBack, IconVideoCameraFront, IconVideoLabel, IconVideoLibrary, IconVideoSettings, IconVideoStable, IconVideocam, IconVideocamOff, IconVideogameAsset, IconVideogameAssetOff, IconViewAgenda, IconViewArray, IconViewCarousel, IconViewColumn, IconViewComfy, IconViewCompact, IconViewDay, IconViewHeadline, IconViewInAr, IconViewList, IconViewModule, IconViewQuilt, IconViewSidebar, IconViewStream, IconViewWeek, IconVignette, IconVilla, IconVisibility, IconVisibilityOff, IconVoiceChat, IconVoiceOverOff, IconVoicemail, IconVolumeDown, IconVolumeDownAlt, IconVolumeMute, IconVolumeOff, IconVolumeUp, IconVolunteerActivism, IconVpnKey, IconVpnLock, IconVrpano, IconWallpaper, IconWarning, IconWarningAmber, IconWash, IconWatch, IconWatchLater, IconWater, IconWaterDamage, IconWaterDrop, IconWaterfallChart, IconWaves, IconWavingHand, IconWbAuto, IconWbCloudy, IconWbIncandescent, IconWbIridescent, IconWbShade, IconWbSunny, IconWbTwighlight, IconWbTwilight, IconWc, IconWeb, IconWebAsset, IconWebAssetOff, IconWebStories, IconWeekend, IconWest, IconWhatshot, IconWheelchairPickup, IconWhereToVote, IconWidgets, IconWifi, IconWifiCalling, IconWifiCalling_3, IconWifiLock, IconWifiOff, IconWifiProtectedSetup, IconWifiTethering, IconWifiTetheringErrorRounded, IconWifiTetheringOff, IconWindow, IconWineBar, IconWork, IconWorkOff, IconWorkOutline, IconWorkspaces, IconWorkspacesFilled, IconWorkspacesOutline, IconWrapText, IconWrongLocation, IconWysiwyg, IconYard, IconYoutubeSearchedFor, IconZoomIn, IconZoomOut, IconZoomOutMap, Image, ImageOptions, ImageProps, ImageStyleProps, Input, InputMode, InputProps, Label, LabelProps, Link, LinkOptions, LinkProps, ListCollectionProps, Main, Pagination, PaginationCallbackType, PaginationItemProps, PaginationItemType, PaginationProps, PasswordField, PasswordFieldProps, PasswordFieldType, PhoneNumberFieldProps, Placeholder, PlaceholderProps, PlaceholderSize, Radio, RadioGroupField, RadioGroupFieldProps, RadioProps, Rating, RatingOptions, RatingProps, RatingSize, ResponsiveObject, ResponsiveStyle, SearchField, SearchFieldButtonProps, SearchFieldProps, SelectField, SelectFieldProps, SharedText, ShowPasswordButtonProps, Sizes, Spacer, SwitchField, SwitchFieldProps, TabItem, TabItemProps, Tabs, TabsGrow, TabsProps, Text, TextField, TextFieldProps, TextFieldType, TextProps, TextVariation, Theme, Tokens, UsePaginationProps, UsePaginationResult, View, ViewAsHTMLElementTypes, ViewBox, ViewProps, VisuallyHidden, Wrapper, index$1 as components, defaultCSSVariables, extendTheming, findChildOverrides, getOverrideProps, labelPositions, index as primitives, useAmplify, useAuthenticator, usePagination, useSearchField, useTheming, withAuthenticator };
|