react-magma-dom 3.2.1 → 3.5.0
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/dist/components/Alert/index.d.ts +4 -0
- package/dist/components/AlertBase/index.d.ts +2 -0
- package/dist/components/Banner/index.d.ts +4 -0
- package/dist/components/CharacterCounter/CharacterCounter.d.ts +12 -0
- package/dist/components/CharacterCounter/CharacterCounter.stories.d.ts +16 -0
- package/dist/components/FormFieldContainer/FormFieldContainer.d.ts +12 -0
- package/dist/components/Grid/Grid.d.ts +12 -0
- package/dist/components/Heading/index.d.ts +5 -1
- package/dist/components/Input/Input.stories.d.ts +322 -1
- package/dist/components/Input/InputMessage.d.ts +1 -1
- package/dist/components/InputBase/index.d.ts +18 -0
- package/dist/components/Pagination/Pagination.d.ts +17 -1
- package/dist/components/Pagination/Pagination.stories.d.ts +3 -1
- package/dist/components/Pagination/SimplePagination.d.ts +2 -0
- package/dist/components/PasswordInput/index.d.ts +5 -0
- package/dist/components/Select/shared.d.ts +1 -0
- package/dist/components/Table/Table.stories.d.ts +9 -0
- package/dist/components/Table/TablePagination.d.ts +6 -0
- package/dist/components/Textarea/Textarea.stories.d.ts +3 -1
- package/dist/components/Textarea/index.d.ts +1 -1
- package/dist/components/Toast/Toast.stories.d.ts +0 -9
- package/dist/components/ToggleButton/ToggleButton.d.ts +66 -0
- package/dist/components/ToggleButton/ToggleButton.stories.d.ts +1135 -0
- package/dist/components/ToggleButton/index.d.ts +1 -0
- package/dist/components/ToggleButtonGroup/ToggleButtonGroup.d.ts +53 -0
- package/dist/components/ToggleButtonGroup/ToggleButtonGroup.stories.d.ts +556 -0
- package/dist/components/ToggleButtonGroup/index.d.ts +1 -0
- package/dist/esm/index.js +1700 -1241
- package/dist/esm/index.js.map +1 -1
- package/dist/i18n/interface.d.ts +7 -0
- package/dist/index.d.ts +3 -1
- package/dist/properties.json +949 -91
- package/dist/react-magma-dom.cjs.development.js +1706 -1061
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/package.json +1 -1
package/dist/properties.json
CHANGED
|
@@ -897,6 +897,15 @@
|
|
|
897
897
|
"children": "required"
|
|
898
898
|
},
|
|
899
899
|
"properties": {
|
|
900
|
+
"additionalContent": {
|
|
901
|
+
"name": "additionalContent",
|
|
902
|
+
"required": false,
|
|
903
|
+
"type": {
|
|
904
|
+
"name": "React.ReactNode"
|
|
905
|
+
},
|
|
906
|
+
"description": "Enables additional right aligned children within the Alert.",
|
|
907
|
+
"deprecated": false
|
|
908
|
+
},
|
|
900
909
|
"children": {
|
|
901
910
|
"name": "children",
|
|
902
911
|
"required": true,
|
|
@@ -973,6 +982,14 @@
|
|
|
973
982
|
"id": "AlertBaseProps",
|
|
974
983
|
"tags": {},
|
|
975
984
|
"properties": {
|
|
985
|
+
"additionalContent": {
|
|
986
|
+
"name": "additionalContent",
|
|
987
|
+
"required": false,
|
|
988
|
+
"type": {
|
|
989
|
+
"name": "React.ReactNode"
|
|
990
|
+
},
|
|
991
|
+
"deprecated": false
|
|
992
|
+
},
|
|
976
993
|
"closeAriaLabel": {
|
|
977
994
|
"name": "closeAriaLabel",
|
|
978
995
|
"required": false,
|
|
@@ -1320,6 +1337,15 @@
|
|
|
1320
1337
|
"description": "The text displayed inside of the action button",
|
|
1321
1338
|
"deprecated": false
|
|
1322
1339
|
},
|
|
1340
|
+
"additionalContent": {
|
|
1341
|
+
"name": "additionalContent",
|
|
1342
|
+
"required": false,
|
|
1343
|
+
"type": {
|
|
1344
|
+
"name": "React.ReactNode"
|
|
1345
|
+
},
|
|
1346
|
+
"description": "Enables additional right aligned children within the Banner.",
|
|
1347
|
+
"deprecated": false
|
|
1348
|
+
},
|
|
1323
1349
|
"children": {
|
|
1324
1350
|
"name": "children",
|
|
1325
1351
|
"required": true,
|
|
@@ -2462,6 +2488,16 @@
|
|
|
2462
2488
|
"id": "CharacterCounterProps",
|
|
2463
2489
|
"tags": {},
|
|
2464
2490
|
"properties": {
|
|
2491
|
+
"hasCharacterCounter": {
|
|
2492
|
+
"name": "hasCharacterCounter",
|
|
2493
|
+
"required": false,
|
|
2494
|
+
"type": {
|
|
2495
|
+
"name": "boolean"
|
|
2496
|
+
},
|
|
2497
|
+
"description": "Enables Character Counter by default.\nWhen set to false, the default HTML attribute of 'maxlength' will work.\nNote: This is a temporary prop and will be removed in future releases.",
|
|
2498
|
+
"defaultValue": "true",
|
|
2499
|
+
"deprecated": false
|
|
2500
|
+
},
|
|
2465
2501
|
"id": {
|
|
2466
2502
|
"name": "id",
|
|
2467
2503
|
"required": true,
|
|
@@ -2490,6 +2526,15 @@
|
|
|
2490
2526
|
"defaultValue": "false",
|
|
2491
2527
|
"deprecated": false
|
|
2492
2528
|
},
|
|
2529
|
+
"maxCount": {
|
|
2530
|
+
"name": "maxCount",
|
|
2531
|
+
"required": true,
|
|
2532
|
+
"type": {
|
|
2533
|
+
"name": "number"
|
|
2534
|
+
},
|
|
2535
|
+
"description": "Sets the maximum amount of characters allowed.",
|
|
2536
|
+
"deprecated": false
|
|
2537
|
+
},
|
|
2493
2538
|
"maxLength": {
|
|
2494
2539
|
"name": "maxLength",
|
|
2495
2540
|
"required": true,
|
|
@@ -2497,7 +2542,7 @@
|
|
|
2497
2542
|
"name": "number"
|
|
2498
2543
|
},
|
|
2499
2544
|
"description": "Sets the maximum amount of characters allowed.",
|
|
2500
|
-
"deprecated":
|
|
2545
|
+
"deprecated": true
|
|
2501
2546
|
}
|
|
2502
2547
|
}
|
|
2503
2548
|
},
|
|
@@ -2655,7 +2700,7 @@
|
|
|
2655
2700
|
"flags": {},
|
|
2656
2701
|
"typeParameter": [
|
|
2657
2702
|
{
|
|
2658
|
-
"id":
|
|
2703
|
+
"id": 10857,
|
|
2659
2704
|
"name": "T",
|
|
2660
2705
|
"kind": 131072,
|
|
2661
2706
|
"kindString": "Type parameter",
|
|
@@ -2847,7 +2892,7 @@
|
|
|
2847
2892
|
},
|
|
2848
2893
|
"typeParameter": [
|
|
2849
2894
|
{
|
|
2850
|
-
"id":
|
|
2895
|
+
"id": 10952,
|
|
2851
2896
|
"name": "T",
|
|
2852
2897
|
"kind": 131072,
|
|
2853
2898
|
"kindString": "Type parameter",
|
|
@@ -2856,7 +2901,7 @@
|
|
|
2856
2901
|
},
|
|
2857
2902
|
"type": {
|
|
2858
2903
|
"type": "reference",
|
|
2859
|
-
"id":
|
|
2904
|
+
"id": 10784,
|
|
2860
2905
|
"name": "SelectOptions"
|
|
2861
2906
|
}
|
|
2862
2907
|
}
|
|
@@ -3193,7 +3238,7 @@
|
|
|
3193
3238
|
},
|
|
3194
3239
|
"typeParameter": [
|
|
3195
3240
|
{
|
|
3196
|
-
"id":
|
|
3241
|
+
"id": 11023,
|
|
3197
3242
|
"name": "T",
|
|
3198
3243
|
"kind": 131072,
|
|
3199
3244
|
"kindString": "Type parameter",
|
|
@@ -3202,7 +3247,7 @@
|
|
|
3202
3247
|
},
|
|
3203
3248
|
"type": {
|
|
3204
3249
|
"type": "reference",
|
|
3205
|
-
"id":
|
|
3250
|
+
"id": 10784,
|
|
3206
3251
|
"name": "SelectOptions"
|
|
3207
3252
|
}
|
|
3208
3253
|
}
|
|
@@ -3360,7 +3405,7 @@
|
|
|
3360
3405
|
},
|
|
3361
3406
|
"typeParameter": [
|
|
3362
3407
|
{
|
|
3363
|
-
"id":
|
|
3408
|
+
"id": 11070,
|
|
3364
3409
|
"name": "T",
|
|
3365
3410
|
"kind": 131072,
|
|
3366
3411
|
"kindString": "Type parameter",
|
|
@@ -3374,7 +3419,7 @@
|
|
|
3374
3419
|
"typeArguments": [
|
|
3375
3420
|
{
|
|
3376
3421
|
"type": "reference",
|
|
3377
|
-
"id":
|
|
3422
|
+
"id": 10951,
|
|
3378
3423
|
"typeArguments": [
|
|
3379
3424
|
{
|
|
3380
3425
|
"type": "typeParameter",
|
|
@@ -3385,7 +3430,7 @@
|
|
|
3385
3430
|
},
|
|
3386
3431
|
{
|
|
3387
3432
|
"type": "reference",
|
|
3388
|
-
"id":
|
|
3433
|
+
"id": 11022,
|
|
3389
3434
|
"typeArguments": [
|
|
3390
3435
|
{
|
|
3391
3436
|
"type": "typeParameter",
|
|
@@ -3877,7 +3922,7 @@
|
|
|
3877
3922
|
},
|
|
3878
3923
|
"indexSignature": [
|
|
3879
3924
|
{
|
|
3880
|
-
"id":
|
|
3925
|
+
"id": 23154,
|
|
3881
3926
|
"name": "__index",
|
|
3882
3927
|
"kind": 8192,
|
|
3883
3928
|
"kindString": "Index signature",
|
|
@@ -3889,7 +3934,7 @@
|
|
|
3889
3934
|
},
|
|
3890
3935
|
"parameters": [
|
|
3891
3936
|
{
|
|
3892
|
-
"id":
|
|
3937
|
+
"id": 23155,
|
|
3893
3938
|
"name": "key",
|
|
3894
3939
|
"kind": 32768,
|
|
3895
3940
|
"kindString": "Parameter",
|
|
@@ -3979,12 +4024,12 @@
|
|
|
3979
4024
|
"types": [
|
|
3980
4025
|
{
|
|
3981
4026
|
"type": "reference",
|
|
3982
|
-
"id":
|
|
4027
|
+
"id": 23160,
|
|
3983
4028
|
"name": "BaseDatagridProps"
|
|
3984
4029
|
},
|
|
3985
4030
|
{
|
|
3986
4031
|
"type": "reference",
|
|
3987
|
-
"id":
|
|
4032
|
+
"id": 23457,
|
|
3988
4033
|
"name": "DatagridSelectedRowsProps"
|
|
3989
4034
|
}
|
|
3990
4035
|
]
|
|
@@ -4203,12 +4248,12 @@
|
|
|
4203
4248
|
"typeArguments": [
|
|
4204
4249
|
{
|
|
4205
4250
|
"type": "reference",
|
|
4206
|
-
"id":
|
|
4251
|
+
"id": 23453,
|
|
4207
4252
|
"name": "ControlledSelectedRowsProps"
|
|
4208
4253
|
},
|
|
4209
4254
|
{
|
|
4210
4255
|
"type": "reference",
|
|
4211
|
-
"id":
|
|
4256
|
+
"id": 23455,
|
|
4212
4257
|
"name": "UncontrolledSelectedRowsProps"
|
|
4213
4258
|
}
|
|
4214
4259
|
],
|
|
@@ -5978,6 +6023,16 @@
|
|
|
5978
6023
|
"description": "ID of the form field. Also used in the descrption ID.",
|
|
5979
6024
|
"deprecated": false
|
|
5980
6025
|
},
|
|
6026
|
+
"hasCharacterCounter": {
|
|
6027
|
+
"name": "hasCharacterCounter",
|
|
6028
|
+
"required": false,
|
|
6029
|
+
"type": {
|
|
6030
|
+
"name": "boolean"
|
|
6031
|
+
},
|
|
6032
|
+
"description": "Enables Character Counter by default.\nWhen set to false, the default HTML attribute of 'maxlength' will work.\nNote: This is a temporary prop and will be removed in future releases.",
|
|
6033
|
+
"defaultValue": "true",
|
|
6034
|
+
"deprecated": false
|
|
6035
|
+
},
|
|
5981
6036
|
"helperMessage": {
|
|
5982
6037
|
"name": "helperMessage",
|
|
5983
6038
|
"required": false,
|
|
@@ -6086,6 +6141,15 @@
|
|
|
6086
6141
|
"description": "If the labelPosition value is 'left' then Input labels have a specified width in percentage, otherwise no width is set.",
|
|
6087
6142
|
"deprecated": false
|
|
6088
6143
|
},
|
|
6144
|
+
"maxCount": {
|
|
6145
|
+
"name": "maxCount",
|
|
6146
|
+
"required": false,
|
|
6147
|
+
"type": {
|
|
6148
|
+
"name": "number"
|
|
6149
|
+
},
|
|
6150
|
+
"description": "Enables the Character Counter and sets the maximum amount of characters allowed within the Input.",
|
|
6151
|
+
"deprecated": false
|
|
6152
|
+
},
|
|
6089
6153
|
"maxLength": {
|
|
6090
6154
|
"name": "maxLength",
|
|
6091
6155
|
"required": false,
|
|
@@ -6093,7 +6157,7 @@
|
|
|
6093
6157
|
"name": "number"
|
|
6094
6158
|
},
|
|
6095
6159
|
"description": "Enables the Character Counter and sets the maximum amount of characters allowed within the Input.",
|
|
6096
|
-
"deprecated":
|
|
6160
|
+
"deprecated": true
|
|
6097
6161
|
},
|
|
6098
6162
|
"messageStyle": {
|
|
6099
6163
|
"name": "messageStyle",
|
|
@@ -6172,6 +6236,16 @@
|
|
|
6172
6236
|
"description": "ID of the form field. Also used in the descrption ID.",
|
|
6173
6237
|
"deprecated": false
|
|
6174
6238
|
},
|
|
6239
|
+
"hasCharacterCounter": {
|
|
6240
|
+
"name": "hasCharacterCounter",
|
|
6241
|
+
"required": false,
|
|
6242
|
+
"type": {
|
|
6243
|
+
"name": "boolean"
|
|
6244
|
+
},
|
|
6245
|
+
"description": "Enables Character Counter by default.\nWhen set to false, the default HTML attribute of 'maxlength' will work.\nNote: This is a temporary prop and will be removed in future releases.",
|
|
6246
|
+
"defaultValue": "true",
|
|
6247
|
+
"deprecated": false
|
|
6248
|
+
},
|
|
6175
6249
|
"helperMessage": {
|
|
6176
6250
|
"name": "helperMessage",
|
|
6177
6251
|
"required": false,
|
|
@@ -6280,6 +6354,15 @@
|
|
|
6280
6354
|
"description": "If the labelPosition value is 'left' then Input labels have a specified width in percentage, otherwise no width is set.",
|
|
6281
6355
|
"deprecated": false
|
|
6282
6356
|
},
|
|
6357
|
+
"maxCount": {
|
|
6358
|
+
"name": "maxCount",
|
|
6359
|
+
"required": false,
|
|
6360
|
+
"type": {
|
|
6361
|
+
"name": "number"
|
|
6362
|
+
},
|
|
6363
|
+
"description": "Enables the Character Counter and sets the maximum amount of characters allowed within the Input.",
|
|
6364
|
+
"deprecated": false
|
|
6365
|
+
},
|
|
6283
6366
|
"maxLength": {
|
|
6284
6367
|
"name": "maxLength",
|
|
6285
6368
|
"required": false,
|
|
@@ -6287,7 +6370,7 @@
|
|
|
6287
6370
|
"name": "number"
|
|
6288
6371
|
},
|
|
6289
6372
|
"description": "Enables the Character Counter and sets the maximum amount of characters allowed within the Input.",
|
|
6290
|
-
"deprecated":
|
|
6373
|
+
"deprecated": true
|
|
6291
6374
|
},
|
|
6292
6375
|
"messageStyle": {
|
|
6293
6376
|
"name": "messageStyle",
|
|
@@ -6453,6 +6536,16 @@
|
|
|
6453
6536
|
"children": "required"
|
|
6454
6537
|
},
|
|
6455
6538
|
"properties": {
|
|
6539
|
+
"as": {
|
|
6540
|
+
"name": "as",
|
|
6541
|
+
"required": false,
|
|
6542
|
+
"type": {
|
|
6543
|
+
"name": "string"
|
|
6544
|
+
},
|
|
6545
|
+
"description": "Semantic HTML tag to be used for the GridItem\nExamples: `nav`, `footer`, `main`, `figure`, `aside`, etc.",
|
|
6546
|
+
"defaultValue": "`div`",
|
|
6547
|
+
"deprecated": false
|
|
6548
|
+
},
|
|
6456
6549
|
"children": {
|
|
6457
6550
|
"name": "children",
|
|
6458
6551
|
"required": true,
|
|
@@ -6541,6 +6634,16 @@
|
|
|
6541
6634
|
"children": "required"
|
|
6542
6635
|
},
|
|
6543
6636
|
"properties": {
|
|
6637
|
+
"as": {
|
|
6638
|
+
"name": "as",
|
|
6639
|
+
"required": false,
|
|
6640
|
+
"type": {
|
|
6641
|
+
"name": "string"
|
|
6642
|
+
},
|
|
6643
|
+
"description": "Semantic HTML tag to be used for the Grid\nExamples: `nav`, `footer`, `main`, `figure`, `aside`, etc.",
|
|
6644
|
+
"defaultValue": "`div`",
|
|
6645
|
+
"deprecated": false
|
|
6646
|
+
},
|
|
6544
6647
|
"children": {
|
|
6545
6648
|
"name": "children",
|
|
6546
6649
|
"required": true,
|
|
@@ -7350,8 +7453,8 @@
|
|
|
7350
7453
|
"defaultValue": "false",
|
|
7351
7454
|
"deprecated": false
|
|
7352
7455
|
},
|
|
7353
|
-
"
|
|
7354
|
-
"name": "
|
|
7456
|
+
"maxCount": {
|
|
7457
|
+
"name": "maxCount",
|
|
7355
7458
|
"required": false,
|
|
7356
7459
|
"type": {
|
|
7357
7460
|
"name": "number"
|
|
@@ -7379,6 +7482,16 @@
|
|
|
7379
7482
|
"description": "Style properties for the component container element",
|
|
7380
7483
|
"deprecated": false
|
|
7381
7484
|
},
|
|
7485
|
+
"hasCharacterCounter": {
|
|
7486
|
+
"name": "hasCharacterCounter",
|
|
7487
|
+
"required": false,
|
|
7488
|
+
"type": {
|
|
7489
|
+
"name": "boolean"
|
|
7490
|
+
},
|
|
7491
|
+
"description": "Enables Character Counter by default.\nWhen set to false, the default HTML attribute of 'maxlength' will work.\nNote: This is a temporary prop and will be removed in future releases.",
|
|
7492
|
+
"defaultValue": "true",
|
|
7493
|
+
"deprecated": false
|
|
7494
|
+
},
|
|
7382
7495
|
"icon": {
|
|
7383
7496
|
"name": "icon",
|
|
7384
7497
|
"required": false,
|
|
@@ -7491,6 +7604,15 @@
|
|
|
7491
7604
|
"description": "For use in predictive search which moves the icon to the left",
|
|
7492
7605
|
"deprecated": false
|
|
7493
7606
|
},
|
|
7607
|
+
"maxCount": {
|
|
7608
|
+
"name": "maxCount",
|
|
7609
|
+
"required": false,
|
|
7610
|
+
"type": {
|
|
7611
|
+
"name": "number"
|
|
7612
|
+
},
|
|
7613
|
+
"description": "A number value which gives Character Counter the maximum length of allowable characters in an Input.",
|
|
7614
|
+
"deprecated": false
|
|
7615
|
+
},
|
|
7494
7616
|
"maxLength": {
|
|
7495
7617
|
"name": "maxLength",
|
|
7496
7618
|
"required": false,
|
|
@@ -7498,7 +7620,7 @@
|
|
|
7498
7620
|
"name": "number"
|
|
7499
7621
|
},
|
|
7500
7622
|
"description": "A number value which gives Character Counter the maximum length of allowable characters in an Input.",
|
|
7501
|
-
"deprecated":
|
|
7623
|
+
"deprecated": true
|
|
7502
7624
|
},
|
|
7503
7625
|
"onClear": {
|
|
7504
7626
|
"name": "onClear",
|
|
@@ -7544,6 +7666,16 @@
|
|
|
7544
7666
|
"description": "The type attribute of the form field",
|
|
7545
7667
|
"defaultValue": "InputType.text",
|
|
7546
7668
|
"deprecated": false
|
|
7669
|
+
},
|
|
7670
|
+
"width": {
|
|
7671
|
+
"name": "width",
|
|
7672
|
+
"required": false,
|
|
7673
|
+
"type": {
|
|
7674
|
+
"name": "string"
|
|
7675
|
+
},
|
|
7676
|
+
"description": "String to determine width of input, must be suffixed with \"px\", \"rem\", or \"%\"\"",
|
|
7677
|
+
"defaultValue": "\"auto\"",
|
|
7678
|
+
"deprecated": false
|
|
7547
7679
|
}
|
|
7548
7680
|
}
|
|
7549
7681
|
},
|
|
@@ -7566,6 +7698,16 @@
|
|
|
7566
7698
|
"description": "Style properties for the component container element",
|
|
7567
7699
|
"deprecated": false
|
|
7568
7700
|
},
|
|
7701
|
+
"hasCharacterCounter": {
|
|
7702
|
+
"name": "hasCharacterCounter",
|
|
7703
|
+
"required": false,
|
|
7704
|
+
"type": {
|
|
7705
|
+
"name": "boolean"
|
|
7706
|
+
},
|
|
7707
|
+
"description": "Enables Character Counter by default.\nWhen set to false, the default HTML attribute of 'maxlength' will work.\nNote: This is a temporary prop and will be removed in future releases.",
|
|
7708
|
+
"defaultValue": "true",
|
|
7709
|
+
"deprecated": false
|
|
7710
|
+
},
|
|
7569
7711
|
"icon": {
|
|
7570
7712
|
"name": "icon",
|
|
7571
7713
|
"required": false,
|
|
@@ -7678,6 +7820,15 @@
|
|
|
7678
7820
|
"description": "For use in predictive search which moves the icon to the left",
|
|
7679
7821
|
"deprecated": false
|
|
7680
7822
|
},
|
|
7823
|
+
"maxCount": {
|
|
7824
|
+
"name": "maxCount",
|
|
7825
|
+
"required": false,
|
|
7826
|
+
"type": {
|
|
7827
|
+
"name": "number"
|
|
7828
|
+
},
|
|
7829
|
+
"description": "A number value which gives Character Counter the maximum length of allowable characters in an Input.",
|
|
7830
|
+
"deprecated": false
|
|
7831
|
+
},
|
|
7681
7832
|
"maxLength": {
|
|
7682
7833
|
"name": "maxLength",
|
|
7683
7834
|
"required": false,
|
|
@@ -7685,7 +7836,7 @@
|
|
|
7685
7836
|
"name": "number"
|
|
7686
7837
|
},
|
|
7687
7838
|
"description": "A number value which gives Character Counter the maximum length of allowable characters in an Input.",
|
|
7688
|
-
"deprecated":
|
|
7839
|
+
"deprecated": true
|
|
7689
7840
|
},
|
|
7690
7841
|
"onClear": {
|
|
7691
7842
|
"name": "onClear",
|
|
@@ -7731,6 +7882,16 @@
|
|
|
7731
7882
|
"description": "The type attribute of the form field",
|
|
7732
7883
|
"defaultValue": "InputType.text",
|
|
7733
7884
|
"deprecated": false
|
|
7885
|
+
},
|
|
7886
|
+
"width": {
|
|
7887
|
+
"name": "width",
|
|
7888
|
+
"required": false,
|
|
7889
|
+
"type": {
|
|
7890
|
+
"name": "string"
|
|
7891
|
+
},
|
|
7892
|
+
"description": "String to determine width of input, must be suffixed with \"px\", \"rem\", or \"%\"\"",
|
|
7893
|
+
"defaultValue": "\"auto\"",
|
|
7894
|
+
"deprecated": false
|
|
7734
7895
|
}
|
|
7735
7896
|
}
|
|
7736
7897
|
},
|
|
@@ -7752,6 +7913,14 @@
|
|
|
7752
7913
|
},
|
|
7753
7914
|
"deprecated": false
|
|
7754
7915
|
},
|
|
7916
|
+
"hasCharacterCounter": {
|
|
7917
|
+
"name": "hasCharacterCounter",
|
|
7918
|
+
"required": false,
|
|
7919
|
+
"type": {
|
|
7920
|
+
"name": "boolean"
|
|
7921
|
+
},
|
|
7922
|
+
"deprecated": false
|
|
7923
|
+
},
|
|
7755
7924
|
"hasError": {
|
|
7756
7925
|
"name": "hasError",
|
|
7757
7926
|
"required": false,
|
|
@@ -8894,12 +9063,12 @@
|
|
|
8894
9063
|
"typeArguments": [
|
|
8895
9064
|
{
|
|
8896
9065
|
"type": "reference",
|
|
8897
|
-
"id":
|
|
9066
|
+
"id": 15514,
|
|
8898
9067
|
"name": "NavTabChildrenProps"
|
|
8899
9068
|
},
|
|
8900
9069
|
{
|
|
8901
9070
|
"type": "reference",
|
|
8902
|
-
"id":
|
|
9071
|
+
"id": 15780,
|
|
8903
9072
|
"name": "NavTabComponentProps"
|
|
8904
9073
|
}
|
|
8905
9074
|
],
|
|
@@ -9241,6 +9410,20 @@
|
|
|
9241
9410
|
"description": "Size toggles between default and large variant buttons.",
|
|
9242
9411
|
"defaultValue": "PageButtonSize.medium",
|
|
9243
9412
|
"deprecated": false
|
|
9413
|
+
},
|
|
9414
|
+
"type": {
|
|
9415
|
+
"name": "type",
|
|
9416
|
+
"required": false,
|
|
9417
|
+
"type": {
|
|
9418
|
+
"name": "enum",
|
|
9419
|
+
"options": [
|
|
9420
|
+
"PaginationType.classic",
|
|
9421
|
+
"PaginationType.simple"
|
|
9422
|
+
]
|
|
9423
|
+
},
|
|
9424
|
+
"description": "Enum which changes Pagination into a dropdown when using 'simple'.",
|
|
9425
|
+
"defaultValue": "PaginationType.classic",
|
|
9426
|
+
"deprecated": false
|
|
9244
9427
|
}
|
|
9245
9428
|
}
|
|
9246
9429
|
},
|
|
@@ -9268,7 +9451,7 @@
|
|
|
9268
9451
|
"type": {
|
|
9269
9452
|
"name": "number"
|
|
9270
9453
|
},
|
|
9271
|
-
"description": "Current page number",
|
|
9454
|
+
"description": "Current page number when used with onPageChange.",
|
|
9272
9455
|
"deprecated": false
|
|
9273
9456
|
}
|
|
9274
9457
|
}
|
|
@@ -9298,6 +9481,7 @@
|
|
|
9298
9481
|
"type": {
|
|
9299
9482
|
"name": "number"
|
|
9300
9483
|
},
|
|
9484
|
+
"description": "Current page number when used with onPageChange.",
|
|
9301
9485
|
"deprecated": false
|
|
9302
9486
|
}
|
|
9303
9487
|
}
|
|
@@ -9314,12 +9498,12 @@
|
|
|
9314
9498
|
"types": [
|
|
9315
9499
|
{
|
|
9316
9500
|
"type": "reference",
|
|
9317
|
-
"id":
|
|
9501
|
+
"id": 27917,
|
|
9318
9502
|
"name": "ControlledPaginationProps"
|
|
9319
9503
|
},
|
|
9320
9504
|
{
|
|
9321
9505
|
"type": "reference",
|
|
9322
|
-
"id":
|
|
9506
|
+
"id": 28194,
|
|
9323
9507
|
"name": "UncontrolledPaginationProps"
|
|
9324
9508
|
}
|
|
9325
9509
|
]
|
|
@@ -9638,6 +9822,16 @@
|
|
|
9638
9822
|
"name": "string"
|
|
9639
9823
|
},
|
|
9640
9824
|
"deprecated": false
|
|
9825
|
+
},
|
|
9826
|
+
"width": {
|
|
9827
|
+
"name": "width",
|
|
9828
|
+
"required": false,
|
|
9829
|
+
"type": {
|
|
9830
|
+
"name": "string"
|
|
9831
|
+
},
|
|
9832
|
+
"description": "String to determine width of input, must be suffixed with \"px\", \"rem\", or \"%\"\"",
|
|
9833
|
+
"defaultValue": "\"auto\"",
|
|
9834
|
+
"deprecated": false
|
|
9641
9835
|
}
|
|
9642
9836
|
}
|
|
9643
9837
|
},
|
|
@@ -10135,6 +10329,16 @@
|
|
|
10135
10329
|
"description": "Style properties for the component container element",
|
|
10136
10330
|
"deprecated": false
|
|
10137
10331
|
},
|
|
10332
|
+
"hasCharacterCounter": {
|
|
10333
|
+
"name": "hasCharacterCounter",
|
|
10334
|
+
"required": false,
|
|
10335
|
+
"type": {
|
|
10336
|
+
"name": "boolean"
|
|
10337
|
+
},
|
|
10338
|
+
"description": "Enables Character Counter by default.\nWhen set to false, the default HTML attribute of 'maxlength' will work.\nNote: This is a temporary prop and will be removed in future releases.",
|
|
10339
|
+
"defaultValue": "true",
|
|
10340
|
+
"deprecated": false
|
|
10341
|
+
},
|
|
10138
10342
|
"icon": {
|
|
10139
10343
|
"name": "icon",
|
|
10140
10344
|
"required": false,
|
|
@@ -10267,6 +10471,15 @@
|
|
|
10267
10471
|
"defaultValue": "\"Search\"",
|
|
10268
10472
|
"deprecated": false
|
|
10269
10473
|
},
|
|
10474
|
+
"maxCount": {
|
|
10475
|
+
"name": "maxCount",
|
|
10476
|
+
"required": false,
|
|
10477
|
+
"type": {
|
|
10478
|
+
"name": "number"
|
|
10479
|
+
},
|
|
10480
|
+
"description": "A number value which gives Character Counter the maximum length of allowable characters in an Input.",
|
|
10481
|
+
"deprecated": false
|
|
10482
|
+
},
|
|
10270
10483
|
"maxLength": {
|
|
10271
10484
|
"name": "maxLength",
|
|
10272
10485
|
"required": false,
|
|
@@ -10274,7 +10487,7 @@
|
|
|
10274
10487
|
"name": "number"
|
|
10275
10488
|
},
|
|
10276
10489
|
"description": "A number value which gives Character Counter the maximum length of allowable characters in an Input.",
|
|
10277
|
-
"deprecated":
|
|
10490
|
+
"deprecated": true
|
|
10278
10491
|
},
|
|
10279
10492
|
"onClear": {
|
|
10280
10493
|
"name": "onClear",
|
|
@@ -10338,6 +10551,16 @@
|
|
|
10338
10551
|
},
|
|
10339
10552
|
"description": "Value of the input element",
|
|
10340
10553
|
"deprecated": false
|
|
10554
|
+
},
|
|
10555
|
+
"width": {
|
|
10556
|
+
"name": "width",
|
|
10557
|
+
"required": false,
|
|
10558
|
+
"type": {
|
|
10559
|
+
"name": "string"
|
|
10560
|
+
},
|
|
10561
|
+
"description": "String to determine width of input, must be suffixed with \"px\", \"rem\", or \"%\"\"",
|
|
10562
|
+
"defaultValue": "\"auto\"",
|
|
10563
|
+
"deprecated": false
|
|
10341
10564
|
}
|
|
10342
10565
|
}
|
|
10343
10566
|
},
|
|
@@ -10348,7 +10571,7 @@
|
|
|
10348
10571
|
"flags": {},
|
|
10349
10572
|
"typeParameter": [
|
|
10350
10573
|
{
|
|
10351
|
-
"id":
|
|
10574
|
+
"id": 10523,
|
|
10352
10575
|
"name": "T",
|
|
10353
10576
|
"kind": 131072,
|
|
10354
10577
|
"kindString": "Type parameter",
|
|
@@ -10457,7 +10680,7 @@
|
|
|
10457
10680
|
"flags": {},
|
|
10458
10681
|
"typeParameter": [
|
|
10459
10682
|
{
|
|
10460
|
-
"id":
|
|
10683
|
+
"id": 10555,
|
|
10461
10684
|
"name": "T",
|
|
10462
10685
|
"kind": 131072,
|
|
10463
10686
|
"kindString": "Type parameter",
|
|
@@ -10595,7 +10818,7 @@
|
|
|
10595
10818
|
"flags": {},
|
|
10596
10819
|
"typeParameter": [
|
|
10597
10820
|
{
|
|
10598
|
-
"id":
|
|
10821
|
+
"id": 10584,
|
|
10599
10822
|
"name": "T",
|
|
10600
10823
|
"kind": 131072,
|
|
10601
10824
|
"kindString": "Type parameter",
|
|
@@ -10691,7 +10914,7 @@
|
|
|
10691
10914
|
},
|
|
10692
10915
|
"typeParameter": [
|
|
10693
10916
|
{
|
|
10694
|
-
"id":
|
|
10917
|
+
"id": 10476,
|
|
10695
10918
|
"name": "T",
|
|
10696
10919
|
"kind": 131072,
|
|
10697
10920
|
"kindString": "Type parameter",
|
|
@@ -10703,7 +10926,7 @@
|
|
|
10703
10926
|
"type": {
|
|
10704
10927
|
"type": "reflection",
|
|
10705
10928
|
"declaration": {
|
|
10706
|
-
"id":
|
|
10929
|
+
"id": 10477,
|
|
10707
10930
|
"name": "__type",
|
|
10708
10931
|
"kind": 65536,
|
|
10709
10932
|
"kindString": "Type literal",
|
|
@@ -10712,7 +10935,7 @@
|
|
|
10712
10935
|
},
|
|
10713
10936
|
"indexSignature": [
|
|
10714
10937
|
{
|
|
10715
|
-
"id":
|
|
10938
|
+
"id": 10485,
|
|
10716
10939
|
"name": "__index",
|
|
10717
10940
|
"kind": 8192,
|
|
10718
10941
|
"kindString": "Index signature",
|
|
@@ -10721,7 +10944,7 @@
|
|
|
10721
10944
|
},
|
|
10722
10945
|
"parameters": [
|
|
10723
10946
|
{
|
|
10724
|
-
"id":
|
|
10947
|
+
"id": 10486,
|
|
10725
10948
|
"name": "key",
|
|
10726
10949
|
"kind": 32768,
|
|
10727
10950
|
"kindString": "Parameter",
|
|
@@ -10742,7 +10965,7 @@
|
|
|
10742
10965
|
],
|
|
10743
10966
|
"children": [
|
|
10744
10967
|
{
|
|
10745
|
-
"id":
|
|
10968
|
+
"id": 10479,
|
|
10746
10969
|
"name": "isFocused",
|
|
10747
10970
|
"kind": 32,
|
|
10748
10971
|
"kindString": "Variable",
|
|
@@ -10763,7 +10986,7 @@
|
|
|
10763
10986
|
}
|
|
10764
10987
|
},
|
|
10765
10988
|
{
|
|
10766
|
-
"id":
|
|
10989
|
+
"id": 10480,
|
|
10767
10990
|
"name": "isInverse",
|
|
10768
10991
|
"kind": 32,
|
|
10769
10992
|
"kindString": "Variable",
|
|
@@ -10784,7 +11007,7 @@
|
|
|
10784
11007
|
}
|
|
10785
11008
|
},
|
|
10786
11009
|
{
|
|
10787
|
-
"id":
|
|
11010
|
+
"id": 10481,
|
|
10788
11011
|
"name": "item",
|
|
10789
11012
|
"kind": 32,
|
|
10790
11013
|
"kindString": "Variable",
|
|
@@ -10804,7 +11027,7 @@
|
|
|
10804
11027
|
}
|
|
10805
11028
|
},
|
|
10806
11029
|
{
|
|
10807
|
-
"id":
|
|
11030
|
+
"id": 10482,
|
|
10808
11031
|
"name": "itemRef",
|
|
10809
11032
|
"kind": 32,
|
|
10810
11033
|
"kindString": "Variable",
|
|
@@ -10830,7 +11053,7 @@
|
|
|
10830
11053
|
}
|
|
10831
11054
|
},
|
|
10832
11055
|
{
|
|
10833
|
-
"id":
|
|
11056
|
+
"id": 10483,
|
|
10834
11057
|
"name": "itemString",
|
|
10835
11058
|
"kind": 32,
|
|
10836
11059
|
"kindString": "Variable",
|
|
@@ -10850,7 +11073,7 @@
|
|
|
10850
11073
|
}
|
|
10851
11074
|
},
|
|
10852
11075
|
{
|
|
10853
|
-
"id":
|
|
11076
|
+
"id": 10478,
|
|
10854
11077
|
"name": "key",
|
|
10855
11078
|
"kind": 32,
|
|
10856
11079
|
"kindString": "Variable",
|
|
@@ -10870,7 +11093,7 @@
|
|
|
10870
11093
|
}
|
|
10871
11094
|
},
|
|
10872
11095
|
{
|
|
10873
|
-
"id":
|
|
11096
|
+
"id": 10484,
|
|
10874
11097
|
"name": "theme",
|
|
10875
11098
|
"kind": 32,
|
|
10876
11099
|
"kindString": "Variable",
|
|
@@ -10895,13 +11118,13 @@
|
|
|
10895
11118
|
"title": "Variables",
|
|
10896
11119
|
"kind": 32,
|
|
10897
11120
|
"children": [
|
|
10898
|
-
|
|
10899
|
-
|
|
10900
|
-
|
|
10901
|
-
|
|
10902
|
-
|
|
10903
|
-
|
|
10904
|
-
|
|
11121
|
+
10479,
|
|
11122
|
+
10480,
|
|
11123
|
+
10481,
|
|
11124
|
+
10482,
|
|
11125
|
+
10483,
|
|
11126
|
+
10478,
|
|
11127
|
+
10484
|
|
10905
11128
|
]
|
|
10906
11129
|
}
|
|
10907
11130
|
],
|
|
@@ -10927,7 +11150,7 @@
|
|
|
10927
11150
|
},
|
|
10928
11151
|
"typeParameter": [
|
|
10929
11152
|
{
|
|
10930
|
-
"id":
|
|
11153
|
+
"id": 10488,
|
|
10931
11154
|
"name": "T",
|
|
10932
11155
|
"kind": 131072,
|
|
10933
11156
|
"kindString": "Type parameter",
|
|
@@ -10939,7 +11162,7 @@
|
|
|
10939
11162
|
"type": {
|
|
10940
11163
|
"type": "reflection",
|
|
10941
11164
|
"declaration": {
|
|
10942
|
-
"id":
|
|
11165
|
+
"id": 10489,
|
|
10943
11166
|
"name": "__type",
|
|
10944
11167
|
"kind": 65536,
|
|
10945
11168
|
"kindString": "Type literal",
|
|
@@ -10948,7 +11171,7 @@
|
|
|
10948
11171
|
},
|
|
10949
11172
|
"children": [
|
|
10950
11173
|
{
|
|
10951
|
-
"id":
|
|
11174
|
+
"id": 10490,
|
|
10952
11175
|
"name": "ClearIndicator",
|
|
10953
11176
|
"kind": 32,
|
|
10954
11177
|
"kindString": "Variable",
|
|
@@ -10976,7 +11199,7 @@
|
|
|
10976
11199
|
}
|
|
10977
11200
|
},
|
|
10978
11201
|
{
|
|
10979
|
-
"id":
|
|
11202
|
+
"id": 10491,
|
|
10980
11203
|
"name": "DropdownIndicator",
|
|
10981
11204
|
"kind": 32,
|
|
10982
11205
|
"kindString": "Variable",
|
|
@@ -11009,7 +11232,7 @@
|
|
|
11009
11232
|
}
|
|
11010
11233
|
},
|
|
11011
11234
|
{
|
|
11012
|
-
"id":
|
|
11235
|
+
"id": 10493,
|
|
11013
11236
|
"name": "Item",
|
|
11014
11237
|
"kind": 32,
|
|
11015
11238
|
"kindString": "Variable",
|
|
@@ -11029,7 +11252,7 @@
|
|
|
11029
11252
|
"typeArguments": [
|
|
11030
11253
|
{
|
|
11031
11254
|
"type": "reference",
|
|
11032
|
-
"id":
|
|
11255
|
+
"id": 10475,
|
|
11033
11256
|
"typeArguments": [
|
|
11034
11257
|
{
|
|
11035
11258
|
"type": "typeParameter",
|
|
@@ -11043,7 +11266,7 @@
|
|
|
11043
11266
|
}
|
|
11044
11267
|
},
|
|
11045
11268
|
{
|
|
11046
|
-
"id":
|
|
11269
|
+
"id": 10492,
|
|
11047
11270
|
"name": "LoadingIndicator",
|
|
11048
11271
|
"kind": 32,
|
|
11049
11272
|
"kindString": "Variable",
|
|
@@ -11076,10 +11299,10 @@
|
|
|
11076
11299
|
"title": "Variables",
|
|
11077
11300
|
"kind": 32,
|
|
11078
11301
|
"children": [
|
|
11079
|
-
|
|
11080
|
-
|
|
11081
|
-
|
|
11082
|
-
|
|
11302
|
+
10490,
|
|
11303
|
+
10491,
|
|
11304
|
+
10493,
|
|
11305
|
+
10492
|
|
11083
11306
|
]
|
|
11084
11307
|
}
|
|
11085
11308
|
],
|
|
@@ -11105,7 +11328,7 @@
|
|
|
11105
11328
|
},
|
|
11106
11329
|
"typeParameter": [
|
|
11107
11330
|
{
|
|
11108
|
-
"id":
|
|
11331
|
+
"id": 10633,
|
|
11109
11332
|
"name": "T",
|
|
11110
11333
|
"kind": 131072,
|
|
11111
11334
|
"kindString": "Type parameter",
|
|
@@ -11137,7 +11360,7 @@
|
|
|
11137
11360
|
},
|
|
11138
11361
|
"typeParameter": [
|
|
11139
11362
|
{
|
|
11140
|
-
"id":
|
|
11363
|
+
"id": 10612,
|
|
11141
11364
|
"name": "T",
|
|
11142
11365
|
"kind": 131072,
|
|
11143
11366
|
"kindString": "Type parameter",
|
|
@@ -11331,7 +11554,7 @@
|
|
|
11331
11554
|
},
|
|
11332
11555
|
"typeParameter": [
|
|
11333
11556
|
{
|
|
11334
|
-
"id":
|
|
11557
|
+
"id": 10741,
|
|
11335
11558
|
"name": "T",
|
|
11336
11559
|
"kind": 131072,
|
|
11337
11560
|
"kindString": "Type parameter",
|
|
@@ -11340,7 +11563,7 @@
|
|
|
11340
11563
|
},
|
|
11341
11564
|
"type": {
|
|
11342
11565
|
"type": "reference",
|
|
11343
|
-
"id":
|
|
11566
|
+
"id": 10784,
|
|
11344
11567
|
"name": "SelectOptions"
|
|
11345
11568
|
}
|
|
11346
11569
|
}
|
|
@@ -11498,7 +11721,7 @@
|
|
|
11498
11721
|
},
|
|
11499
11722
|
"typeParameter": [
|
|
11500
11723
|
{
|
|
11501
|
-
"id":
|
|
11724
|
+
"id": 10639,
|
|
11502
11725
|
"name": "T",
|
|
11503
11726
|
"kind": 131072,
|
|
11504
11727
|
"kindString": "Type parameter",
|
|
@@ -11507,7 +11730,7 @@
|
|
|
11507
11730
|
},
|
|
11508
11731
|
"type": {
|
|
11509
11732
|
"type": "reference",
|
|
11510
|
-
"id":
|
|
11733
|
+
"id": 10784,
|
|
11511
11734
|
"name": "SelectOptions"
|
|
11512
11735
|
}
|
|
11513
11736
|
}
|
|
@@ -11966,7 +12189,7 @@
|
|
|
11966
12189
|
{
|
|
11967
12190
|
"type": "reflection",
|
|
11968
12191
|
"declaration": {
|
|
11969
|
-
"id":
|
|
12192
|
+
"id": 10785,
|
|
11970
12193
|
"name": "__type",
|
|
11971
12194
|
"kind": 65536,
|
|
11972
12195
|
"kindString": "Type literal",
|
|
@@ -11975,7 +12198,7 @@
|
|
|
11975
12198
|
},
|
|
11976
12199
|
"indexSignature": [
|
|
11977
12200
|
{
|
|
11978
|
-
"id":
|
|
12201
|
+
"id": 10788,
|
|
11979
12202
|
"name": "__index",
|
|
11980
12203
|
"kind": 8192,
|
|
11981
12204
|
"kindString": "Index signature",
|
|
@@ -11984,7 +12207,7 @@
|
|
|
11984
12207
|
},
|
|
11985
12208
|
"parameters": [
|
|
11986
12209
|
{
|
|
11987
|
-
"id":
|
|
12210
|
+
"id": 10789,
|
|
11988
12211
|
"name": "key",
|
|
11989
12212
|
"kind": 32768,
|
|
11990
12213
|
"kindString": "Parameter",
|
|
@@ -12005,7 +12228,7 @@
|
|
|
12005
12228
|
],
|
|
12006
12229
|
"children": [
|
|
12007
12230
|
{
|
|
12008
|
-
"id":
|
|
12231
|
+
"id": 10787,
|
|
12009
12232
|
"name": "label",
|
|
12010
12233
|
"kind": 32,
|
|
12011
12234
|
"kindString": "Variable",
|
|
@@ -12025,7 +12248,7 @@
|
|
|
12025
12248
|
}
|
|
12026
12249
|
},
|
|
12027
12250
|
{
|
|
12028
|
-
"id":
|
|
12251
|
+
"id": 10786,
|
|
12029
12252
|
"name": "value",
|
|
12030
12253
|
"kind": 32,
|
|
12031
12254
|
"kindString": "Variable",
|
|
@@ -12050,8 +12273,8 @@
|
|
|
12050
12273
|
"title": "Variables",
|
|
12051
12274
|
"kind": 32,
|
|
12052
12275
|
"children": [
|
|
12053
|
-
|
|
12054
|
-
|
|
12276
|
+
10787,
|
|
12277
|
+
10786
|
|
12055
12278
|
]
|
|
12056
12279
|
}
|
|
12057
12280
|
],
|
|
@@ -12083,7 +12306,7 @@
|
|
|
12083
12306
|
},
|
|
12084
12307
|
"typeParameter": [
|
|
12085
12308
|
{
|
|
12086
|
-
"id":
|
|
12309
|
+
"id": 10810,
|
|
12087
12310
|
"name": "T",
|
|
12088
12311
|
"kind": 131072,
|
|
12089
12312
|
"kindString": "Type parameter",
|
|
@@ -12097,7 +12320,7 @@
|
|
|
12097
12320
|
"typeArguments": [
|
|
12098
12321
|
{
|
|
12099
12322
|
"type": "reference",
|
|
12100
|
-
"id":
|
|
12323
|
+
"id": 10638,
|
|
12101
12324
|
"typeArguments": [
|
|
12102
12325
|
{
|
|
12103
12326
|
"type": "typeParameter",
|
|
@@ -12108,7 +12331,7 @@
|
|
|
12108
12331
|
},
|
|
12109
12332
|
{
|
|
12110
12333
|
"type": "reference",
|
|
12111
|
-
"id":
|
|
12334
|
+
"id": 10740,
|
|
12112
12335
|
"typeArguments": [
|
|
12113
12336
|
{
|
|
12114
12337
|
"type": "typeParameter",
|
|
@@ -13046,6 +13269,16 @@
|
|
|
13046
13269
|
},
|
|
13047
13270
|
"description": "Position of the dropdown content",
|
|
13048
13271
|
"defaultValue": "DropdownDropDirection.up",
|
|
13272
|
+
"deprecated": true
|
|
13273
|
+
},
|
|
13274
|
+
"hasSquareCorners": {
|
|
13275
|
+
"name": "hasSquareCorners",
|
|
13276
|
+
"required": false,
|
|
13277
|
+
"type": {
|
|
13278
|
+
"name": "boolean"
|
|
13279
|
+
},
|
|
13280
|
+
"description": "If true, the table paginator will have square edges",
|
|
13281
|
+
"defaultValue": "true",
|
|
13049
13282
|
"deprecated": false
|
|
13050
13283
|
},
|
|
13051
13284
|
"isInverse": {
|
|
@@ -13194,12 +13427,12 @@
|
|
|
13194
13427
|
"typeArguments": [
|
|
13195
13428
|
{
|
|
13196
13429
|
"type": "reference",
|
|
13197
|
-
"id":
|
|
13430
|
+
"id": 22518,
|
|
13198
13431
|
"name": "ControlledPageProps"
|
|
13199
13432
|
},
|
|
13200
13433
|
{
|
|
13201
13434
|
"type": "reference",
|
|
13202
|
-
"id":
|
|
13435
|
+
"id": 22520,
|
|
13203
13436
|
"name": "UncontrolledPageProps"
|
|
13204
13437
|
}
|
|
13205
13438
|
],
|
|
@@ -13221,12 +13454,12 @@
|
|
|
13221
13454
|
"typeArguments": [
|
|
13222
13455
|
{
|
|
13223
13456
|
"type": "reference",
|
|
13224
|
-
"id":
|
|
13457
|
+
"id": 22522,
|
|
13225
13458
|
"name": "ControlledRowsPerPageProps"
|
|
13226
13459
|
},
|
|
13227
13460
|
{
|
|
13228
13461
|
"type": "reference",
|
|
13229
|
-
"id":
|
|
13462
|
+
"id": 22524,
|
|
13230
13463
|
"name": "UncontrolledRowsPerPageProps"
|
|
13231
13464
|
}
|
|
13232
13465
|
],
|
|
@@ -13248,17 +13481,17 @@
|
|
|
13248
13481
|
"types": [
|
|
13249
13482
|
{
|
|
13250
13483
|
"type": "reference",
|
|
13251
|
-
"id":
|
|
13484
|
+
"id": 22245,
|
|
13252
13485
|
"name": "BaseTablePaginationProps"
|
|
13253
13486
|
},
|
|
13254
13487
|
{
|
|
13255
13488
|
"type": "reference",
|
|
13256
|
-
"id":
|
|
13489
|
+
"id": 22526,
|
|
13257
13490
|
"name": "PagePaginationProps"
|
|
13258
13491
|
},
|
|
13259
13492
|
{
|
|
13260
13493
|
"type": "reference",
|
|
13261
|
-
"id":
|
|
13494
|
+
"id": 22527,
|
|
13262
13495
|
"name": "RowsPaginationProps"
|
|
13263
13496
|
}
|
|
13264
13497
|
]
|
|
@@ -13279,6 +13512,16 @@
|
|
|
13279
13512
|
},
|
|
13280
13513
|
"description": "Position of the dropdown content",
|
|
13281
13514
|
"defaultValue": "DropdownDropDirection.up",
|
|
13515
|
+
"deprecated": true
|
|
13516
|
+
},
|
|
13517
|
+
"hasSquareCorners": {
|
|
13518
|
+
"name": "hasSquareCorners",
|
|
13519
|
+
"required": false,
|
|
13520
|
+
"type": {
|
|
13521
|
+
"name": "boolean"
|
|
13522
|
+
},
|
|
13523
|
+
"description": "If true, the table paginator will have square edges",
|
|
13524
|
+
"defaultValue": "true",
|
|
13282
13525
|
"deprecated": false
|
|
13283
13526
|
},
|
|
13284
13527
|
"isInverse": {
|
|
@@ -13797,12 +14040,12 @@
|
|
|
13797
14040
|
"types": [
|
|
13798
14041
|
{
|
|
13799
14042
|
"type": "reference",
|
|
13800
|
-
"id":
|
|
14043
|
+
"id": 14328,
|
|
13801
14044
|
"name": "HorizontalTabsProps"
|
|
13802
14045
|
},
|
|
13803
14046
|
{
|
|
13804
14047
|
"type": "reference",
|
|
13805
|
-
"id":
|
|
14048
|
+
"id": 14325,
|
|
13806
14049
|
"name": "VerticalTabsProps"
|
|
13807
14050
|
}
|
|
13808
14051
|
]
|
|
@@ -14258,12 +14501,12 @@
|
|
|
14258
14501
|
"typeArguments": [
|
|
14259
14502
|
{
|
|
14260
14503
|
"type": "reference",
|
|
14261
|
-
"id":
|
|
14504
|
+
"id": 28804,
|
|
14262
14505
|
"name": "DeletableTagProps"
|
|
14263
14506
|
},
|
|
14264
14507
|
{
|
|
14265
14508
|
"type": "reference",
|
|
14266
|
-
"id":
|
|
14509
|
+
"id": 28817,
|
|
14267
14510
|
"name": "ClickableTagProps"
|
|
14268
14511
|
}
|
|
14269
14512
|
],
|
|
@@ -14302,8 +14545,8 @@
|
|
|
14302
14545
|
"defaultValue": "false",
|
|
14303
14546
|
"deprecated": false
|
|
14304
14547
|
},
|
|
14305
|
-
"
|
|
14306
|
-
"name": "
|
|
14548
|
+
"maxCount": {
|
|
14549
|
+
"name": "maxCount",
|
|
14307
14550
|
"required": false,
|
|
14308
14551
|
"type": {
|
|
14309
14552
|
"name": "number"
|
|
@@ -14508,7 +14751,7 @@
|
|
|
14508
14751
|
"type": "query",
|
|
14509
14752
|
"queryType": {
|
|
14510
14753
|
"type": "reference",
|
|
14511
|
-
"id":
|
|
14754
|
+
"id": 25111,
|
|
14512
14755
|
"name": "useTimePicker"
|
|
14513
14756
|
}
|
|
14514
14757
|
}
|
|
@@ -14589,6 +14832,14 @@
|
|
|
14589
14832
|
"children": "required"
|
|
14590
14833
|
},
|
|
14591
14834
|
"properties": {
|
|
14835
|
+
"additionalContent": {
|
|
14836
|
+
"name": "additionalContent",
|
|
14837
|
+
"required": false,
|
|
14838
|
+
"type": {
|
|
14839
|
+
"name": "React.ReactNode"
|
|
14840
|
+
},
|
|
14841
|
+
"deprecated": false
|
|
14842
|
+
},
|
|
14592
14843
|
"alertStyle": {
|
|
14593
14844
|
"name": "alertStyle",
|
|
14594
14845
|
"required": false,
|
|
@@ -14883,6 +15134,613 @@
|
|
|
14883
15134
|
}
|
|
14884
15135
|
}
|
|
14885
15136
|
},
|
|
15137
|
+
{
|
|
15138
|
+
"name": "ToggleButtonIconProps",
|
|
15139
|
+
"kind": 256,
|
|
15140
|
+
"kindString": "Interface",
|
|
15141
|
+
"flags": {
|
|
15142
|
+
"isExported": true
|
|
15143
|
+
},
|
|
15144
|
+
"id": "ToggleButtonIconProps",
|
|
15145
|
+
"tags": {},
|
|
15146
|
+
"properties": {
|
|
15147
|
+
"aria-label": {
|
|
15148
|
+
"name": "aria-label",
|
|
15149
|
+
"required": false,
|
|
15150
|
+
"type": {
|
|
15151
|
+
"name": "string"
|
|
15152
|
+
},
|
|
15153
|
+
"description": "Sets the aria-label which is required for icon only buttons.",
|
|
15154
|
+
"deprecated": false
|
|
15155
|
+
},
|
|
15156
|
+
"disabled": {
|
|
15157
|
+
"name": "disabled",
|
|
15158
|
+
"required": false,
|
|
15159
|
+
"type": {
|
|
15160
|
+
"name": "boolean"
|
|
15161
|
+
},
|
|
15162
|
+
"description": "Sets a disabled state for a button.",
|
|
15163
|
+
"deprecated": false
|
|
15164
|
+
},
|
|
15165
|
+
"icon": {
|
|
15166
|
+
"name": "icon",
|
|
15167
|
+
"required": true,
|
|
15168
|
+
"type": {
|
|
15169
|
+
"name": "ReactElement"
|
|
15170
|
+
},
|
|
15171
|
+
"description": "Icon which displays alongside text.",
|
|
15172
|
+
"deprecated": false
|
|
15173
|
+
},
|
|
15174
|
+
"isChecked": {
|
|
15175
|
+
"name": "isChecked",
|
|
15176
|
+
"required": false,
|
|
15177
|
+
"type": {
|
|
15178
|
+
"name": "boolean"
|
|
15179
|
+
},
|
|
15180
|
+
"description": "Sets an active button state for a single button.",
|
|
15181
|
+
"deprecated": false
|
|
15182
|
+
},
|
|
15183
|
+
"isFullWidth": {
|
|
15184
|
+
"name": "isFullWidth",
|
|
15185
|
+
"required": false,
|
|
15186
|
+
"type": {
|
|
15187
|
+
"name": "boolean"
|
|
15188
|
+
},
|
|
15189
|
+
"description": "Set the button to display full-width.",
|
|
15190
|
+
"defaultValue": "false",
|
|
15191
|
+
"deprecated": false
|
|
15192
|
+
},
|
|
15193
|
+
"isInverse": {
|
|
15194
|
+
"name": "isInverse",
|
|
15195
|
+
"required": false,
|
|
15196
|
+
"type": {
|
|
15197
|
+
"name": "boolean"
|
|
15198
|
+
},
|
|
15199
|
+
"description": "If true, the component will have inverse styling to better appear on a dark background",
|
|
15200
|
+
"defaultValue": "false",
|
|
15201
|
+
"deprecated": false
|
|
15202
|
+
},
|
|
15203
|
+
"isLoading": {
|
|
15204
|
+
"name": "isLoading",
|
|
15205
|
+
"required": false,
|
|
15206
|
+
"type": {
|
|
15207
|
+
"name": "boolean"
|
|
15208
|
+
},
|
|
15209
|
+
"description": " Set the button to a loading state",
|
|
15210
|
+
"defaultValue": "false",
|
|
15211
|
+
"deprecated": false
|
|
15212
|
+
},
|
|
15213
|
+
"shape": {
|
|
15214
|
+
"name": "shape",
|
|
15215
|
+
"required": false,
|
|
15216
|
+
"type": {
|
|
15217
|
+
"name": "enum",
|
|
15218
|
+
"options": [
|
|
15219
|
+
"ButtonShape.fill",
|
|
15220
|
+
"ButtonShape.leftCap",
|
|
15221
|
+
"ButtonShape.rightCap",
|
|
15222
|
+
"ButtonShape.round"
|
|
15223
|
+
]
|
|
15224
|
+
},
|
|
15225
|
+
"description": "Defines the border radius",
|
|
15226
|
+
"defaultValue": "ButtonShape.fill",
|
|
15227
|
+
"deprecated": false
|
|
15228
|
+
},
|
|
15229
|
+
"size": {
|
|
15230
|
+
"name": "size",
|
|
15231
|
+
"required": false,
|
|
15232
|
+
"type": {
|
|
15233
|
+
"name": "enum",
|
|
15234
|
+
"options": [
|
|
15235
|
+
"ButtonSize.large",
|
|
15236
|
+
"ButtonSize.medium",
|
|
15237
|
+
"ButtonSize.small"
|
|
15238
|
+
]
|
|
15239
|
+
},
|
|
15240
|
+
"description": "Changes the button size: 'small', 'medium', and 'large'.",
|
|
15241
|
+
"deprecated": false
|
|
15242
|
+
},
|
|
15243
|
+
"textTransform": {
|
|
15244
|
+
"name": "textTransform",
|
|
15245
|
+
"required": false,
|
|
15246
|
+
"type": {
|
|
15247
|
+
"name": "enum",
|
|
15248
|
+
"options": [
|
|
15249
|
+
"ButtonTextTransform.none",
|
|
15250
|
+
"ButtonTextTransform.uppercase"
|
|
15251
|
+
]
|
|
15252
|
+
},
|
|
15253
|
+
"description": "Determines whether the button appears in all-caps",
|
|
15254
|
+
"defaultValue": "ButtonTextTransform.uppercase",
|
|
15255
|
+
"deprecated": false
|
|
15256
|
+
},
|
|
15257
|
+
"type": {
|
|
15258
|
+
"name": "type",
|
|
15259
|
+
"required": false,
|
|
15260
|
+
"type": {
|
|
15261
|
+
"name": "enum",
|
|
15262
|
+
"options": [
|
|
15263
|
+
"ButtonType.button",
|
|
15264
|
+
"ButtonType.reset",
|
|
15265
|
+
"ButtonType.submit"
|
|
15266
|
+
]
|
|
15267
|
+
},
|
|
15268
|
+
"description": "The type attribute of the button\nButtonType.button",
|
|
15269
|
+
"deprecated": false
|
|
15270
|
+
},
|
|
15271
|
+
"value": {
|
|
15272
|
+
"name": "value",
|
|
15273
|
+
"required": true,
|
|
15274
|
+
"type": {
|
|
15275
|
+
"name": "string"
|
|
15276
|
+
},
|
|
15277
|
+
"description": "Value of the button element",
|
|
15278
|
+
"deprecated": false
|
|
15279
|
+
},
|
|
15280
|
+
"variant": {
|
|
15281
|
+
"name": "variant",
|
|
15282
|
+
"required": false,
|
|
15283
|
+
"type": {
|
|
15284
|
+
"name": "enum",
|
|
15285
|
+
"options": [
|
|
15286
|
+
"ButtonVariant.link",
|
|
15287
|
+
"ButtonVariant.solid"
|
|
15288
|
+
]
|
|
15289
|
+
},
|
|
15290
|
+
"description": "The variant of the button",
|
|
15291
|
+
"defaultValue": "ButtonVariant.solid",
|
|
15292
|
+
"deprecated": false
|
|
15293
|
+
}
|
|
15294
|
+
}
|
|
15295
|
+
},
|
|
15296
|
+
{
|
|
15297
|
+
"name": "ToggleButtonTextProps",
|
|
15298
|
+
"kind": 256,
|
|
15299
|
+
"kindString": "Interface",
|
|
15300
|
+
"flags": {
|
|
15301
|
+
"isExported": true
|
|
15302
|
+
},
|
|
15303
|
+
"id": "ToggleButtonTextProps",
|
|
15304
|
+
"tags": {},
|
|
15305
|
+
"properties": {
|
|
15306
|
+
"disabled": {
|
|
15307
|
+
"name": "disabled",
|
|
15308
|
+
"required": false,
|
|
15309
|
+
"type": {
|
|
15310
|
+
"name": "boolean"
|
|
15311
|
+
},
|
|
15312
|
+
"description": "Sets a disabled state for a button.",
|
|
15313
|
+
"deprecated": false
|
|
15314
|
+
},
|
|
15315
|
+
"isChecked": {
|
|
15316
|
+
"name": "isChecked",
|
|
15317
|
+
"required": false,
|
|
15318
|
+
"type": {
|
|
15319
|
+
"name": "boolean"
|
|
15320
|
+
},
|
|
15321
|
+
"description": "Sets an active button state for a single button.",
|
|
15322
|
+
"deprecated": false
|
|
15323
|
+
},
|
|
15324
|
+
"isFullWidth": {
|
|
15325
|
+
"name": "isFullWidth",
|
|
15326
|
+
"required": false,
|
|
15327
|
+
"type": {
|
|
15328
|
+
"name": "boolean"
|
|
15329
|
+
},
|
|
15330
|
+
"description": "Set the button to display full-width.",
|
|
15331
|
+
"defaultValue": "false",
|
|
15332
|
+
"deprecated": false
|
|
15333
|
+
},
|
|
15334
|
+
"isInverse": {
|
|
15335
|
+
"name": "isInverse",
|
|
15336
|
+
"required": false,
|
|
15337
|
+
"type": {
|
|
15338
|
+
"name": "boolean"
|
|
15339
|
+
},
|
|
15340
|
+
"description": "If true, the component will have inverse styling to better appear on a dark background",
|
|
15341
|
+
"defaultValue": "false",
|
|
15342
|
+
"deprecated": false
|
|
15343
|
+
},
|
|
15344
|
+
"isLoading": {
|
|
15345
|
+
"name": "isLoading",
|
|
15346
|
+
"required": false,
|
|
15347
|
+
"type": {
|
|
15348
|
+
"name": "boolean"
|
|
15349
|
+
},
|
|
15350
|
+
"description": " Set the button to a loading state",
|
|
15351
|
+
"defaultValue": "false",
|
|
15352
|
+
"deprecated": false
|
|
15353
|
+
},
|
|
15354
|
+
"shape": {
|
|
15355
|
+
"name": "shape",
|
|
15356
|
+
"required": false,
|
|
15357
|
+
"type": {
|
|
15358
|
+
"name": "enum",
|
|
15359
|
+
"options": [
|
|
15360
|
+
"ButtonShape.fill",
|
|
15361
|
+
"ButtonShape.leftCap",
|
|
15362
|
+
"ButtonShape.rightCap",
|
|
15363
|
+
"ButtonShape.round"
|
|
15364
|
+
]
|
|
15365
|
+
},
|
|
15366
|
+
"description": "Defines the border radius",
|
|
15367
|
+
"defaultValue": "ButtonShape.fill",
|
|
15368
|
+
"deprecated": false
|
|
15369
|
+
},
|
|
15370
|
+
"size": {
|
|
15371
|
+
"name": "size",
|
|
15372
|
+
"required": false,
|
|
15373
|
+
"type": {
|
|
15374
|
+
"name": "enum",
|
|
15375
|
+
"options": [
|
|
15376
|
+
"ButtonSize.large",
|
|
15377
|
+
"ButtonSize.medium",
|
|
15378
|
+
"ButtonSize.small"
|
|
15379
|
+
]
|
|
15380
|
+
},
|
|
15381
|
+
"description": "Changes the button size: 'small', 'medium', and 'large'.",
|
|
15382
|
+
"deprecated": false
|
|
15383
|
+
},
|
|
15384
|
+
"textTransform": {
|
|
15385
|
+
"name": "textTransform",
|
|
15386
|
+
"required": false,
|
|
15387
|
+
"type": {
|
|
15388
|
+
"name": "enum",
|
|
15389
|
+
"options": [
|
|
15390
|
+
"ButtonTextTransform.none",
|
|
15391
|
+
"ButtonTextTransform.uppercase"
|
|
15392
|
+
]
|
|
15393
|
+
},
|
|
15394
|
+
"description": "Determines whether the button appears in all-caps",
|
|
15395
|
+
"defaultValue": "ButtonTextTransform.uppercase",
|
|
15396
|
+
"deprecated": false
|
|
15397
|
+
},
|
|
15398
|
+
"type": {
|
|
15399
|
+
"name": "type",
|
|
15400
|
+
"required": false,
|
|
15401
|
+
"type": {
|
|
15402
|
+
"name": "enum",
|
|
15403
|
+
"options": [
|
|
15404
|
+
"ButtonType.button",
|
|
15405
|
+
"ButtonType.reset",
|
|
15406
|
+
"ButtonType.submit"
|
|
15407
|
+
]
|
|
15408
|
+
},
|
|
15409
|
+
"description": "The type attribute of the button\nButtonType.button",
|
|
15410
|
+
"deprecated": false
|
|
15411
|
+
},
|
|
15412
|
+
"value": {
|
|
15413
|
+
"name": "value",
|
|
15414
|
+
"required": true,
|
|
15415
|
+
"type": {
|
|
15416
|
+
"name": "string"
|
|
15417
|
+
},
|
|
15418
|
+
"description": "Value of the button element",
|
|
15419
|
+
"deprecated": false
|
|
15420
|
+
},
|
|
15421
|
+
"variant": {
|
|
15422
|
+
"name": "variant",
|
|
15423
|
+
"required": false,
|
|
15424
|
+
"type": {
|
|
15425
|
+
"name": "enum",
|
|
15426
|
+
"options": [
|
|
15427
|
+
"ButtonVariant.link",
|
|
15428
|
+
"ButtonVariant.solid"
|
|
15429
|
+
]
|
|
15430
|
+
},
|
|
15431
|
+
"description": "The variant of the button",
|
|
15432
|
+
"defaultValue": "ButtonVariant.solid",
|
|
15433
|
+
"deprecated": false
|
|
15434
|
+
}
|
|
15435
|
+
}
|
|
15436
|
+
},
|
|
15437
|
+
{
|
|
15438
|
+
"name": "ToggleButtonProps",
|
|
15439
|
+
"kind": 4194304,
|
|
15440
|
+
"kindString": "Type alias",
|
|
15441
|
+
"flags": {
|
|
15442
|
+
"isExported": true
|
|
15443
|
+
},
|
|
15444
|
+
"type": {
|
|
15445
|
+
"type": "reference",
|
|
15446
|
+
"typeArguments": [
|
|
15447
|
+
{
|
|
15448
|
+
"type": "reference",
|
|
15449
|
+
"id": 29740,
|
|
15450
|
+
"name": "ToggleButtonTextProps"
|
|
15451
|
+
},
|
|
15452
|
+
{
|
|
15453
|
+
"type": "reference",
|
|
15454
|
+
"id": 30019,
|
|
15455
|
+
"name": "ToggleButtonIconProps"
|
|
15456
|
+
}
|
|
15457
|
+
],
|
|
15458
|
+
"name": "XOR"
|
|
15459
|
+
},
|
|
15460
|
+
"id": "ToggleButtonProps",
|
|
15461
|
+
"tags": {},
|
|
15462
|
+
"properties": {}
|
|
15463
|
+
},
|
|
15464
|
+
{
|
|
15465
|
+
"name": "ToggleButtonGroupContextInterface",
|
|
15466
|
+
"kind": 256,
|
|
15467
|
+
"kindString": "Interface",
|
|
15468
|
+
"flags": {
|
|
15469
|
+
"isExported": true
|
|
15470
|
+
},
|
|
15471
|
+
"id": "ToggleButtonGroupContextInterface",
|
|
15472
|
+
"tags": {},
|
|
15473
|
+
"properties": {
|
|
15474
|
+
"ariaChecked": {
|
|
15475
|
+
"name": "ariaChecked",
|
|
15476
|
+
"required": false,
|
|
15477
|
+
"type": {
|
|
15478
|
+
"name": "boolean"
|
|
15479
|
+
},
|
|
15480
|
+
"deprecated": false
|
|
15481
|
+
},
|
|
15482
|
+
"descriptionId": {
|
|
15483
|
+
"name": "descriptionId",
|
|
15484
|
+
"required": false,
|
|
15485
|
+
"type": {
|
|
15486
|
+
"name": "string"
|
|
15487
|
+
},
|
|
15488
|
+
"deprecated": false
|
|
15489
|
+
},
|
|
15490
|
+
"enforced": {
|
|
15491
|
+
"name": "enforced",
|
|
15492
|
+
"required": false,
|
|
15493
|
+
"type": {
|
|
15494
|
+
"name": "boolean"
|
|
15495
|
+
},
|
|
15496
|
+
"deprecated": false
|
|
15497
|
+
},
|
|
15498
|
+
"exclusive": {
|
|
15499
|
+
"name": "exclusive",
|
|
15500
|
+
"required": false,
|
|
15501
|
+
"type": {
|
|
15502
|
+
"name": "boolean"
|
|
15503
|
+
},
|
|
15504
|
+
"deprecated": false
|
|
15505
|
+
},
|
|
15506
|
+
"isInverse": {
|
|
15507
|
+
"name": "isInverse",
|
|
15508
|
+
"required": false,
|
|
15509
|
+
"type": {
|
|
15510
|
+
"name": "boolean"
|
|
15511
|
+
},
|
|
15512
|
+
"description": "If true, the component will have inverse styling to better appear on a dark background",
|
|
15513
|
+
"defaultValue": "false",
|
|
15514
|
+
"deprecated": false
|
|
15515
|
+
},
|
|
15516
|
+
"onChange": {
|
|
15517
|
+
"name": "onChange",
|
|
15518
|
+
"required": false,
|
|
15519
|
+
"type": {
|
|
15520
|
+
"name": "function"
|
|
15521
|
+
},
|
|
15522
|
+
"deprecated": false
|
|
15523
|
+
},
|
|
15524
|
+
"selected": {
|
|
15525
|
+
"name": "selected",
|
|
15526
|
+
"required": false,
|
|
15527
|
+
"type": {
|
|
15528
|
+
"name": "boolean"
|
|
15529
|
+
},
|
|
15530
|
+
"deprecated": false
|
|
15531
|
+
},
|
|
15532
|
+
"selectedValues": {
|
|
15533
|
+
"name": "selectedValues",
|
|
15534
|
+
"required": false,
|
|
15535
|
+
"type": {
|
|
15536
|
+
"name": "string[]"
|
|
15537
|
+
},
|
|
15538
|
+
"deprecated": false
|
|
15539
|
+
},
|
|
15540
|
+
"size": {
|
|
15541
|
+
"name": "size",
|
|
15542
|
+
"required": false,
|
|
15543
|
+
"type": {
|
|
15544
|
+
"name": "enum",
|
|
15545
|
+
"options": [
|
|
15546
|
+
"ButtonSize.large",
|
|
15547
|
+
"ButtonSize.medium",
|
|
15548
|
+
"ButtonSize.small"
|
|
15549
|
+
]
|
|
15550
|
+
},
|
|
15551
|
+
"deprecated": false
|
|
15552
|
+
}
|
|
15553
|
+
}
|
|
15554
|
+
},
|
|
15555
|
+
{
|
|
15556
|
+
"name": "ToggleButtonGroupProps",
|
|
15557
|
+
"kind": 256,
|
|
15558
|
+
"kindString": "Interface",
|
|
15559
|
+
"flags": {
|
|
15560
|
+
"isExported": true
|
|
15561
|
+
},
|
|
15562
|
+
"comment": {
|
|
15563
|
+
"tags": [
|
|
15564
|
+
{
|
|
15565
|
+
"tag": "children",
|
|
15566
|
+
"text": "required\n"
|
|
15567
|
+
}
|
|
15568
|
+
]
|
|
15569
|
+
},
|
|
15570
|
+
"id": "ToggleButtonGroupProps",
|
|
15571
|
+
"tags": {
|
|
15572
|
+
"children": "required"
|
|
15573
|
+
},
|
|
15574
|
+
"properties": {
|
|
15575
|
+
"alignment": {
|
|
15576
|
+
"name": "alignment",
|
|
15577
|
+
"required": false,
|
|
15578
|
+
"type": {
|
|
15579
|
+
"name": "enum",
|
|
15580
|
+
"options": [
|
|
15581
|
+
"ButtonGroupAlignment.apart",
|
|
15582
|
+
"ButtonGroupAlignment.center",
|
|
15583
|
+
"ButtonGroupAlignment.fill",
|
|
15584
|
+
"ButtonGroupAlignment.left",
|
|
15585
|
+
"ButtonGroupAlignment.right"
|
|
15586
|
+
]
|
|
15587
|
+
},
|
|
15588
|
+
"description": "Alignment of the dropdown content",
|
|
15589
|
+
"defaultValue": "ButtonGroupAlignment.left",
|
|
15590
|
+
"deprecated": false
|
|
15591
|
+
},
|
|
15592
|
+
"children": {
|
|
15593
|
+
"name": "children",
|
|
15594
|
+
"required": true,
|
|
15595
|
+
"type": {
|
|
15596
|
+
"name": "ReactNode | undefined"
|
|
15597
|
+
},
|
|
15598
|
+
"description": "The content of the component",
|
|
15599
|
+
"deprecated": false
|
|
15600
|
+
},
|
|
15601
|
+
"color": {
|
|
15602
|
+
"name": "color",
|
|
15603
|
+
"required": false,
|
|
15604
|
+
"type": {
|
|
15605
|
+
"name": "enum",
|
|
15606
|
+
"options": [
|
|
15607
|
+
"ButtonColor.danger",
|
|
15608
|
+
"ButtonColor.marketing",
|
|
15609
|
+
"ButtonColor.primary",
|
|
15610
|
+
"ButtonColor.secondary",
|
|
15611
|
+
"ButtonColor.subtle"
|
|
15612
|
+
]
|
|
15613
|
+
},
|
|
15614
|
+
"description": "The color of all the buttons in the group",
|
|
15615
|
+
"defaultValue": "ButtonColor.primary",
|
|
15616
|
+
"deprecated": false
|
|
15617
|
+
},
|
|
15618
|
+
"descriptionId": {
|
|
15619
|
+
"name": "descriptionId",
|
|
15620
|
+
"required": false,
|
|
15621
|
+
"type": {
|
|
15622
|
+
"name": "string"
|
|
15623
|
+
},
|
|
15624
|
+
"description": "Description for aria-describedby",
|
|
15625
|
+
"deprecated": false
|
|
15626
|
+
},
|
|
15627
|
+
"enforced": {
|
|
15628
|
+
"name": "enforced",
|
|
15629
|
+
"required": false,
|
|
15630
|
+
"type": {
|
|
15631
|
+
"name": "boolean"
|
|
15632
|
+
},
|
|
15633
|
+
"description": "Enables a radio configuration throughout the group retaining an active selection at all times.",
|
|
15634
|
+
"defaultValue": "false",
|
|
15635
|
+
"deprecated": false
|
|
15636
|
+
},
|
|
15637
|
+
"exclusive": {
|
|
15638
|
+
"name": "exclusive",
|
|
15639
|
+
"required": false,
|
|
15640
|
+
"type": {
|
|
15641
|
+
"name": "boolean"
|
|
15642
|
+
},
|
|
15643
|
+
"description": "Sets the Toggle Button group to have only one active selection.",
|
|
15644
|
+
"defaultValue": "false",
|
|
15645
|
+
"deprecated": false
|
|
15646
|
+
},
|
|
15647
|
+
"isInverse": {
|
|
15648
|
+
"name": "isInverse",
|
|
15649
|
+
"required": false,
|
|
15650
|
+
"type": {
|
|
15651
|
+
"name": "boolean"
|
|
15652
|
+
},
|
|
15653
|
+
"description": "If true, the component will have inverse styling to better appear on a dark background",
|
|
15654
|
+
"defaultValue": "false",
|
|
15655
|
+
"deprecated": false
|
|
15656
|
+
},
|
|
15657
|
+
"noSpace": {
|
|
15658
|
+
"name": "noSpace",
|
|
15659
|
+
"required": false,
|
|
15660
|
+
"type": {
|
|
15661
|
+
"name": "boolean"
|
|
15662
|
+
},
|
|
15663
|
+
"description": "Whether or not the buttons in the group are spaced out",
|
|
15664
|
+
"defaultValue": "false",
|
|
15665
|
+
"deprecated": false
|
|
15666
|
+
},
|
|
15667
|
+
"onChange": {
|
|
15668
|
+
"name": "onChange",
|
|
15669
|
+
"required": false,
|
|
15670
|
+
"type": {
|
|
15671
|
+
"name": "function"
|
|
15672
|
+
},
|
|
15673
|
+
"description": "The onChange handler for managing state of toggle buttons by your custom logic.",
|
|
15674
|
+
"deprecated": false
|
|
15675
|
+
},
|
|
15676
|
+
"orientation": {
|
|
15677
|
+
"name": "orientation",
|
|
15678
|
+
"required": false,
|
|
15679
|
+
"type": {
|
|
15680
|
+
"name": "enum",
|
|
15681
|
+
"options": [
|
|
15682
|
+
"ButtonGroupOrientation.horizontal",
|
|
15683
|
+
"ButtonGroupOrientation.vertical"
|
|
15684
|
+
]
|
|
15685
|
+
},
|
|
15686
|
+
"description": "Determines if the buttons are displayed vertically or horizontally",
|
|
15687
|
+
"defaultValue": "ButtonGroupOrientation.horizontal",
|
|
15688
|
+
"deprecated": false
|
|
15689
|
+
},
|
|
15690
|
+
"size": {
|
|
15691
|
+
"name": "size",
|
|
15692
|
+
"required": false,
|
|
15693
|
+
"type": {
|
|
15694
|
+
"name": "enum",
|
|
15695
|
+
"options": [
|
|
15696
|
+
"ButtonSize.large",
|
|
15697
|
+
"ButtonSize.medium",
|
|
15698
|
+
"ButtonSize.small"
|
|
15699
|
+
]
|
|
15700
|
+
},
|
|
15701
|
+
"description": "The relative size of all the buttons in the group",
|
|
15702
|
+
"defaultValue": "ButtonSize.medium",
|
|
15703
|
+
"deprecated": false
|
|
15704
|
+
},
|
|
15705
|
+
"textTransform": {
|
|
15706
|
+
"name": "textTransform",
|
|
15707
|
+
"required": false,
|
|
15708
|
+
"type": {
|
|
15709
|
+
"name": "enum",
|
|
15710
|
+
"options": [
|
|
15711
|
+
"ButtonTextTransform.none",
|
|
15712
|
+
"ButtonTextTransform.uppercase"
|
|
15713
|
+
]
|
|
15714
|
+
},
|
|
15715
|
+
"description": "Determines whether all the buttons in the group appear in all-caps",
|
|
15716
|
+
"defaultValue": "ButtonTextTransform.uppercase",
|
|
15717
|
+
"deprecated": false
|
|
15718
|
+
},
|
|
15719
|
+
"value": {
|
|
15720
|
+
"name": "value",
|
|
15721
|
+
"required": false,
|
|
15722
|
+
"type": {
|
|
15723
|
+
"name": "string"
|
|
15724
|
+
},
|
|
15725
|
+
"description": "Value of the toggle button that is the default selected value for the group",
|
|
15726
|
+
"deprecated": false
|
|
15727
|
+
},
|
|
15728
|
+
"variant": {
|
|
15729
|
+
"name": "variant",
|
|
15730
|
+
"required": false,
|
|
15731
|
+
"type": {
|
|
15732
|
+
"name": "enum",
|
|
15733
|
+
"options": [
|
|
15734
|
+
"ButtonVariant.link",
|
|
15735
|
+
"ButtonVariant.solid"
|
|
15736
|
+
]
|
|
15737
|
+
},
|
|
15738
|
+
"description": "The variant of all the buttons in the group",
|
|
15739
|
+
"defaultValue": "ButtonVariant.solid",
|
|
15740
|
+
"deprecated": false
|
|
15741
|
+
}
|
|
15742
|
+
}
|
|
15743
|
+
},
|
|
14886
15744
|
{
|
|
14887
15745
|
"name": "ITooltipState",
|
|
14888
15746
|
"kind": 256,
|
|
@@ -15355,7 +16213,7 @@
|
|
|
15355
16213
|
},
|
|
15356
16214
|
"typeParameter": [
|
|
15357
16215
|
{
|
|
15358
|
-
"id":
|
|
16216
|
+
"id": 20478,
|
|
15359
16217
|
"name": "PaginatedItem",
|
|
15360
16218
|
"kind": 131072,
|
|
15361
16219
|
"kindString": "Type parameter",
|
|
@@ -15415,7 +16273,7 @@
|
|
|
15415
16273
|
},
|
|
15416
16274
|
"typeParameter": [
|
|
15417
16275
|
{
|
|
15418
|
-
"id":
|
|
16276
|
+
"id": 20487,
|
|
15419
16277
|
"name": "PaginatedItem",
|
|
15420
16278
|
"kind": 131072,
|
|
15421
16279
|
"kindString": "Type parameter",
|