react-magma-dom 2.5.14 → 2.6.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/Datagrid/Datagrid.d.ts +10 -1
- package/dist/components/Datagrid/Datagrid.stories.d.ts +10 -8
- package/dist/components/Heading/Heading.stories.d.ts +1 -1
- package/dist/components/IconButton/IconButton.stories.d.ts +4 -4
- package/dist/components/Table/Table.d.ts +6 -1
- package/dist/components/Table/Table.stories.d.ts +19 -17
- package/dist/components/Table/TableRow.d.ts +10 -1
- package/dist/components/Tag/Tag.stories.d.ts +80 -80
- package/dist/esm/index.js +123 -51
- package/dist/esm/index.js.map +1 -1
- package/dist/properties.json +98 -18
- package/dist/react-magma-dom.cjs.development.js +122 -50
- 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
|
@@ -3529,6 +3529,15 @@
|
|
|
3529
3529
|
"description": "Function called when the rows selected in the table changes",
|
|
3530
3530
|
"deprecated": false
|
|
3531
3531
|
},
|
|
3532
|
+
"onSortBySelected": {
|
|
3533
|
+
"name": "onSortBySelected",
|
|
3534
|
+
"required": false,
|
|
3535
|
+
"type": {
|
|
3536
|
+
"name": "function"
|
|
3537
|
+
},
|
|
3538
|
+
"description": "Function called when the sort button is clicked for selectable tables",
|
|
3539
|
+
"deprecated": false
|
|
3540
|
+
},
|
|
3532
3541
|
"paginationProps": {
|
|
3533
3542
|
"name": "paginationProps",
|
|
3534
3543
|
"required": false,
|
|
@@ -3563,6 +3572,21 @@
|
|
|
3563
3572
|
},
|
|
3564
3573
|
"deprecated": false
|
|
3565
3574
|
},
|
|
3575
|
+
"sortDirection": {
|
|
3576
|
+
"name": "sortDirection",
|
|
3577
|
+
"required": false,
|
|
3578
|
+
"type": {
|
|
3579
|
+
"name": "enum",
|
|
3580
|
+
"options": [
|
|
3581
|
+
"TableSortDirection.ascending",
|
|
3582
|
+
"TableSortDirection.descending",
|
|
3583
|
+
"TableSortDirection.none"
|
|
3584
|
+
]
|
|
3585
|
+
},
|
|
3586
|
+
"description": "Direction by which the column is sorted",
|
|
3587
|
+
"defaultValue": "TableSortDirection.none",
|
|
3588
|
+
"deprecated": false
|
|
3589
|
+
},
|
|
3566
3590
|
"testId": {
|
|
3567
3591
|
"name": "testId",
|
|
3568
3592
|
"required": false,
|
|
@@ -3768,7 +3792,7 @@
|
|
|
3768
3792
|
},
|
|
3769
3793
|
"indexSignature": [
|
|
3770
3794
|
{
|
|
3771
|
-
"id":
|
|
3795
|
+
"id": 21498,
|
|
3772
3796
|
"name": "__index",
|
|
3773
3797
|
"kind": 8192,
|
|
3774
3798
|
"kindString": "Index signature",
|
|
@@ -3780,7 +3804,7 @@
|
|
|
3780
3804
|
},
|
|
3781
3805
|
"parameters": [
|
|
3782
3806
|
{
|
|
3783
|
-
"id":
|
|
3807
|
+
"id": 21499,
|
|
3784
3808
|
"name": "key",
|
|
3785
3809
|
"kind": 32768,
|
|
3786
3810
|
"kindString": "Parameter",
|
|
@@ -3870,12 +3894,12 @@
|
|
|
3870
3894
|
"types": [
|
|
3871
3895
|
{
|
|
3872
3896
|
"type": "reference",
|
|
3873
|
-
"id":
|
|
3897
|
+
"id": 21504,
|
|
3874
3898
|
"name": "BaseDatagridProps"
|
|
3875
3899
|
},
|
|
3876
3900
|
{
|
|
3877
3901
|
"type": "reference",
|
|
3878
|
-
"id":
|
|
3902
|
+
"id": 21800,
|
|
3879
3903
|
"name": "DatagridSelectedRowsProps"
|
|
3880
3904
|
}
|
|
3881
3905
|
]
|
|
@@ -4009,6 +4033,15 @@
|
|
|
4009
4033
|
"description": "Function called when the rows selected in the table changes",
|
|
4010
4034
|
"deprecated": false
|
|
4011
4035
|
},
|
|
4036
|
+
"onSortBySelected": {
|
|
4037
|
+
"name": "onSortBySelected",
|
|
4038
|
+
"required": false,
|
|
4039
|
+
"type": {
|
|
4040
|
+
"name": "function"
|
|
4041
|
+
},
|
|
4042
|
+
"description": "Function called when the sort button is clicked for selectable tables",
|
|
4043
|
+
"deprecated": false
|
|
4044
|
+
},
|
|
4012
4045
|
"paginationProps": {
|
|
4013
4046
|
"name": "paginationProps",
|
|
4014
4047
|
"required": false,
|
|
@@ -4043,6 +4076,21 @@
|
|
|
4043
4076
|
},
|
|
4044
4077
|
"deprecated": false
|
|
4045
4078
|
},
|
|
4079
|
+
"sortDirection": {
|
|
4080
|
+
"name": "sortDirection",
|
|
4081
|
+
"required": false,
|
|
4082
|
+
"type": {
|
|
4083
|
+
"name": "enum",
|
|
4084
|
+
"options": [
|
|
4085
|
+
"TableSortDirection.ascending",
|
|
4086
|
+
"TableSortDirection.descending",
|
|
4087
|
+
"TableSortDirection.none"
|
|
4088
|
+
]
|
|
4089
|
+
},
|
|
4090
|
+
"description": "Direction by which the column is sorted",
|
|
4091
|
+
"defaultValue": "TableSortDirection.none",
|
|
4092
|
+
"deprecated": false
|
|
4093
|
+
},
|
|
4046
4094
|
"testId": {
|
|
4047
4095
|
"name": "testId",
|
|
4048
4096
|
"required": false,
|
|
@@ -4066,12 +4114,12 @@
|
|
|
4066
4114
|
"typeArguments": [
|
|
4067
4115
|
{
|
|
4068
4116
|
"type": "reference",
|
|
4069
|
-
"id":
|
|
4117
|
+
"id": 21796,
|
|
4070
4118
|
"name": "ControlledSelectedRowsProps"
|
|
4071
4119
|
},
|
|
4072
4120
|
{
|
|
4073
4121
|
"type": "reference",
|
|
4074
|
-
"id":
|
|
4122
|
+
"id": 21798,
|
|
4075
4123
|
"name": "UncontrolledSelectedRowsProps"
|
|
4076
4124
|
}
|
|
4077
4125
|
],
|
|
@@ -9136,12 +9184,12 @@
|
|
|
9136
9184
|
"types": [
|
|
9137
9185
|
{
|
|
9138
9186
|
"type": "reference",
|
|
9139
|
-
"id":
|
|
9187
|
+
"id": 27029,
|
|
9140
9188
|
"name": "ControlledPaginationProps"
|
|
9141
9189
|
},
|
|
9142
9190
|
{
|
|
9143
9191
|
"type": "reference",
|
|
9144
|
-
"id":
|
|
9192
|
+
"id": 27305,
|
|
9145
9193
|
"name": "UncontrolledPaginationProps"
|
|
9146
9194
|
}
|
|
9147
9195
|
]
|
|
@@ -12522,6 +12570,14 @@
|
|
|
12522
12570
|
},
|
|
12523
12571
|
"deprecated": false
|
|
12524
12572
|
},
|
|
12573
|
+
"isSortableBySelected": {
|
|
12574
|
+
"name": "isSortableBySelected",
|
|
12575
|
+
"required": false,
|
|
12576
|
+
"type": {
|
|
12577
|
+
"name": "boolean"
|
|
12578
|
+
},
|
|
12579
|
+
"deprecated": false
|
|
12580
|
+
},
|
|
12525
12581
|
"rowCount": {
|
|
12526
12582
|
"name": "rowCount",
|
|
12527
12583
|
"required": false,
|
|
@@ -13073,12 +13129,12 @@
|
|
|
13073
13129
|
"typeArguments": [
|
|
13074
13130
|
{
|
|
13075
13131
|
"type": "reference",
|
|
13076
|
-
"id":
|
|
13132
|
+
"id": 20868,
|
|
13077
13133
|
"name": "ControlledPageProps"
|
|
13078
13134
|
},
|
|
13079
13135
|
{
|
|
13080
13136
|
"type": "reference",
|
|
13081
|
-
"id":
|
|
13137
|
+
"id": 20870,
|
|
13082
13138
|
"name": "UncontrolledPageProps"
|
|
13083
13139
|
}
|
|
13084
13140
|
],
|
|
@@ -13100,12 +13156,12 @@
|
|
|
13100
13156
|
"typeArguments": [
|
|
13101
13157
|
{
|
|
13102
13158
|
"type": "reference",
|
|
13103
|
-
"id":
|
|
13159
|
+
"id": 20872,
|
|
13104
13160
|
"name": "ControlledRowsPerPageProps"
|
|
13105
13161
|
},
|
|
13106
13162
|
{
|
|
13107
13163
|
"type": "reference",
|
|
13108
|
-
"id":
|
|
13164
|
+
"id": 20874,
|
|
13109
13165
|
"name": "UncontrolledRowsPerPageProps"
|
|
13110
13166
|
}
|
|
13111
13167
|
],
|
|
@@ -13127,17 +13183,17 @@
|
|
|
13127
13183
|
"types": [
|
|
13128
13184
|
{
|
|
13129
13185
|
"type": "reference",
|
|
13130
|
-
"id":
|
|
13186
|
+
"id": 20596,
|
|
13131
13187
|
"name": "BaseTablePaginationProps"
|
|
13132
13188
|
},
|
|
13133
13189
|
{
|
|
13134
13190
|
"type": "reference",
|
|
13135
|
-
"id":
|
|
13191
|
+
"id": 20876,
|
|
13136
13192
|
"name": "PagePaginationProps"
|
|
13137
13193
|
},
|
|
13138
13194
|
{
|
|
13139
13195
|
"type": "reference",
|
|
13140
|
-
"id":
|
|
13196
|
+
"id": 20877,
|
|
13141
13197
|
"name": "RowsPaginationProps"
|
|
13142
13198
|
}
|
|
13143
13199
|
]
|
|
@@ -13298,6 +13354,15 @@
|
|
|
13298
13354
|
},
|
|
13299
13355
|
"deprecated": false
|
|
13300
13356
|
},
|
|
13357
|
+
"onSort": {
|
|
13358
|
+
"name": "onSort",
|
|
13359
|
+
"required": false,
|
|
13360
|
+
"type": {
|
|
13361
|
+
"name": "function"
|
|
13362
|
+
},
|
|
13363
|
+
"description": "Event that fires when clicking the table header cell sort button",
|
|
13364
|
+
"deprecated": false
|
|
13365
|
+
},
|
|
13301
13366
|
"onTableRowSelect": {
|
|
13302
13367
|
"name": "onTableRowSelect",
|
|
13303
13368
|
"required": false,
|
|
@@ -13314,6 +13379,21 @@
|
|
|
13314
13379
|
},
|
|
13315
13380
|
"deprecated": false
|
|
13316
13381
|
},
|
|
13382
|
+
"sortDirection": {
|
|
13383
|
+
"name": "sortDirection",
|
|
13384
|
+
"required": false,
|
|
13385
|
+
"type": {
|
|
13386
|
+
"name": "enum",
|
|
13387
|
+
"options": [
|
|
13388
|
+
"TableSortDirection.ascending",
|
|
13389
|
+
"TableSortDirection.descending",
|
|
13390
|
+
"TableSortDirection.none"
|
|
13391
|
+
]
|
|
13392
|
+
},
|
|
13393
|
+
"description": "Direction by which the column is sorted",
|
|
13394
|
+
"defaultValue": "TableSortDirection.none",
|
|
13395
|
+
"deprecated": false
|
|
13396
|
+
},
|
|
13317
13397
|
"testId": {
|
|
13318
13398
|
"name": "testId",
|
|
13319
13399
|
"required": false,
|
|
@@ -14174,12 +14254,12 @@
|
|
|
14174
14254
|
"typeArguments": [
|
|
14175
14255
|
{
|
|
14176
14256
|
"type": "reference",
|
|
14177
|
-
"id":
|
|
14257
|
+
"id": 27921,
|
|
14178
14258
|
"name": "DeletableTagProps"
|
|
14179
14259
|
},
|
|
14180
14260
|
{
|
|
14181
14261
|
"type": "reference",
|
|
14182
|
-
"id":
|
|
14262
|
+
"id": 27934,
|
|
14183
14263
|
"name": "ClickableTagProps"
|
|
14184
14264
|
}
|
|
14185
14265
|
],
|
|
@@ -14414,7 +14494,7 @@
|
|
|
14414
14494
|
"type": "query",
|
|
14415
14495
|
"queryType": {
|
|
14416
14496
|
"type": "reference",
|
|
14417
|
-
"id":
|
|
14497
|
+
"id": 23972,
|
|
14418
14498
|
"name": "useTimePicker"
|
|
14419
14499
|
}
|
|
14420
14500
|
}
|