react-magma-dom 4.7.0-next.24 → 4.7.0-next.26
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/NavTabs/NavTab.d.ts +6 -1
- package/dist/components/NavTabs/NavTabs.d.ts +2 -1
- package/dist/components/Tabs/Tab.d.ts +6 -1
- package/dist/components/Tabs/Tabs.d.ts +7 -4
- package/dist/components/Tabs/shared.d.ts +4 -0
- package/dist/components/TreeView/useTreeItem.d.ts +0 -5
- package/dist/components/TreeView/useTreeView.d.ts +2 -1
- package/dist/components/TreeView/utils.d.ts +1 -0
- package/dist/esm/index.js +151 -92
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/properties.json +139 -25
- package/dist/react-magma-dom.cjs.development.js +149 -90
- 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/dist/utils/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -70,7 +70,8 @@ export { Step, StepProps } from './components/Stepper/Step';
|
|
|
70
70
|
export { ResponsiveStepperContainer } from './components/Stepper';
|
|
71
71
|
export { Table, TableProps, TableDensity, TableCellAlign, TableContext, TableSortDirection, TableBody, TableBodyProps, TableCell, TableCellProps, TableHead, TableHeadProps, TableHeaderCell, TableHeaderCellProps, TableHeaderCellScope, TablePagination, TablePaginationProps, TableRow, TableRowColor, TableRowProps, } from './components/Table';
|
|
72
72
|
export { TabsContainer } from './components/Tabs/TabsContainer';
|
|
73
|
-
export { Tabs, TabsAlignment, TabsBorderPosition, TabsIconPosition,
|
|
73
|
+
export { Tabs, TabsAlignment, TabsBorderPosition, TabsIconPosition, } from './components/Tabs';
|
|
74
|
+
export { TabsOrientation, TabsTextTransform } from './components/Tabs/shared';
|
|
74
75
|
export { Tab } from './components/Tabs/Tab';
|
|
75
76
|
export { TabPanelsContainer } from './components/Tabs/TabPanelsContainer';
|
|
76
77
|
export { TabPanel } from './components/Tabs/TabPanel';
|
package/dist/properties.json
CHANGED
|
@@ -3934,7 +3934,7 @@
|
|
|
3934
3934
|
},
|
|
3935
3935
|
"indexSignature": [
|
|
3936
3936
|
{
|
|
3937
|
-
"id":
|
|
3937
|
+
"id": 25240,
|
|
3938
3938
|
"name": "__index",
|
|
3939
3939
|
"kind": 8192,
|
|
3940
3940
|
"kindString": "Index signature",
|
|
@@ -3946,7 +3946,7 @@
|
|
|
3946
3946
|
},
|
|
3947
3947
|
"parameters": [
|
|
3948
3948
|
{
|
|
3949
|
-
"id":
|
|
3949
|
+
"id": 25241,
|
|
3950
3950
|
"name": "key",
|
|
3951
3951
|
"kind": 32768,
|
|
3952
3952
|
"kindString": "Parameter",
|
|
@@ -4036,12 +4036,12 @@
|
|
|
4036
4036
|
"types": [
|
|
4037
4037
|
{
|
|
4038
4038
|
"type": "reference",
|
|
4039
|
-
"id":
|
|
4039
|
+
"id": 25246,
|
|
4040
4040
|
"name": "BaseDatagridProps"
|
|
4041
4041
|
},
|
|
4042
4042
|
{
|
|
4043
4043
|
"type": "reference",
|
|
4044
|
-
"id":
|
|
4044
|
+
"id": 25542,
|
|
4045
4045
|
"name": "DatagridSelectedRowsProps"
|
|
4046
4046
|
}
|
|
4047
4047
|
]
|
|
@@ -4260,12 +4260,12 @@
|
|
|
4260
4260
|
"typeArguments": [
|
|
4261
4261
|
{
|
|
4262
4262
|
"type": "reference",
|
|
4263
|
-
"id":
|
|
4263
|
+
"id": 25538,
|
|
4264
4264
|
"name": "ControlledSelectedRowsProps"
|
|
4265
4265
|
},
|
|
4266
4266
|
{
|
|
4267
4267
|
"type": "reference",
|
|
4268
|
-
"id":
|
|
4268
|
+
"id": 25540,
|
|
4269
4269
|
"name": "UncontrolledSelectedRowsProps"
|
|
4270
4270
|
}
|
|
4271
4271
|
],
|
|
@@ -9171,6 +9171,20 @@
|
|
|
9171
9171
|
"defaultValue": "TabsOrientation.horizontal",
|
|
9172
9172
|
"deprecated": false
|
|
9173
9173
|
},
|
|
9174
|
+
"textTransform": {
|
|
9175
|
+
"name": "textTransform",
|
|
9176
|
+
"required": false,
|
|
9177
|
+
"type": {
|
|
9178
|
+
"name": "enum",
|
|
9179
|
+
"options": [
|
|
9180
|
+
"TabsTextTransform.none",
|
|
9181
|
+
"TabsTextTransform.uppercase"
|
|
9182
|
+
]
|
|
9183
|
+
},
|
|
9184
|
+
"description": "Determines whether the tab appears in all-caps",
|
|
9185
|
+
"defaultValue": "TabsTextTransform.uppercase",
|
|
9186
|
+
"deprecated": false
|
|
9187
|
+
},
|
|
9174
9188
|
"to": {
|
|
9175
9189
|
"name": "to",
|
|
9176
9190
|
"required": false,
|
|
@@ -9251,6 +9265,20 @@
|
|
|
9251
9265
|
"defaultValue": "TabsOrientation.horizontal",
|
|
9252
9266
|
"deprecated": false
|
|
9253
9267
|
},
|
|
9268
|
+
"textTransform": {
|
|
9269
|
+
"name": "textTransform",
|
|
9270
|
+
"required": false,
|
|
9271
|
+
"type": {
|
|
9272
|
+
"name": "enum",
|
|
9273
|
+
"options": [
|
|
9274
|
+
"TabsTextTransform.none",
|
|
9275
|
+
"TabsTextTransform.uppercase"
|
|
9276
|
+
]
|
|
9277
|
+
},
|
|
9278
|
+
"description": "Determines whether the tab appears in all-caps",
|
|
9279
|
+
"defaultValue": "TabsTextTransform.uppercase",
|
|
9280
|
+
"deprecated": false
|
|
9281
|
+
},
|
|
9254
9282
|
"to": {
|
|
9255
9283
|
"name": "to",
|
|
9256
9284
|
"required": true,
|
|
@@ -9357,6 +9385,20 @@
|
|
|
9357
9385
|
"defaultValue": "TabsOrientation.horizontal",
|
|
9358
9386
|
"deprecated": false
|
|
9359
9387
|
},
|
|
9388
|
+
"textTransform": {
|
|
9389
|
+
"name": "textTransform",
|
|
9390
|
+
"required": false,
|
|
9391
|
+
"type": {
|
|
9392
|
+
"name": "enum",
|
|
9393
|
+
"options": [
|
|
9394
|
+
"TabsTextTransform.none",
|
|
9395
|
+
"TabsTextTransform.uppercase"
|
|
9396
|
+
]
|
|
9397
|
+
},
|
|
9398
|
+
"description": "Determines whether the tab appears in all-caps",
|
|
9399
|
+
"defaultValue": "TabsTextTransform.uppercase",
|
|
9400
|
+
"deprecated": false
|
|
9401
|
+
},
|
|
9360
9402
|
"to": {
|
|
9361
9403
|
"name": "to",
|
|
9362
9404
|
"required": false,
|
|
@@ -9379,12 +9421,12 @@
|
|
|
9379
9421
|
"typeArguments": [
|
|
9380
9422
|
{
|
|
9381
9423
|
"type": "reference",
|
|
9382
|
-
"id":
|
|
9424
|
+
"id": 17421,
|
|
9383
9425
|
"name": "NavTabChildrenProps"
|
|
9384
9426
|
},
|
|
9385
9427
|
{
|
|
9386
9428
|
"type": "reference",
|
|
9387
|
-
"id":
|
|
9429
|
+
"id": 17688,
|
|
9388
9430
|
"name": "NavTabComponentProps"
|
|
9389
9431
|
}
|
|
9390
9432
|
],
|
|
@@ -9459,6 +9501,18 @@
|
|
|
9459
9501
|
]
|
|
9460
9502
|
},
|
|
9461
9503
|
"deprecated": false
|
|
9504
|
+
},
|
|
9505
|
+
"textTransform": {
|
|
9506
|
+
"name": "textTransform",
|
|
9507
|
+
"required": false,
|
|
9508
|
+
"type": {
|
|
9509
|
+
"name": "enum",
|
|
9510
|
+
"options": [
|
|
9511
|
+
"TabsTextTransform.none",
|
|
9512
|
+
"TabsTextTransform.uppercase"
|
|
9513
|
+
]
|
|
9514
|
+
},
|
|
9515
|
+
"deprecated": false
|
|
9462
9516
|
}
|
|
9463
9517
|
}
|
|
9464
9518
|
},
|
|
@@ -9814,12 +9868,12 @@
|
|
|
9814
9868
|
"types": [
|
|
9815
9869
|
{
|
|
9816
9870
|
"type": "reference",
|
|
9817
|
-
"id":
|
|
9871
|
+
"id": 27189,
|
|
9818
9872
|
"name": "ControlledPaginationProps"
|
|
9819
9873
|
},
|
|
9820
9874
|
{
|
|
9821
9875
|
"type": "reference",
|
|
9822
|
-
"id":
|
|
9876
|
+
"id": 27465,
|
|
9823
9877
|
"name": "UncontrolledPaginationProps"
|
|
9824
9878
|
}
|
|
9825
9879
|
]
|
|
@@ -14096,12 +14150,12 @@
|
|
|
14096
14150
|
"typeArguments": [
|
|
14097
14151
|
{
|
|
14098
14152
|
"type": "reference",
|
|
14099
|
-
"id":
|
|
14153
|
+
"id": 24573,
|
|
14100
14154
|
"name": "ControlledPageProps"
|
|
14101
14155
|
},
|
|
14102
14156
|
{
|
|
14103
14157
|
"type": "reference",
|
|
14104
|
-
"id":
|
|
14158
|
+
"id": 24575,
|
|
14105
14159
|
"name": "UncontrolledPageProps"
|
|
14106
14160
|
}
|
|
14107
14161
|
],
|
|
@@ -14123,12 +14177,12 @@
|
|
|
14123
14177
|
"typeArguments": [
|
|
14124
14178
|
{
|
|
14125
14179
|
"type": "reference",
|
|
14126
|
-
"id":
|
|
14180
|
+
"id": 24577,
|
|
14127
14181
|
"name": "ControlledRowsPerPageProps"
|
|
14128
14182
|
},
|
|
14129
14183
|
{
|
|
14130
14184
|
"type": "reference",
|
|
14131
|
-
"id":
|
|
14185
|
+
"id": 24579,
|
|
14132
14186
|
"name": "UncontrolledRowsPerPageProps"
|
|
14133
14187
|
}
|
|
14134
14188
|
],
|
|
@@ -14150,17 +14204,17 @@
|
|
|
14150
14204
|
"types": [
|
|
14151
14205
|
{
|
|
14152
14206
|
"type": "reference",
|
|
14153
|
-
"id":
|
|
14207
|
+
"id": 24301,
|
|
14154
14208
|
"name": "BaseTablePaginationProps"
|
|
14155
14209
|
},
|
|
14156
14210
|
{
|
|
14157
14211
|
"type": "reference",
|
|
14158
|
-
"id":
|
|
14212
|
+
"id": 24588,
|
|
14159
14213
|
"name": "PagePaginationProps"
|
|
14160
14214
|
},
|
|
14161
14215
|
{
|
|
14162
14216
|
"type": "reference",
|
|
14163
|
-
"id":
|
|
14217
|
+
"id": 24589,
|
|
14164
14218
|
"name": "RowsPaginationProps"
|
|
14165
14219
|
}
|
|
14166
14220
|
]
|
|
@@ -14401,6 +14455,20 @@
|
|
|
14401
14455
|
"description": "If true, the component will have inverse styling to better appear on a dark background",
|
|
14402
14456
|
"defaultValue": "false",
|
|
14403
14457
|
"deprecated": false
|
|
14458
|
+
},
|
|
14459
|
+
"textTransform": {
|
|
14460
|
+
"name": "textTransform",
|
|
14461
|
+
"required": false,
|
|
14462
|
+
"type": {
|
|
14463
|
+
"name": "enum",
|
|
14464
|
+
"options": [
|
|
14465
|
+
"TabsTextTransform.none",
|
|
14466
|
+
"TabsTextTransform.uppercase"
|
|
14467
|
+
]
|
|
14468
|
+
},
|
|
14469
|
+
"description": "Determines whether the tab appears in all-caps",
|
|
14470
|
+
"defaultValue": "TabsTextTransform.uppercase",
|
|
14471
|
+
"deprecated": false
|
|
14404
14472
|
}
|
|
14405
14473
|
}
|
|
14406
14474
|
},
|
|
@@ -14591,6 +14659,18 @@
|
|
|
14591
14659
|
"name": "function"
|
|
14592
14660
|
},
|
|
14593
14661
|
"deprecated": false
|
|
14662
|
+
},
|
|
14663
|
+
"textTransform": {
|
|
14664
|
+
"name": "textTransform",
|
|
14665
|
+
"required": false,
|
|
14666
|
+
"type": {
|
|
14667
|
+
"name": "enum",
|
|
14668
|
+
"options": [
|
|
14669
|
+
"TabsTextTransform.none",
|
|
14670
|
+
"TabsTextTransform.uppercase"
|
|
14671
|
+
]
|
|
14672
|
+
},
|
|
14673
|
+
"deprecated": false
|
|
14594
14674
|
}
|
|
14595
14675
|
}
|
|
14596
14676
|
},
|
|
@@ -14693,6 +14773,20 @@
|
|
|
14693
14773
|
},
|
|
14694
14774
|
"defaultValue": "TabsOrientation.horizontal",
|
|
14695
14775
|
"deprecated": false
|
|
14776
|
+
},
|
|
14777
|
+
"textTransform": {
|
|
14778
|
+
"name": "textTransform",
|
|
14779
|
+
"required": false,
|
|
14780
|
+
"type": {
|
|
14781
|
+
"name": "enum",
|
|
14782
|
+
"options": [
|
|
14783
|
+
"TabsTextTransform.none",
|
|
14784
|
+
"TabsTextTransform.uppercase"
|
|
14785
|
+
]
|
|
14786
|
+
},
|
|
14787
|
+
"description": "Determines whether the tab appears in all-caps",
|
|
14788
|
+
"defaultValue": "TabsTextTransform.uppercase",
|
|
14789
|
+
"deprecated": false
|
|
14696
14790
|
}
|
|
14697
14791
|
}
|
|
14698
14792
|
},
|
|
@@ -15219,12 +15313,12 @@
|
|
|
15219
15313
|
"typeArguments": [
|
|
15220
15314
|
{
|
|
15221
15315
|
"type": "reference",
|
|
15222
|
-
"id":
|
|
15316
|
+
"id": 29720,
|
|
15223
15317
|
"name": "DeletableTagProps"
|
|
15224
15318
|
},
|
|
15225
15319
|
{
|
|
15226
15320
|
"type": "reference",
|
|
15227
|
-
"id":
|
|
15321
|
+
"id": 29733,
|
|
15228
15322
|
"name": "ClickableTagProps"
|
|
15229
15323
|
}
|
|
15230
15324
|
],
|
|
@@ -15469,7 +15563,7 @@
|
|
|
15469
15563
|
"type": "query",
|
|
15470
15564
|
"queryType": {
|
|
15471
15565
|
"type": "reference",
|
|
15472
|
-
"id":
|
|
15566
|
+
"id": 31036,
|
|
15473
15567
|
"name": "useTimePicker"
|
|
15474
15568
|
}
|
|
15475
15569
|
}
|
|
@@ -16164,12 +16258,12 @@
|
|
|
16164
16258
|
"typeArguments": [
|
|
16165
16259
|
{
|
|
16166
16260
|
"type": "reference",
|
|
16167
|
-
"id":
|
|
16261
|
+
"id": 33571,
|
|
16168
16262
|
"name": "ToggleButtonTextProps"
|
|
16169
16263
|
},
|
|
16170
16264
|
{
|
|
16171
16265
|
"type": "reference",
|
|
16172
|
-
"id":
|
|
16266
|
+
"id": 33849,
|
|
16173
16267
|
"name": "ToggleButtonIconProps"
|
|
16174
16268
|
}
|
|
16175
16269
|
],
|
|
@@ -16790,6 +16884,16 @@
|
|
|
16790
16884
|
"description": "Index number\nprivate",
|
|
16791
16885
|
"deprecated": false
|
|
16792
16886
|
},
|
|
16887
|
+
"isDisabled": {
|
|
16888
|
+
"name": "isDisabled",
|
|
16889
|
+
"required": false,
|
|
16890
|
+
"type": {
|
|
16891
|
+
"name": "boolean"
|
|
16892
|
+
},
|
|
16893
|
+
"description": "If true, element is disabled",
|
|
16894
|
+
"defaultValue": "false",
|
|
16895
|
+
"deprecated": false
|
|
16896
|
+
},
|
|
16793
16897
|
"itemId": {
|
|
16794
16898
|
"name": "itemId",
|
|
16795
16899
|
"required": true,
|
|
@@ -17319,6 +17423,16 @@
|
|
|
17319
17423
|
"description": "Index number\nprivate",
|
|
17320
17424
|
"deprecated": false
|
|
17321
17425
|
},
|
|
17426
|
+
"isDisabled": {
|
|
17427
|
+
"name": "isDisabled",
|
|
17428
|
+
"required": false,
|
|
17429
|
+
"type": {
|
|
17430
|
+
"name": "boolean"
|
|
17431
|
+
},
|
|
17432
|
+
"description": "If true, element is disabled",
|
|
17433
|
+
"defaultValue": "false",
|
|
17434
|
+
"deprecated": false
|
|
17435
|
+
},
|
|
17322
17436
|
"itemId": {
|
|
17323
17437
|
"name": "itemId",
|
|
17324
17438
|
"required": true,
|
|
@@ -17522,7 +17636,7 @@
|
|
|
17522
17636
|
"type": "query",
|
|
17523
17637
|
"queryType": {
|
|
17524
17638
|
"type": "reference",
|
|
17525
|
-
"id":
|
|
17639
|
+
"id": 33189,
|
|
17526
17640
|
"name": "useTreeView"
|
|
17527
17641
|
}
|
|
17528
17642
|
}
|
|
@@ -17719,7 +17833,7 @@
|
|
|
17719
17833
|
},
|
|
17720
17834
|
"typeParameter": [
|
|
17721
17835
|
{
|
|
17722
|
-
"id":
|
|
17836
|
+
"id": 22492,
|
|
17723
17837
|
"name": "PaginatedItem",
|
|
17724
17838
|
"kind": 131072,
|
|
17725
17839
|
"kindString": "Type parameter",
|
|
@@ -17779,7 +17893,7 @@
|
|
|
17779
17893
|
},
|
|
17780
17894
|
"typeParameter": [
|
|
17781
17895
|
{
|
|
17782
|
-
"id":
|
|
17896
|
+
"id": 22501,
|
|
17783
17897
|
"name": "PaginatedItem",
|
|
17784
17898
|
"kind": 131072,
|
|
17785
17899
|
"kindString": "Type parameter",
|