react-magma-dom 4.9.2-next.1 → 4.9.2-next.2
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/Modal/Modal.d.ts +5 -0
- package/dist/components/Table/Table.d.ts +26 -0
- package/dist/components/Table/TablePagination.d.ts +5 -0
- package/dist/components/Table/TableRow.d.ts +1 -1
- package/dist/components/Transition/Transition.d.ts +5 -0
- package/dist/esm/index.js +626 -407
- package/dist/esm/index.js.map +1 -1
- package/dist/i18n/interface.d.ts +6 -0
- package/dist/properties.json +147 -32
- package/dist/react-magma-dom.cjs.development.js +626 -407
- 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/theme/components/drawerTransition.d.ts +2 -0
- package/package.json +3 -3
package/dist/i18n/interface.d.ts
CHANGED
package/dist/properties.json
CHANGED
|
@@ -3602,6 +3602,16 @@
|
|
|
3602
3602
|
"defaultValue": "false",
|
|
3603
3603
|
"deprecated": false
|
|
3604
3604
|
},
|
|
3605
|
+
"hasOutsideBorder": {
|
|
3606
|
+
"name": "hasOutsideBorder",
|
|
3607
|
+
"required": false,
|
|
3608
|
+
"type": {
|
|
3609
|
+
"name": "boolean"
|
|
3610
|
+
},
|
|
3611
|
+
"description": "If true, the table will have outer border",
|
|
3612
|
+
"defaultValue": "false",
|
|
3613
|
+
"deprecated": false
|
|
3614
|
+
},
|
|
3605
3615
|
"hasPagination": {
|
|
3606
3616
|
"name": "hasPagination",
|
|
3607
3617
|
"required": false,
|
|
@@ -3622,6 +3632,16 @@
|
|
|
3622
3632
|
"defaultValue": "false",
|
|
3623
3633
|
"deprecated": false
|
|
3624
3634
|
},
|
|
3635
|
+
"hasTablePagination": {
|
|
3636
|
+
"name": "hasTablePagination",
|
|
3637
|
+
"required": false,
|
|
3638
|
+
"type": {
|
|
3639
|
+
"name": "boolean"
|
|
3640
|
+
},
|
|
3641
|
+
"description": " If true, the table will have additional styles for table.",
|
|
3642
|
+
"defaultValue": "false",
|
|
3643
|
+
"deprecated": false
|
|
3644
|
+
},
|
|
3625
3645
|
"hasVerticalBorders": {
|
|
3626
3646
|
"name": "hasVerticalBorders",
|
|
3627
3647
|
"required": false,
|
|
@@ -3745,6 +3765,15 @@
|
|
|
3745
3765
|
"description": "Direction by which the selectable column is sorted",
|
|
3746
3766
|
"defaultValue": "TableSortDirection.none",
|
|
3747
3767
|
"deprecated": false
|
|
3768
|
+
},
|
|
3769
|
+
"tableTitle": {
|
|
3770
|
+
"name": "tableTitle",
|
|
3771
|
+
"required": false,
|
|
3772
|
+
"type": {
|
|
3773
|
+
"name": "React.ReactNode | string"
|
|
3774
|
+
},
|
|
3775
|
+
"description": "The title or caption of a table inside a <caption> HTML element that provides the table an accessible\ndescription.\nIt can be a simple string or a React node, such as a heading element (e.g., <h1>, <h2>).",
|
|
3776
|
+
"deprecated": false
|
|
3748
3777
|
}
|
|
3749
3778
|
}
|
|
3750
3779
|
},
|
|
@@ -3934,7 +3963,7 @@
|
|
|
3934
3963
|
},
|
|
3935
3964
|
"indexSignature": [
|
|
3936
3965
|
{
|
|
3937
|
-
"id":
|
|
3966
|
+
"id": 19507,
|
|
3938
3967
|
"name": "__index",
|
|
3939
3968
|
"kind": 8192,
|
|
3940
3969
|
"kindString": "Index signature",
|
|
@@ -3946,7 +3975,7 @@
|
|
|
3946
3975
|
},
|
|
3947
3976
|
"parameters": [
|
|
3948
3977
|
{
|
|
3949
|
-
"id":
|
|
3978
|
+
"id": 19508,
|
|
3950
3979
|
"name": "key",
|
|
3951
3980
|
"kind": 32768,
|
|
3952
3981
|
"kindString": "Parameter",
|
|
@@ -4036,12 +4065,12 @@
|
|
|
4036
4065
|
"types": [
|
|
4037
4066
|
{
|
|
4038
4067
|
"type": "reference",
|
|
4039
|
-
"id":
|
|
4068
|
+
"id": 19513,
|
|
4040
4069
|
"name": "BaseDatagridProps"
|
|
4041
4070
|
},
|
|
4042
4071
|
{
|
|
4043
4072
|
"type": "reference",
|
|
4044
|
-
"id":
|
|
4073
|
+
"id": 19819,
|
|
4045
4074
|
"name": "DatagridSelectedRowsProps"
|
|
4046
4075
|
}
|
|
4047
4076
|
]
|
|
@@ -4102,6 +4131,16 @@
|
|
|
4102
4131
|
"defaultValue": "false",
|
|
4103
4132
|
"deprecated": false
|
|
4104
4133
|
},
|
|
4134
|
+
"hasOutsideBorder": {
|
|
4135
|
+
"name": "hasOutsideBorder",
|
|
4136
|
+
"required": false,
|
|
4137
|
+
"type": {
|
|
4138
|
+
"name": "boolean"
|
|
4139
|
+
},
|
|
4140
|
+
"description": "If true, the table will have outer border",
|
|
4141
|
+
"defaultValue": "false",
|
|
4142
|
+
"deprecated": false
|
|
4143
|
+
},
|
|
4105
4144
|
"hasPagination": {
|
|
4106
4145
|
"name": "hasPagination",
|
|
4107
4146
|
"required": false,
|
|
@@ -4122,6 +4161,16 @@
|
|
|
4122
4161
|
"defaultValue": "false",
|
|
4123
4162
|
"deprecated": false
|
|
4124
4163
|
},
|
|
4164
|
+
"hasTablePagination": {
|
|
4165
|
+
"name": "hasTablePagination",
|
|
4166
|
+
"required": false,
|
|
4167
|
+
"type": {
|
|
4168
|
+
"name": "boolean"
|
|
4169
|
+
},
|
|
4170
|
+
"description": " If true, the table will have additional styles for table.",
|
|
4171
|
+
"defaultValue": "false",
|
|
4172
|
+
"deprecated": false
|
|
4173
|
+
},
|
|
4125
4174
|
"hasVerticalBorders": {
|
|
4126
4175
|
"name": "hasVerticalBorders",
|
|
4127
4176
|
"required": false,
|
|
@@ -4245,6 +4294,15 @@
|
|
|
4245
4294
|
"description": "Direction by which the selectable column is sorted",
|
|
4246
4295
|
"defaultValue": "TableSortDirection.none",
|
|
4247
4296
|
"deprecated": false
|
|
4297
|
+
},
|
|
4298
|
+
"tableTitle": {
|
|
4299
|
+
"name": "tableTitle",
|
|
4300
|
+
"required": false,
|
|
4301
|
+
"type": {
|
|
4302
|
+
"name": "React.ReactNode | string"
|
|
4303
|
+
},
|
|
4304
|
+
"description": "The title or caption of a table inside a <caption> HTML element that provides the table an accessible\ndescription.\nIt can be a simple string or a React node, such as a heading element (e.g., <h1>, <h2>).",
|
|
4305
|
+
"deprecated": false
|
|
4248
4306
|
}
|
|
4249
4307
|
}
|
|
4250
4308
|
},
|
|
@@ -4260,12 +4318,12 @@
|
|
|
4260
4318
|
"typeArguments": [
|
|
4261
4319
|
{
|
|
4262
4320
|
"type": "reference",
|
|
4263
|
-
"id":
|
|
4321
|
+
"id": 19815,
|
|
4264
4322
|
"name": "ControlledSelectedRowsProps"
|
|
4265
4323
|
},
|
|
4266
4324
|
{
|
|
4267
4325
|
"type": "reference",
|
|
4268
|
-
"id":
|
|
4326
|
+
"id": 19817,
|
|
4269
4327
|
"name": "UncontrolledSelectedRowsProps"
|
|
4270
4328
|
}
|
|
4271
4329
|
],
|
|
@@ -5658,7 +5716,7 @@
|
|
|
5658
5716
|
},
|
|
5659
5717
|
"type": {
|
|
5660
5718
|
"type": "reference",
|
|
5661
|
-
"id":
|
|
5719
|
+
"id": 9300,
|
|
5662
5720
|
"name": "AccordionPanelProps"
|
|
5663
5721
|
},
|
|
5664
5722
|
"id": "DropdownExpandableMenuPanelProps",
|
|
@@ -9577,12 +9635,12 @@
|
|
|
9577
9635
|
"typeArguments": [
|
|
9578
9636
|
{
|
|
9579
9637
|
"type": "reference",
|
|
9580
|
-
"id":
|
|
9638
|
+
"id": 24069,
|
|
9581
9639
|
"name": "NavTabChildrenProps"
|
|
9582
9640
|
},
|
|
9583
9641
|
{
|
|
9584
9642
|
"type": "reference",
|
|
9585
|
-
"id":
|
|
9643
|
+
"id": 24343,
|
|
9586
9644
|
"name": "NavTabComponentProps"
|
|
9587
9645
|
}
|
|
9588
9646
|
],
|
|
@@ -9684,7 +9742,7 @@
|
|
|
9684
9742
|
"typeArguments": [
|
|
9685
9743
|
{
|
|
9686
9744
|
"type": "reference",
|
|
9687
|
-
"id":
|
|
9745
|
+
"id": 22274,
|
|
9688
9746
|
"name": "TabsProps"
|
|
9689
9747
|
},
|
|
9690
9748
|
{
|
|
@@ -10039,12 +10097,12 @@
|
|
|
10039
10097
|
"types": [
|
|
10040
10098
|
{
|
|
10041
10099
|
"type": "reference",
|
|
10042
|
-
"id":
|
|
10100
|
+
"id": 25264,
|
|
10043
10101
|
"name": "ControlledPaginationProps"
|
|
10044
10102
|
},
|
|
10045
10103
|
{
|
|
10046
10104
|
"type": "reference",
|
|
10047
|
-
"id":
|
|
10105
|
+
"id": 25547,
|
|
10048
10106
|
"name": "UncontrolledPaginationProps"
|
|
10049
10107
|
}
|
|
10050
10108
|
]
|
|
@@ -11018,12 +11076,12 @@
|
|
|
11018
11076
|
"typeArguments": [
|
|
11019
11077
|
{
|
|
11020
11078
|
"type": "reference",
|
|
11021
|
-
"id":
|
|
11079
|
+
"id": 30193,
|
|
11022
11080
|
"name": "IconOnlyPopoverTriggerProps"
|
|
11023
11081
|
},
|
|
11024
11082
|
{
|
|
11025
11083
|
"type": "reference",
|
|
11026
|
-
"id":
|
|
11084
|
+
"id": 30198,
|
|
11027
11085
|
"name": "IconTextPopoverTriggerProps"
|
|
11028
11086
|
}
|
|
11029
11087
|
],
|
|
@@ -14254,6 +14312,14 @@
|
|
|
14254
14312
|
},
|
|
14255
14313
|
"deprecated": false
|
|
14256
14314
|
},
|
|
14315
|
+
"hasTablePagination": {
|
|
14316
|
+
"name": "hasTablePagination",
|
|
14317
|
+
"required": false,
|
|
14318
|
+
"type": {
|
|
14319
|
+
"name": "boolean"
|
|
14320
|
+
},
|
|
14321
|
+
"deprecated": false
|
|
14322
|
+
},
|
|
14257
14323
|
"hasVerticalBorders": {
|
|
14258
14324
|
"name": "hasVerticalBorders",
|
|
14259
14325
|
"required": false,
|
|
@@ -14368,6 +14434,16 @@
|
|
|
14368
14434
|
"defaultValue": "false",
|
|
14369
14435
|
"deprecated": false
|
|
14370
14436
|
},
|
|
14437
|
+
"hasOutsideBorder": {
|
|
14438
|
+
"name": "hasOutsideBorder",
|
|
14439
|
+
"required": false,
|
|
14440
|
+
"type": {
|
|
14441
|
+
"name": "boolean"
|
|
14442
|
+
},
|
|
14443
|
+
"description": "If true, the table will have outer border",
|
|
14444
|
+
"defaultValue": "false",
|
|
14445
|
+
"deprecated": false
|
|
14446
|
+
},
|
|
14371
14447
|
"hasSquareCorners": {
|
|
14372
14448
|
"name": "hasSquareCorners",
|
|
14373
14449
|
"required": false,
|
|
@@ -14378,6 +14454,16 @@
|
|
|
14378
14454
|
"defaultValue": "false",
|
|
14379
14455
|
"deprecated": false
|
|
14380
14456
|
},
|
|
14457
|
+
"hasTablePagination": {
|
|
14458
|
+
"name": "hasTablePagination",
|
|
14459
|
+
"required": false,
|
|
14460
|
+
"type": {
|
|
14461
|
+
"name": "boolean"
|
|
14462
|
+
},
|
|
14463
|
+
"description": " If true, the table will have additional styles for table.",
|
|
14464
|
+
"defaultValue": "false",
|
|
14465
|
+
"deprecated": false
|
|
14466
|
+
},
|
|
14381
14467
|
"hasVerticalBorders": {
|
|
14382
14468
|
"name": "hasVerticalBorders",
|
|
14383
14469
|
"required": false,
|
|
@@ -14431,6 +14517,15 @@
|
|
|
14431
14517
|
"name": "Array"
|
|
14432
14518
|
},
|
|
14433
14519
|
"deprecated": false
|
|
14520
|
+
},
|
|
14521
|
+
"tableTitle": {
|
|
14522
|
+
"name": "tableTitle",
|
|
14523
|
+
"required": false,
|
|
14524
|
+
"type": {
|
|
14525
|
+
"name": "React.ReactNode | string"
|
|
14526
|
+
},
|
|
14527
|
+
"description": "The title or caption of a table inside a <caption> HTML element that provides the table an accessible\ndescription.\nIt can be a simple string or a React node, such as a heading element (e.g., <h1>, <h2>).",
|
|
14528
|
+
"deprecated": false
|
|
14434
14529
|
}
|
|
14435
14530
|
}
|
|
14436
14531
|
},
|
|
@@ -14658,6 +14753,16 @@
|
|
|
14658
14753
|
"defaultValue": "DropdownDropDirection.up",
|
|
14659
14754
|
"deprecated": true
|
|
14660
14755
|
},
|
|
14756
|
+
"hasOutsideBorder": {
|
|
14757
|
+
"name": "hasOutsideBorder",
|
|
14758
|
+
"required": false,
|
|
14759
|
+
"type": {
|
|
14760
|
+
"name": "boolean"
|
|
14761
|
+
},
|
|
14762
|
+
"description": "If true, the table paginator will have outer border",
|
|
14763
|
+
"defaultValue": "false",
|
|
14764
|
+
"deprecated": false
|
|
14765
|
+
},
|
|
14661
14766
|
"hasSquareCorners": {
|
|
14662
14767
|
"name": "hasSquareCorners",
|
|
14663
14768
|
"required": false,
|
|
@@ -14860,12 +14965,12 @@
|
|
|
14860
14965
|
"typeArguments": [
|
|
14861
14966
|
{
|
|
14862
14967
|
"type": "reference",
|
|
14863
|
-
"id":
|
|
14968
|
+
"id": 18811,
|
|
14864
14969
|
"name": "ControlledPageProps"
|
|
14865
14970
|
},
|
|
14866
14971
|
{
|
|
14867
14972
|
"type": "reference",
|
|
14868
|
-
"id":
|
|
14973
|
+
"id": 18813,
|
|
14869
14974
|
"name": "UncontrolledPageProps"
|
|
14870
14975
|
}
|
|
14871
14976
|
],
|
|
@@ -14887,12 +14992,12 @@
|
|
|
14887
14992
|
"typeArguments": [
|
|
14888
14993
|
{
|
|
14889
14994
|
"type": "reference",
|
|
14890
|
-
"id":
|
|
14995
|
+
"id": 18815,
|
|
14891
14996
|
"name": "ControlledRowsPerPageProps"
|
|
14892
14997
|
},
|
|
14893
14998
|
{
|
|
14894
14999
|
"type": "reference",
|
|
14895
|
-
"id":
|
|
15000
|
+
"id": 18817,
|
|
14896
15001
|
"name": "UncontrolledRowsPerPageProps"
|
|
14897
15002
|
}
|
|
14898
15003
|
],
|
|
@@ -14914,17 +15019,17 @@
|
|
|
14914
15019
|
"types": [
|
|
14915
15020
|
{
|
|
14916
15021
|
"type": "reference",
|
|
14917
|
-
"id":
|
|
15022
|
+
"id": 18531,
|
|
14918
15023
|
"name": "BaseTablePaginationProps"
|
|
14919
15024
|
},
|
|
14920
15025
|
{
|
|
14921
15026
|
"type": "reference",
|
|
14922
|
-
"id":
|
|
15027
|
+
"id": 18827,
|
|
14923
15028
|
"name": "PagePaginationProps"
|
|
14924
15029
|
},
|
|
14925
15030
|
{
|
|
14926
15031
|
"type": "reference",
|
|
14927
|
-
"id":
|
|
15032
|
+
"id": 18828,
|
|
14928
15033
|
"name": "RowsPaginationProps"
|
|
14929
15034
|
}
|
|
14930
15035
|
]
|
|
@@ -14947,6 +15052,16 @@
|
|
|
14947
15052
|
"defaultValue": "DropdownDropDirection.up",
|
|
14948
15053
|
"deprecated": true
|
|
14949
15054
|
},
|
|
15055
|
+
"hasOutsideBorder": {
|
|
15056
|
+
"name": "hasOutsideBorder",
|
|
15057
|
+
"required": false,
|
|
15058
|
+
"type": {
|
|
15059
|
+
"name": "boolean"
|
|
15060
|
+
},
|
|
15061
|
+
"description": "If true, the table paginator will have outer border",
|
|
15062
|
+
"defaultValue": "false",
|
|
15063
|
+
"deprecated": false
|
|
15064
|
+
},
|
|
14950
15065
|
"hasSquareCorners": {
|
|
14951
15066
|
"name": "hasSquareCorners",
|
|
14952
15067
|
"required": false,
|
|
@@ -15117,7 +15232,7 @@
|
|
|
15117
15232
|
"type": {
|
|
15118
15233
|
"name": "string"
|
|
15119
15234
|
},
|
|
15120
|
-
"description": "Unique name to be used to identify row for
|
|
15235
|
+
"description": "Unique name to be used to identify row for screen readers",
|
|
15121
15236
|
"deprecated": false
|
|
15122
15237
|
},
|
|
15123
15238
|
"sortDirection": {
|
|
@@ -15540,12 +15655,12 @@
|
|
|
15540
15655
|
"types": [
|
|
15541
15656
|
{
|
|
15542
15657
|
"type": "reference",
|
|
15543
|
-
"id":
|
|
15658
|
+
"id": 22271,
|
|
15544
15659
|
"name": "HorizontalTabsProps"
|
|
15545
15660
|
},
|
|
15546
15661
|
{
|
|
15547
15662
|
"type": "reference",
|
|
15548
|
-
"id":
|
|
15663
|
+
"id": 22268,
|
|
15549
15664
|
"name": "VerticalTabsProps"
|
|
15550
15665
|
}
|
|
15551
15666
|
]
|
|
@@ -16023,12 +16138,12 @@
|
|
|
16023
16138
|
"typeArguments": [
|
|
16024
16139
|
{
|
|
16025
16140
|
"type": "reference",
|
|
16026
|
-
"id":
|
|
16141
|
+
"id": 28456,
|
|
16027
16142
|
"name": "DeletableTagProps"
|
|
16028
16143
|
},
|
|
16029
16144
|
{
|
|
16030
16145
|
"type": "reference",
|
|
16031
|
-
"id":
|
|
16146
|
+
"id": 28469,
|
|
16032
16147
|
"name": "ClickableTagProps"
|
|
16033
16148
|
}
|
|
16034
16149
|
],
|
|
@@ -16273,7 +16388,7 @@
|
|
|
16273
16388
|
"type": "query",
|
|
16274
16389
|
"queryType": {
|
|
16275
16390
|
"type": "reference",
|
|
16276
|
-
"id":
|
|
16391
|
+
"id": 29797,
|
|
16277
16392
|
"name": "useTimePicker"
|
|
16278
16393
|
}
|
|
16279
16394
|
}
|
|
@@ -16968,12 +17083,12 @@
|
|
|
16968
17083
|
"typeArguments": [
|
|
16969
17084
|
{
|
|
16970
17085
|
"type": "reference",
|
|
16971
|
-
"id":
|
|
17086
|
+
"id": 34565,
|
|
16972
17087
|
"name": "ToggleButtonTextProps"
|
|
16973
17088
|
},
|
|
16974
17089
|
{
|
|
16975
17090
|
"type": "reference",
|
|
16976
|
-
"id":
|
|
17091
|
+
"id": 34849,
|
|
16977
17092
|
"name": "ToggleButtonIconProps"
|
|
16978
17093
|
}
|
|
16979
17094
|
],
|
|
@@ -18392,7 +18507,7 @@
|
|
|
18392
18507
|
"type": "query",
|
|
18393
18508
|
"queryType": {
|
|
18394
18509
|
"type": "reference",
|
|
18395
|
-
"id":
|
|
18510
|
+
"id": 33323,
|
|
18396
18511
|
"name": "useTreeView"
|
|
18397
18512
|
}
|
|
18398
18513
|
}
|
|
@@ -18589,7 +18704,7 @@
|
|
|
18589
18704
|
},
|
|
18590
18705
|
"typeParameter": [
|
|
18591
18706
|
{
|
|
18592
|
-
"id":
|
|
18707
|
+
"id": 16657,
|
|
18593
18708
|
"name": "PaginatedItem",
|
|
18594
18709
|
"kind": 131072,
|
|
18595
18710
|
"kindString": "Type parameter",
|
|
@@ -18649,7 +18764,7 @@
|
|
|
18649
18764
|
},
|
|
18650
18765
|
"typeParameter": [
|
|
18651
18766
|
{
|
|
18652
|
-
"id":
|
|
18767
|
+
"id": 16666,
|
|
18653
18768
|
"name": "PaginatedItem",
|
|
18654
18769
|
"kind": 131072,
|
|
18655
18770
|
"kindString": "Type parameter",
|