react-magma-dom 4.7.0-next.11 → 4.7.0-next.13
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/Stepper/ResponsiveStepperContainer.d.ts +17 -0
- package/dist/components/Stepper/Step.d.ts +5 -1
- package/dist/components/Stepper/Stepper.d.ts +13 -0
- package/dist/components/Stepper/Stepper.stories.d.ts +2 -0
- package/dist/components/Stepper/index.d.ts +1 -0
- package/dist/esm/index.js +242 -145
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/properties.json +72 -6
- package/dist/react-magma-dom.cjs.development.js +220 -105
- 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/index.d.ts
CHANGED
|
@@ -65,8 +65,9 @@ export { SkipLink, SkipLinkProps } from './components/SkipLink';
|
|
|
65
65
|
export { SkipLinkContent, SkipLinkContentProps, } from './components/SkipLinkContent';
|
|
66
66
|
export { Spacer, SpacerProps, SpacerAxis } from './components/Spacer';
|
|
67
67
|
export { Spinner, SpinnerProps } from './components/Spinner';
|
|
68
|
-
export { Stepper, StepperLayout, StepperProps } from './components/Stepper';
|
|
68
|
+
export { Stepper, StepperLayout, StepperProps, StepperOrientation, ResponsiveStepperContainerProps, } from './components/Stepper';
|
|
69
69
|
export { Step, StepProps } from './components/Stepper/Step';
|
|
70
|
+
export { ResponsiveStepperContainer } from './components/Stepper';
|
|
70
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';
|
|
71
72
|
export { TabsContainer } from './components/Tabs/TabsContainer';
|
|
72
73
|
export { Tabs, TabsAlignment, TabsBorderPosition, TabsIconPosition, TabsOrientation, } from './components/Tabs';
|
package/dist/properties.json
CHANGED
|
@@ -13118,6 +13118,45 @@
|
|
|
13118
13118
|
}
|
|
13119
13119
|
}
|
|
13120
13120
|
},
|
|
13121
|
+
{
|
|
13122
|
+
"name": "ResponsiveStepperContainerProps",
|
|
13123
|
+
"kind": 256,
|
|
13124
|
+
"kindString": "Interface",
|
|
13125
|
+
"flags": {
|
|
13126
|
+
"isExported": true
|
|
13127
|
+
},
|
|
13128
|
+
"id": "ResponsiveStepperContainerProps",
|
|
13129
|
+
"tags": {},
|
|
13130
|
+
"properties": {
|
|
13131
|
+
"children": {
|
|
13132
|
+
"name": "children",
|
|
13133
|
+
"required": false,
|
|
13134
|
+
"type": {
|
|
13135
|
+
"name": "React.ReactNode"
|
|
13136
|
+
},
|
|
13137
|
+
"description": "The content of the component",
|
|
13138
|
+
"deprecated": false
|
|
13139
|
+
},
|
|
13140
|
+
"currentStep": {
|
|
13141
|
+
"name": "currentStep",
|
|
13142
|
+
"required": true,
|
|
13143
|
+
"type": {
|
|
13144
|
+
"name": "number"
|
|
13145
|
+
},
|
|
13146
|
+
"description": "Current step value.",
|
|
13147
|
+
"deprecated": false
|
|
13148
|
+
},
|
|
13149
|
+
"steps": {
|
|
13150
|
+
"name": "steps",
|
|
13151
|
+
"required": true,
|
|
13152
|
+
"type": {
|
|
13153
|
+
"name": "React.ReactNode[]"
|
|
13154
|
+
},
|
|
13155
|
+
"description": "Steps of the Stepper.",
|
|
13156
|
+
"deprecated": false
|
|
13157
|
+
}
|
|
13158
|
+
}
|
|
13159
|
+
},
|
|
13121
13160
|
{
|
|
13122
13161
|
"name": "StepProps",
|
|
13123
13162
|
"kind": 256,
|
|
@@ -13200,6 +13239,19 @@
|
|
|
13200
13239
|
"description": "Changes the Stepper view for responsive layouts, needs a minimum 'breakpoint' number.",
|
|
13201
13240
|
"deprecated": false
|
|
13202
13241
|
},
|
|
13242
|
+
"breakpointOrientation": {
|
|
13243
|
+
"name": "breakpointOrientation",
|
|
13244
|
+
"required": false,
|
|
13245
|
+
"type": {
|
|
13246
|
+
"name": "enum",
|
|
13247
|
+
"options": [
|
|
13248
|
+
"StepperOrientation.horizontal",
|
|
13249
|
+
"StepperOrientation.vertical"
|
|
13250
|
+
]
|
|
13251
|
+
},
|
|
13252
|
+
"description": "Changes the Stepper orientation for responsive layouts, needs a minimum 'breakpoint' number.",
|
|
13253
|
+
"deprecated": false
|
|
13254
|
+
},
|
|
13203
13255
|
"completionLabel": {
|
|
13204
13256
|
"name": "completionLabel",
|
|
13205
13257
|
"required": false,
|
|
@@ -13244,6 +13296,20 @@
|
|
|
13244
13296
|
"defaultValue": "StepperLayout.showLabels",
|
|
13245
13297
|
"deprecated": false
|
|
13246
13298
|
},
|
|
13299
|
+
"orientation": {
|
|
13300
|
+
"name": "orientation",
|
|
13301
|
+
"required": false,
|
|
13302
|
+
"type": {
|
|
13303
|
+
"name": "enum",
|
|
13304
|
+
"options": [
|
|
13305
|
+
"StepperOrientation.horizontal",
|
|
13306
|
+
"StepperOrientation.vertical"
|
|
13307
|
+
]
|
|
13308
|
+
},
|
|
13309
|
+
"description": "Determines if the stepper is displayed vertically or horizontally",
|
|
13310
|
+
"defaultValue": "StepperOrientation.horizontal",
|
|
13311
|
+
"deprecated": false
|
|
13312
|
+
},
|
|
13247
13313
|
"stepLabel": {
|
|
13248
13314
|
"name": "stepLabel",
|
|
13249
13315
|
"required": false,
|
|
@@ -15137,12 +15203,12 @@
|
|
|
15137
15203
|
"typeArguments": [
|
|
15138
15204
|
{
|
|
15139
15205
|
"type": "reference",
|
|
15140
|
-
"id":
|
|
15206
|
+
"id": 29700,
|
|
15141
15207
|
"name": "DeletableTagProps"
|
|
15142
15208
|
},
|
|
15143
15209
|
{
|
|
15144
15210
|
"type": "reference",
|
|
15145
|
-
"id":
|
|
15211
|
+
"id": 29713,
|
|
15146
15212
|
"name": "ClickableTagProps"
|
|
15147
15213
|
}
|
|
15148
15214
|
],
|
|
@@ -15387,7 +15453,7 @@
|
|
|
15387
15453
|
"type": "query",
|
|
15388
15454
|
"queryType": {
|
|
15389
15455
|
"type": "reference",
|
|
15390
|
-
"id":
|
|
15456
|
+
"id": 31016,
|
|
15391
15457
|
"name": "useTimePicker"
|
|
15392
15458
|
}
|
|
15393
15459
|
}
|
|
@@ -16082,12 +16148,12 @@
|
|
|
16082
16148
|
"typeArguments": [
|
|
16083
16149
|
{
|
|
16084
16150
|
"type": "reference",
|
|
16085
|
-
"id":
|
|
16151
|
+
"id": 33481,
|
|
16086
16152
|
"name": "ToggleButtonTextProps"
|
|
16087
16153
|
},
|
|
16088
16154
|
{
|
|
16089
16155
|
"type": "reference",
|
|
16090
|
-
"id":
|
|
16156
|
+
"id": 33759,
|
|
16091
16157
|
"name": "ToggleButtonIconProps"
|
|
16092
16158
|
}
|
|
16093
16159
|
],
|
|
@@ -17404,7 +17470,7 @@
|
|
|
17404
17470
|
"type": "query",
|
|
17405
17471
|
"queryType": {
|
|
17406
17472
|
"type": "reference",
|
|
17407
|
-
"id":
|
|
17473
|
+
"id": 33104,
|
|
17408
17474
|
"name": "useTreeView"
|
|
17409
17475
|
}
|
|
17410
17476
|
}
|