react-magma-dom 5.1.0-rc.11 → 5.1.0-rc.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/NavTabs/NavTabs.d.ts +4 -2
- package/dist/components/NavTabs/NavTabs.stories.d.ts +3 -3
- package/dist/components/Select/Select.stories.d.ts +10 -0
- package/dist/components/Select/SelectContainer.d.ts +1 -0
- package/dist/components/Select/index.d.ts +4 -0
- package/dist/esm/index.js +75 -54
- package/dist/esm/index.js.map +1 -1
- package/dist/properties.json +123 -0
- package/dist/react-magma-dom.cjs.development.js +70 -52
- 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
|
@@ -9630,6 +9630,111 @@
|
|
|
9630
9630
|
}
|
|
9631
9631
|
}
|
|
9632
9632
|
},
|
|
9633
|
+
{
|
|
9634
|
+
"name": "NavTabsProps",
|
|
9635
|
+
"kind": 256,
|
|
9636
|
+
"kindString": "Interface",
|
|
9637
|
+
"id": "NavTabsProps",
|
|
9638
|
+
"tags": {},
|
|
9639
|
+
"properties": {
|
|
9640
|
+
"alignment": {
|
|
9641
|
+
"name": "alignment",
|
|
9642
|
+
"required": false,
|
|
9643
|
+
"type": {
|
|
9644
|
+
"name": "enum",
|
|
9645
|
+
"options": [
|
|
9646
|
+
"TabsAlignment.center",
|
|
9647
|
+
"TabsAlignment.left",
|
|
9648
|
+
"TabsAlignment.right"
|
|
9649
|
+
]
|
|
9650
|
+
},
|
|
9651
|
+
"description": "Alignment of the tabs menu",
|
|
9652
|
+
"defaultValue": "TabsAlignment.left",
|
|
9653
|
+
"deprecated": false
|
|
9654
|
+
},
|
|
9655
|
+
"aria-label": {
|
|
9656
|
+
"name": "aria-label",
|
|
9657
|
+
"required": true,
|
|
9658
|
+
"type": {
|
|
9659
|
+
"name": "string"
|
|
9660
|
+
},
|
|
9661
|
+
"description": "The text the screen reader will announce that describes your tablist.",
|
|
9662
|
+
"deprecated": false
|
|
9663
|
+
},
|
|
9664
|
+
"backgroundColor": {
|
|
9665
|
+
"name": "backgroundColor",
|
|
9666
|
+
"required": false,
|
|
9667
|
+
"type": {
|
|
9668
|
+
"name": "string"
|
|
9669
|
+
},
|
|
9670
|
+
"description": "Background color for the tabs menu",
|
|
9671
|
+
"deprecated": false
|
|
9672
|
+
},
|
|
9673
|
+
"iconPosition": {
|
|
9674
|
+
"name": "iconPosition",
|
|
9675
|
+
"required": false,
|
|
9676
|
+
"type": {
|
|
9677
|
+
"name": "enum",
|
|
9678
|
+
"options": [
|
|
9679
|
+
"TabsIconPosition.bottom",
|
|
9680
|
+
"TabsIconPosition.left",
|
|
9681
|
+
"TabsIconPosition.right",
|
|
9682
|
+
"TabsIconPosition.top"
|
|
9683
|
+
]
|
|
9684
|
+
},
|
|
9685
|
+
"description": "The orientation of icon on Tab",
|
|
9686
|
+
"defaultValue": "TabsIconPosition.left",
|
|
9687
|
+
"deprecated": false
|
|
9688
|
+
},
|
|
9689
|
+
"isFullWidth": {
|
|
9690
|
+
"name": "isFullWidth",
|
|
9691
|
+
"required": false,
|
|
9692
|
+
"type": {
|
|
9693
|
+
"name": "boolean"
|
|
9694
|
+
},
|
|
9695
|
+
"description": "If true, the components takes the full width of the screen",
|
|
9696
|
+
"deprecated": false
|
|
9697
|
+
},
|
|
9698
|
+
"isInverse": {
|
|
9699
|
+
"name": "isInverse",
|
|
9700
|
+
"required": false,
|
|
9701
|
+
"type": {
|
|
9702
|
+
"name": "boolean"
|
|
9703
|
+
},
|
|
9704
|
+
"description": "If true, the component will have inverse styling to better appear on a dark background",
|
|
9705
|
+
"defaultValue": "false",
|
|
9706
|
+
"deprecated": false
|
|
9707
|
+
},
|
|
9708
|
+
"orientation": {
|
|
9709
|
+
"name": "orientation",
|
|
9710
|
+
"required": false,
|
|
9711
|
+
"type": {
|
|
9712
|
+
"name": "enum",
|
|
9713
|
+
"options": [
|
|
9714
|
+
"TabsOrientation.horizontal",
|
|
9715
|
+
"TabsOrientation.vertical"
|
|
9716
|
+
]
|
|
9717
|
+
},
|
|
9718
|
+
"description": "",
|
|
9719
|
+
"defaultValue": "TabsOrientation.horizontal",
|
|
9720
|
+
"deprecated": false
|
|
9721
|
+
},
|
|
9722
|
+
"textTransform": {
|
|
9723
|
+
"name": "textTransform",
|
|
9724
|
+
"required": false,
|
|
9725
|
+
"type": {
|
|
9726
|
+
"name": "enum",
|
|
9727
|
+
"options": [
|
|
9728
|
+
"TabsTextTransform.none",
|
|
9729
|
+
"TabsTextTransform.uppercase"
|
|
9730
|
+
]
|
|
9731
|
+
},
|
|
9732
|
+
"description": "Determines whether the tab appears in all-caps",
|
|
9733
|
+
"defaultValue": "TabsTextTransform.uppercase",
|
|
9734
|
+
"deprecated": false
|
|
9735
|
+
}
|
|
9736
|
+
}
|
|
9737
|
+
},
|
|
9633
9738
|
{
|
|
9634
9739
|
"name": "PageButtonProps",
|
|
9635
9740
|
"kind": 256,
|
|
@@ -11821,6 +11926,15 @@
|
|
|
11821
11926
|
"description": "Id of the element that describes the select trigger button",
|
|
11822
11927
|
"deprecated": false
|
|
11823
11928
|
},
|
|
11929
|
+
"ariaLabel": {
|
|
11930
|
+
"name": "ariaLabel",
|
|
11931
|
+
"required": false,
|
|
11932
|
+
"type": {
|
|
11933
|
+
"name": "string"
|
|
11934
|
+
},
|
|
11935
|
+
"description": "Aria label for the select trigger button",
|
|
11936
|
+
"deprecated": false
|
|
11937
|
+
},
|
|
11824
11938
|
"components": {
|
|
11825
11939
|
"name": "components",
|
|
11826
11940
|
"required": false,
|
|
@@ -12071,6 +12185,15 @@
|
|
|
12071
12185
|
"description": "Id of the element that describes the select trigger button",
|
|
12072
12186
|
"deprecated": false
|
|
12073
12187
|
},
|
|
12188
|
+
"ariaLabel": {
|
|
12189
|
+
"name": "ariaLabel",
|
|
12190
|
+
"required": false,
|
|
12191
|
+
"type": {
|
|
12192
|
+
"name": "string"
|
|
12193
|
+
},
|
|
12194
|
+
"description": "Aria label for the select trigger button",
|
|
12195
|
+
"deprecated": false
|
|
12196
|
+
},
|
|
12074
12197
|
"components": {
|
|
12075
12198
|
"name": "components",
|
|
12076
12199
|
"required": false,
|