@telus-uds/components-base 1.3.0 → 1.5.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/.turbo/turbo-build.log +5 -2
- package/CHANGELOG.json +82 -0
- package/CHANGELOG.md +42 -2
- package/__tests__/ActivityIndicator/ActivityIndicator.test.jsx +35 -0
- package/__tests__/ActivityIndicator/__snapshots__/ActivityIndicator.test.jsx.snap +287 -0
- package/babel.config.js +27 -5
- package/component-docs.json +121 -438
- package/lib/A11yText/index.js +5 -4
- package/lib/ActivityIndicator/Spinner.js +46 -37
- package/lib/ActivityIndicator/Spinner.native.js +26 -15
- package/lib/Box/Box.js +4 -4
- package/lib/Button/ButtonBase.js +7 -8
- package/lib/Card/Card.js +5 -4
- package/lib/Card/PressableCardBase.js +6 -11
- package/lib/Checkbox/Checkbox.js +4 -6
- package/lib/Divider/Divider.js +12 -11
- package/lib/ExpandCollapse/Control.js +7 -7
- package/lib/ExpandCollapse/ExpandCollapse.js +6 -2
- package/lib/ExpandCollapse/Panel.js +6 -7
- package/lib/Feedback/Feedback.js +6 -5
- package/lib/Fieldset/Fieldset.js +1 -3
- package/lib/HorizontalScroll/HorizontalScroll.js +5 -7
- package/lib/HorizontalScroll/HorizontalScrollButton.js +23 -49
- package/lib/IconButton/IconButton.js +6 -6
- package/lib/InputLabel/InputLabel.js +7 -2
- package/lib/InputSupports/InputSupports.js +2 -2
- package/lib/Link/LinkBase.js +5 -6
- package/lib/List/List.js +4 -6
- package/lib/List/ListItem.js +6 -2
- package/lib/Modal/Modal.js +6 -2
- package/lib/Notification/Notification.js +12 -8
- package/lib/Pagination/Pagination.js +8 -3
- package/lib/Progress/Progress.js +5 -4
- package/lib/Progress/ProgressBar.js +8 -7
- package/lib/Radio/Radio.js +4 -6
- package/lib/Radio/RadioButton.js +6 -3
- package/lib/Radio/RadioGroup.js +7 -2
- package/lib/RadioCard/RadioCard.js +4 -4
- package/lib/RadioCard/RadioCardGroup.js +9 -6
- package/lib/Search/Search.js +7 -2
- package/lib/Select/Select.js +10 -9
- package/lib/SideNav/Item.js +7 -7
- package/lib/SideNav/SideNav.js +7 -3
- package/lib/Skeleton/Skeleton.js +6 -2
- package/lib/Spacer/Spacer.js +7 -18
- package/lib/StackView/StackView.js +7 -7
- package/lib/StackView/StackWrapBox.js +6 -7
- package/lib/StackView/StackWrapGap.js +6 -5
- package/lib/StepTracker/Step.js +7 -3
- package/lib/StepTracker/StepTracker.js +7 -7
- package/lib/Tabs/Tabs.js +6 -2
- package/lib/Tabs/TabsItem.js +6 -5
- package/lib/Tags/Tags.js +5 -6
- package/lib/TextInput/TextArea.js +13 -14
- package/lib/TextInput/TextInput.js +13 -14
- package/lib/TextInput/TextInputBase.js +5 -3
- package/lib/ToggleSwitch/ToggleSwitch.js +10 -9
- package/lib/ToggleSwitch/ToggleSwitchGroup.js +5 -7
- package/lib/Tooltip/Tooltip.js +7 -2
- package/lib/TooltipButton/TooltipButton.js +7 -2
- package/lib/Typography/Typography.js +8 -6
- package/lib/index.js +7 -0
- package/lib/utils/children.js +5 -1
- package/lib/utils/index.js +14 -0
- package/lib/utils/props/index.js +9 -0
- package/lib/{InputSupports/propTypes.js → utils/props/inputSupportsProps.js} +2 -3
- package/lib/utils/ssr.js +51 -0
- package/lib-module/A11yInfoProvider/index.js +62 -0
- package/lib-module/A11yText/index.js +55 -0
- package/lib-module/ActivityIndicator/Spinner.js +76 -0
- package/lib-module/ActivityIndicator/Spinner.native.js +143 -0
- package/lib-module/ActivityIndicator/index.js +40 -0
- package/lib-module/ActivityIndicator/shared.js +12 -0
- package/lib-module/BaseProvider/index.js +26 -0
- package/lib-module/Box/Box.js +243 -0
- package/lib-module/Box/index.js +2 -0
- package/lib-module/Button/Button.js +25 -0
- package/lib-module/Button/ButtonBase.js +254 -0
- package/lib-module/Button/ButtonGroup.js +164 -0
- package/lib-module/Button/ButtonLink.js +39 -0
- package/lib-module/Button/index.js +4 -0
- package/lib-module/Button/propTypes.js +36 -0
- package/lib-module/Card/Card.js +83 -0
- package/lib-module/Card/CardBase.js +62 -0
- package/lib-module/Card/PressableCardBase.js +113 -0
- package/lib-module/Card/index.js +4 -0
- package/lib-module/Checkbox/Checkbox.js +321 -0
- package/lib-module/Checkbox/CheckboxGroup.js +218 -0
- package/lib-module/Checkbox/CheckboxInput.js +58 -0
- package/lib-module/Checkbox/CheckboxInput.native.js +6 -0
- package/lib-module/Checkbox/index.js +3 -0
- package/lib-module/Divider/Divider.js +123 -0
- package/lib-module/Divider/index.js +2 -0
- package/lib-module/ExpandCollapse/Accordion.js +15 -0
- package/lib-module/ExpandCollapse/Control.js +130 -0
- package/lib-module/ExpandCollapse/ExpandCollapse.js +94 -0
- package/lib-module/ExpandCollapse/Panel.js +158 -0
- package/lib-module/ExpandCollapse/index.js +7 -0
- package/lib-module/Feedback/Feedback.js +144 -0
- package/lib-module/Feedback/index.js +2 -0
- package/lib-module/Fieldset/Fieldset.js +145 -0
- package/lib-module/Fieldset/FieldsetContainer.js +29 -0
- package/lib-module/Fieldset/FieldsetContainer.native.js +20 -0
- package/lib-module/Fieldset/Legend.js +21 -0
- package/lib-module/Fieldset/Legend.native.js +28 -0
- package/lib-module/Fieldset/cssReset.js +14 -0
- package/lib-module/Fieldset/index.js +2 -0
- package/lib-module/FlexGrid/Col/Col.js +265 -0
- package/lib-module/FlexGrid/Col/index.js +2 -0
- package/lib-module/FlexGrid/FlexGrid.js +147 -0
- package/lib-module/FlexGrid/Row/Row.js +177 -0
- package/lib-module/FlexGrid/Row/index.js +2 -0
- package/lib-module/FlexGrid/helpers/index.js +18 -0
- package/lib-module/FlexGrid/index.js +2 -0
- package/lib-module/FlexGrid/providers/GutterContext.js +3 -0
- package/lib-module/HorizontalScroll/HorizontalScroll.js +170 -0
- package/lib-module/HorizontalScroll/HorizontalScrollButton.js +77 -0
- package/lib-module/HorizontalScroll/ScrollViewEnd.js +47 -0
- package/lib-module/HorizontalScroll/ScrollViewEnd.native.js +24 -0
- package/lib-module/HorizontalScroll/dictionary.js +11 -0
- package/lib-module/HorizontalScroll/index.js +11 -0
- package/lib-module/HorizontalScroll/itemPositions.js +106 -0
- package/lib-module/Icon/Icon.js +61 -0
- package/lib-module/Icon/IconText.js +81 -0
- package/lib-module/Icon/index.js +4 -0
- package/lib-module/IconButton/IconButton.js +115 -0
- package/lib-module/IconButton/index.js +2 -0
- package/lib-module/InputLabel/InputLabel.js +131 -0
- package/lib-module/InputLabel/LabelContent.js +24 -0
- package/lib-module/InputLabel/LabelContent.native.js +16 -0
- package/lib-module/InputLabel/index.js +2 -0
- package/lib-module/InputSupports/InputSupports.js +88 -0
- package/lib-module/InputSupports/index.js +2 -0
- package/lib-module/InputSupports/useInputSupports.js +31 -0
- package/lib-module/Link/ChevronLink.js +51 -0
- package/lib-module/Link/InlinePressable.js +37 -0
- package/lib-module/Link/InlinePressable.native.js +85 -0
- package/lib-module/Link/Link.js +27 -0
- package/lib-module/Link/LinkBase.js +210 -0
- package/lib-module/Link/TextButton.js +43 -0
- package/lib-module/Link/index.js +5 -0
- package/lib-module/List/List.js +55 -0
- package/lib-module/List/ListItem.js +213 -0
- package/lib-module/List/index.js +5 -0
- package/lib-module/Modal/Modal.js +208 -0
- package/lib-module/Modal/dictionary.js +9 -0
- package/lib-module/Modal/index.js +2 -0
- package/lib-module/Notification/Notification.js +196 -0
- package/lib-module/Notification/dictionary.js +8 -0
- package/lib-module/Notification/index.js +2 -0
- package/lib-module/Pagination/PageButton.js +65 -0
- package/lib-module/Pagination/Pagination.js +140 -0
- package/lib-module/Pagination/SideButton.js +103 -0
- package/lib-module/Pagination/dictionary.js +18 -0
- package/lib-module/Pagination/index.js +2 -0
- package/lib-module/Pagination/usePagination.js +72 -0
- package/lib-module/Progress/Progress.js +85 -0
- package/lib-module/Progress/ProgressBar.js +134 -0
- package/lib-module/Progress/ProgressBarBackground.js +41 -0
- package/lib-module/Progress/index.js +4 -0
- package/lib-module/Radio/Radio.js +263 -0
- package/lib-module/Radio/RadioButton.js +128 -0
- package/lib-module/Radio/RadioGroup.js +225 -0
- package/lib-module/Radio/RadioInput.js +60 -0
- package/lib-module/Radio/RadioInput.native.js +6 -0
- package/lib-module/Radio/index.js +3 -0
- package/lib-module/RadioCard/RadioCard.js +218 -0
- package/lib-module/RadioCard/RadioCardGroup.js +232 -0
- package/lib-module/RadioCard/index.js +3 -0
- package/lib-module/Search/Search.js +233 -0
- package/lib-module/Search/dictionary.js +12 -0
- package/lib-module/Search/index.js +2 -0
- package/lib-module/Select/Group.js +20 -0
- package/lib-module/Select/Group.native.js +14 -0
- package/lib-module/Select/Item.js +17 -0
- package/lib-module/Select/Item.native.js +9 -0
- package/lib-module/Select/Picker.js +67 -0
- package/lib-module/Select/Picker.native.js +110 -0
- package/lib-module/Select/Select.js +317 -0
- package/lib-module/Select/index.js +6 -0
- package/lib-module/SideNav/Item.js +139 -0
- package/lib-module/SideNav/ItemContent.js +45 -0
- package/lib-module/SideNav/ItemsGroup.js +115 -0
- package/lib-module/SideNav/SideNav.js +133 -0
- package/lib-module/SideNav/index.js +1 -0
- package/lib-module/Skeleton/Skeleton.js +117 -0
- package/lib-module/Skeleton/index.js +2 -0
- package/lib-module/Skeleton/skeleton.constant.js +3 -0
- package/lib-module/Skeleton/skeletonWebAnimation.js +18 -0
- package/lib-module/Skeleton/useSkeletonNativeAnimation.js +24 -0
- package/lib-module/Spacer/Spacer.js +97 -0
- package/lib-module/Spacer/index.js +2 -0
- package/lib-module/StackView/StackView.js +124 -0
- package/lib-module/StackView/StackWrap.js +48 -0
- package/lib-module/StackView/StackWrap.native.js +3 -0
- package/lib-module/StackView/StackWrapBox.js +114 -0
- package/lib-module/StackView/StackWrapGap.js +58 -0
- package/lib-module/StackView/common.js +32 -0
- package/lib-module/StackView/getStackedContent.js +123 -0
- package/lib-module/StackView/index.js +5 -0
- package/lib-module/StepTracker/Step.js +229 -0
- package/lib-module/StepTracker/StepTracker.js +175 -0
- package/lib-module/StepTracker/dictionary.js +10 -0
- package/lib-module/StepTracker/index.js +2 -0
- package/lib-module/Tabs/Tabs.js +113 -0
- package/lib-module/Tabs/TabsItem.js +215 -0
- package/lib-module/Tabs/index.js +2 -0
- package/lib-module/Tags/Tags.js +238 -0
- package/lib-module/Tags/index.js +2 -0
- package/lib-module/TextInput/TextArea.js +88 -0
- package/lib-module/TextInput/TextInput.js +60 -0
- package/lib-module/TextInput/TextInputBase.js +233 -0
- package/lib-module/TextInput/index.js +3 -0
- package/lib-module/TextInput/propTypes.js +31 -0
- package/lib-module/ThemeProvider/ThemeProvider.js +35 -0
- package/lib-module/ThemeProvider/index.js +6 -0
- package/lib-module/ThemeProvider/useSetTheme.js +22 -0
- package/lib-module/ThemeProvider/useTheme.js +14 -0
- package/lib-module/ThemeProvider/useThemeTokens.js +105 -0
- package/lib-module/ThemeProvider/utils/index.js +2 -0
- package/lib-module/ThemeProvider/utils/styles.js +174 -0
- package/lib-module/ThemeProvider/utils/theme-tokens.js +151 -0
- package/lib-module/ToggleSwitch/ToggleSwitch.js +224 -0
- package/lib-module/ToggleSwitch/ToggleSwitchGroup.js +202 -0
- package/lib-module/ToggleSwitch/index.js +3 -0
- package/lib-module/Tooltip/Backdrop.js +52 -0
- package/lib-module/Tooltip/Backdrop.native.js +43 -0
- package/lib-module/Tooltip/Tooltip.js +332 -0
- package/lib-module/Tooltip/dictionary.js +8 -0
- package/lib-module/Tooltip/getTooltipPosition.js +164 -0
- package/lib-module/Tooltip/index.js +2 -0
- package/lib-module/TooltipButton/TooltipButton.js +71 -0
- package/lib-module/TooltipButton/index.js +2 -0
- package/lib-module/Typography/Typography.js +118 -0
- package/lib-module/Typography/index.js +2 -0
- package/lib-module/ViewportProvider/ViewportProvider.js +28 -0
- package/lib-module/ViewportProvider/index.js +3 -0
- package/lib-module/ViewportProvider/useViewport.js +3 -0
- package/lib-module/ViewportProvider/useViewportListener.js +43 -0
- package/lib-module/index.js +48 -0
- package/lib-module/utils/a11y/index.js +2 -0
- package/lib-module/utils/a11y/semantics.js +154 -0
- package/lib-module/utils/a11y/textSize.js +34 -0
- package/lib-module/utils/animation/index.js +2 -0
- package/lib-module/utils/animation/useVerticalExpandAnimation.js +49 -0
- package/lib-module/utils/children.js +118 -0
- package/lib-module/utils/index.js +15 -0
- package/lib-module/utils/info/index.js +7 -0
- package/lib-module/utils/info/platform/index.js +11 -0
- package/lib-module/utils/info/platform/platform.android.js +1 -0
- package/lib-module/utils/info/platform/platform.ios.js +1 -0
- package/lib-module/utils/info/platform/platform.js +1 -0
- package/lib-module/utils/info/platform/platform.native.js +4 -0
- package/lib-module/utils/info/versions.js +5 -0
- package/lib-module/utils/input.js +180 -0
- package/lib-module/utils/pressability.js +97 -0
- package/lib-module/utils/props/a11yProps.js +140 -0
- package/lib-module/utils/props/clickProps.js +25 -0
- package/lib-module/utils/props/componentPropType.js +63 -0
- package/lib-module/utils/props/copyPropTypes.js +2 -0
- package/lib-module/utils/props/getPropSelector.js +6 -0
- package/lib-module/utils/props/hrefAttrsProp.js +30 -0
- package/lib-module/utils/props/index.js +16 -0
- package/lib-module/utils/props/inputSupportsProps.js +54 -0
- package/lib-module/utils/props/linkProps.js +47 -0
- package/lib-module/utils/props/paddingProp.js +9 -0
- package/lib-module/utils/props/pressProps.js +42 -0
- package/lib-module/utils/props/rectProp.js +9 -0
- package/lib-module/utils/props/responsiveProps.js +30 -0
- package/lib-module/utils/props/selectSystemProps.js +24 -0
- package/lib-module/utils/props/spacingProps.js +56 -0
- package/lib-module/utils/props/tokens.js +120 -0
- package/lib-module/utils/props/variantProp.js +18 -0
- package/lib-module/utils/props/viewProps.js +22 -0
- package/lib-module/utils/ssr.js +35 -0
- package/lib-module/utils/useCopy.js +42 -0
- package/lib-module/utils/useHash.js +44 -0
- package/lib-module/utils/useHash.native.js +7 -0
- package/lib-module/utils/useResponsiveProp.js +47 -0
- package/lib-module/utils/useSpacingScale.js +123 -0
- package/lib-module/utils/useUniqueId.js +12 -0
- package/lib-module/utils/withLinkRouter.js +82 -0
- package/package.json +9 -5
- package/src/A11yText/index.jsx +7 -3
- package/src/ActivityIndicator/Spinner.jsx +56 -44
- package/src/ActivityIndicator/Spinner.native.jsx +20 -12
- package/src/Box/Box.jsx +10 -9
- package/src/Button/ButtonBase.jsx +9 -8
- package/src/Card/Card.jsx +7 -4
- package/src/Card/PressableCardBase.jsx +12 -12
- package/src/Checkbox/Checkbox.jsx +12 -5
- package/src/Divider/Divider.jsx +17 -10
- package/src/ExpandCollapse/Control.jsx +12 -7
- package/src/ExpandCollapse/ExpandCollapse.jsx +13 -3
- package/src/ExpandCollapse/Panel.jsx +15 -5
- package/src/Feedback/Feedback.jsx +13 -3
- package/src/Fieldset/Fieldset.jsx +1 -1
- package/src/HorizontalScroll/HorizontalScroll.jsx +13 -6
- package/src/HorizontalScroll/HorizontalScrollButton.jsx +21 -58
- package/src/IconButton/IconButton.jsx +12 -8
- package/src/InputLabel/InputLabel.jsx +16 -2
- package/src/InputSupports/InputSupports.jsx +1 -1
- package/src/Link/LinkBase.jsx +10 -9
- package/src/List/List.jsx +12 -5
- package/src/List/ListItem.jsx +16 -2
- package/src/Modal/Modal.jsx +63 -50
- package/src/Notification/Notification.jsx +23 -6
- package/src/Pagination/Pagination.jsx +10 -3
- package/src/Progress/Progress.jsx +5 -3
- package/src/Progress/ProgressBar.jsx +8 -6
- package/src/Radio/Radio.jsx +13 -5
- package/src/Radio/RadioButton.jsx +13 -3
- package/src/Radio/RadioGroup.jsx +14 -2
- package/src/RadioCard/RadioCard.jsx +9 -6
- package/src/RadioCard/RadioCardGroup.jsx +16 -4
- package/src/Search/Search.jsx +15 -3
- package/src/Select/Select.jsx +21 -7
- package/src/SideNav/Item.jsx +15 -7
- package/src/SideNav/SideNav.jsx +13 -2
- package/src/Skeleton/Skeleton.jsx +55 -43
- package/src/Spacer/Spacer.jsx +8 -16
- package/src/StackView/StackView.jsx +13 -12
- package/src/StackView/StackWrapBox.jsx +12 -12
- package/src/StackView/StackWrapGap.jsx +9 -7
- package/src/StepTracker/Step.jsx +7 -4
- package/src/StepTracker/StepTracker.jsx +8 -8
- package/src/Tabs/Tabs.jsx +16 -3
- package/src/Tabs/TabsItem.jsx +13 -9
- package/src/Tags/Tags.jsx +20 -5
- package/src/TextInput/TextArea.jsx +20 -8
- package/src/TextInput/TextInput.jsx +20 -8
- package/src/TextInput/TextInputBase.jsx +13 -3
- package/src/ToggleSwitch/ToggleSwitch.jsx +16 -5
- package/src/ToggleSwitch/ToggleSwitchGroup.jsx +14 -6
- package/src/Tooltip/Tooltip.jsx +13 -3
- package/src/TooltipButton/TooltipButton.jsx +6 -4
- package/src/Typography/Typography.jsx +10 -6
- package/src/index.js +1 -1
- package/src/utils/children.jsx +2 -1
- package/src/utils/index.js +1 -0
- package/src/utils/props/index.js +1 -0
- package/src/{InputSupports/propTypes.js → utils/props/inputSupportsProps.js} +2 -4
- package/src/utils/ssr.js +35 -0
- package/release-context.json +0 -7
package/component-docs.json
CHANGED
|
@@ -110,7 +110,8 @@
|
|
|
110
110
|
"rightIcon": "icon",
|
|
111
111
|
"iconDisplace": "size",
|
|
112
112
|
"iconSize": "size",
|
|
113
|
-
"iconSpace": "integer"
|
|
113
|
+
"iconSpace": "integer",
|
|
114
|
+
"textLine": "textLine"
|
|
114
115
|
},
|
|
115
116
|
"CheckboxGroup": {
|
|
116
117
|
"space": "integer",
|
|
@@ -171,14 +172,20 @@
|
|
|
171
172
|
"iconGap": "size"
|
|
172
173
|
},
|
|
173
174
|
"HorizontalScrollButton": {
|
|
174
|
-
"borderRadius": "radius",
|
|
175
175
|
"backgroundColor": "color",
|
|
176
|
+
"borderRadius": "radius",
|
|
176
177
|
"borderColor": "color",
|
|
177
178
|
"borderWidth": "border",
|
|
178
|
-
"
|
|
179
|
-
"shadow": "shadow",
|
|
179
|
+
"iconColor": "color",
|
|
180
180
|
"iconSize": "size",
|
|
181
|
-
"
|
|
181
|
+
"iconScale": "iconScale",
|
|
182
|
+
"iconTranslateX": "size",
|
|
183
|
+
"iconTranslateY": "size",
|
|
184
|
+
"outerBorderWidth": "border",
|
|
185
|
+
"outerBorderColor": "color",
|
|
186
|
+
"outerBorderGap": "size",
|
|
187
|
+
"padding": "size",
|
|
188
|
+
"shadow": "shadow"
|
|
182
189
|
},
|
|
183
190
|
"Icon": {
|
|
184
191
|
"size": "size",
|
|
@@ -1744,52 +1751,6 @@
|
|
|
1744
1751
|
"required": false,
|
|
1745
1752
|
"description": "Sets right padding using the theme's spacing scale.\n\n@see {@link SpacingValue}"
|
|
1746
1753
|
},
|
|
1747
|
-
"pointerEvents": {
|
|
1748
|
-
"type": {
|
|
1749
|
-
"name": "enum",
|
|
1750
|
-
"value": [
|
|
1751
|
-
{
|
|
1752
|
-
"value": "'all'",
|
|
1753
|
-
"computed": false
|
|
1754
|
-
},
|
|
1755
|
-
{
|
|
1756
|
-
"value": "'none'",
|
|
1757
|
-
"computed": false
|
|
1758
|
-
},
|
|
1759
|
-
{
|
|
1760
|
-
"value": "'box-only'",
|
|
1761
|
-
"computed": false
|
|
1762
|
-
},
|
|
1763
|
-
{
|
|
1764
|
-
"value": "'box-none'",
|
|
1765
|
-
"computed": false
|
|
1766
|
-
}
|
|
1767
|
-
]
|
|
1768
|
-
},
|
|
1769
|
-
"required": false,
|
|
1770
|
-
"description": ""
|
|
1771
|
-
},
|
|
1772
|
-
"onLayout": {
|
|
1773
|
-
"type": {
|
|
1774
|
-
"name": "func"
|
|
1775
|
-
},
|
|
1776
|
-
"required": false,
|
|
1777
|
-
"description": ""
|
|
1778
|
-
},
|
|
1779
|
-
"nativeID": {
|
|
1780
|
-
"type": {
|
|
1781
|
-
"name": "string"
|
|
1782
|
-
},
|
|
1783
|
-
"required": false,
|
|
1784
|
-
"description": ""
|
|
1785
|
-
},
|
|
1786
|
-
"testID": {
|
|
1787
|
-
"type": {
|
|
1788
|
-
"name": "string"
|
|
1789
|
-
},
|
|
1790
|
-
"required": false,
|
|
1791
|
-
"description": "Use in tests if the box itself needs to be targetted and no other way of selecting the\nbox is available (e.g. it cannot be targetted using an appropriate `accessibilityRole`)."
|
|
1792
|
-
},
|
|
1793
1754
|
"variant": {
|
|
1794
1755
|
"type": {
|
|
1795
1756
|
"name": "objectOf",
|
|
@@ -1946,6 +1907,13 @@
|
|
|
1946
1907
|
"required": false,
|
|
1947
1908
|
"description": "Optional semantic HTML tag, to apply to the container on web. Does not change styling.\n\nIn native apps, if a header tag is provided (\"h1\", \"h2\" etc) and accessibilityRole prop\nis not defined, the accessibilityRole will default to \"heading\"."
|
|
1948
1909
|
},
|
|
1910
|
+
"testID": {
|
|
1911
|
+
"type": {
|
|
1912
|
+
"name": "string"
|
|
1913
|
+
},
|
|
1914
|
+
"required": false,
|
|
1915
|
+
"description": "Use in tests if the box itself needs to be targetted and no other way of selecting the\nbox is available (e.g. it cannot be targetted using an appropriate `accessibilityRole`)."
|
|
1916
|
+
},
|
|
1949
1917
|
"children": {
|
|
1950
1918
|
"type": {
|
|
1951
1919
|
"name": "node"
|
|
@@ -2013,7 +1981,7 @@
|
|
|
2013
1981
|
}
|
|
2014
1982
|
},
|
|
2015
1983
|
"attributes": {
|
|
2016
|
-
"acceptsRNA11yProps":
|
|
1984
|
+
"acceptsRNA11yProps": false
|
|
2017
1985
|
}
|
|
2018
1986
|
}
|
|
2019
1987
|
},
|
|
@@ -2021,6 +1989,13 @@
|
|
|
2021
1989
|
"docs": {
|
|
2022
1990
|
"description": "A pressable themeless base component that handles pressable states and passes tokens\nbased on these to an outer border and a base Card component. Not intended to be used in\napps or sites directly: build themed components on top of this.",
|
|
2023
1991
|
"props": {
|
|
1992
|
+
"accessibilityRole": {
|
|
1993
|
+
"defaultValue": {
|
|
1994
|
+
"value": "href ? 'link' : undefined",
|
|
1995
|
+
"computed": false
|
|
1996
|
+
},
|
|
1997
|
+
"required": false
|
|
1998
|
+
},
|
|
2024
1999
|
"children": {
|
|
2025
2000
|
"type": {
|
|
2026
2001
|
"name": "union",
|
|
@@ -2067,7 +2042,7 @@
|
|
|
2067
2042
|
}
|
|
2068
2043
|
},
|
|
2069
2044
|
"attributes": {
|
|
2070
|
-
"acceptsRNA11yProps":
|
|
2045
|
+
"acceptsRNA11yProps": false
|
|
2071
2046
|
}
|
|
2072
2047
|
}
|
|
2073
2048
|
},
|
|
@@ -3928,7 +3903,7 @@
|
|
|
3928
3903
|
},
|
|
3929
3904
|
"HorizontalScroll": {
|
|
3930
3905
|
"docs": {
|
|
3931
|
-
"description": "Base component that scrolls horizontally and displays left and right buttons if\nthere is content to the left and the right which can be scrolled to.\n\n@TODO
|
|
3906
|
+
"description": "Base component that scrolls horizontally and displays left and right buttons if\nthere is content to the left and the right which can be scrolled to.\n\n@TODO revisit `ScrollButton` after IconButton is stable.",
|
|
3932
3907
|
"props": {
|
|
3933
3908
|
"itemPositions": {
|
|
3934
3909
|
"type": {
|
|
@@ -4078,6 +4053,13 @@
|
|
|
4078
4053
|
"docs": {
|
|
4079
4054
|
"description": "A pressable themeless base component that handles pressable states and passes tokens\nbased on these to an outer border and a base Card component. Not intended to be used in\napps or sites directly: build themed components on top of this.",
|
|
4080
4055
|
"props": {
|
|
4056
|
+
"accessibilityRole": {
|
|
4057
|
+
"defaultValue": {
|
|
4058
|
+
"value": "href ? 'link' : 'button'",
|
|
4059
|
+
"computed": false
|
|
4060
|
+
},
|
|
4061
|
+
"required": false
|
|
4062
|
+
},
|
|
4081
4063
|
"variant": {
|
|
4082
4064
|
"type": {
|
|
4083
4065
|
"name": "objectOf",
|
|
@@ -4184,7 +4166,7 @@
|
|
|
4184
4166
|
}
|
|
4185
4167
|
},
|
|
4186
4168
|
"attributes": {
|
|
4187
|
-
"acceptsRNA11yProps":
|
|
4169
|
+
"acceptsRNA11yProps": false
|
|
4188
4170
|
}
|
|
4189
4171
|
}
|
|
4190
4172
|
},
|
|
@@ -4363,7 +4345,7 @@
|
|
|
4363
4345
|
}
|
|
4364
4346
|
},
|
|
4365
4347
|
"attributes": {
|
|
4366
|
-
"acceptsRNA11yProps":
|
|
4348
|
+
"acceptsRNA11yProps": false
|
|
4367
4349
|
}
|
|
4368
4350
|
},
|
|
4369
4351
|
"Item": {
|
|
@@ -4605,7 +4587,7 @@
|
|
|
4605
4587
|
}
|
|
4606
4588
|
},
|
|
4607
4589
|
"attributes": {
|
|
4608
|
-
"acceptsRNA11yProps":
|
|
4590
|
+
"acceptsRNA11yProps": false
|
|
4609
4591
|
}
|
|
4610
4592
|
},
|
|
4611
4593
|
"Item": {
|
|
@@ -5864,68 +5846,6 @@
|
|
|
5864
5846
|
"docs": {
|
|
5865
5847
|
"description": "A basic form single-choice select component. Use in forms or individually to receive user's input.\n\n## Usage criteria\n- Include a `placeholder` to provide instructions such as \"Please select...\" as an unselectable option (recommended)\n- Use when options are between 7-15 (recommended)\n- For options are 6 and under, use `Radio` groups or `ButtonGroup`.\n- For options 15 and above, look for alternatives (e.g grouping into categories, or input field with auto-complete etc.)\n\n## Controlled component\nIf it is required that the state of the `Select` be controlled by the application or other external methods,\n`value` and `onChange` props must be passed to the `Select`.\nIf the `Select` value should not be changed by user input, a `readOnly` prop must be provided.\n\n## Uncontrolled component\nIf it is not necessary to control the `Select` state, you can create one without a value prop.\nIn this case its value can be accessed within the `onChange` callback. Use the `initialValue` prop to set the\ndefault value for an uncontrolled `Select`.\n\n## Getting feedback for entered values\nUse the `feedback` prop to give the user feedback regarding their selection.\nYou can affirm that the user's selection was correct, or highlight errors that must be corrected, using the `validation` prop.\nKeep feedback text as brief as possible, should be limited to text and links.\n\n## Using a tooltip\nWhen a more in-depth explanation is needed to fill out a `Select` properly, the tooltip prop may be used.\n\n## Grouping options\n`Select` supports option groups. Use a `Select.Group` component to render an `<optgroup>` element with its items.\nNOTE: this does not work on native platforms - the grouped items will be shown at the same level as the non-grouped items.",
|
|
5866
5848
|
"props": {
|
|
5867
|
-
"label": {
|
|
5868
|
-
"type": {
|
|
5869
|
-
"name": "string"
|
|
5870
|
-
},
|
|
5871
|
-
"required": false,
|
|
5872
|
-
"description": "The input label."
|
|
5873
|
-
},
|
|
5874
|
-
"hint": {
|
|
5875
|
-
"type": {
|
|
5876
|
-
"name": "string"
|
|
5877
|
-
},
|
|
5878
|
-
"required": false,
|
|
5879
|
-
"description": "A short description of the expected input."
|
|
5880
|
-
},
|
|
5881
|
-
"hintPosition": {
|
|
5882
|
-
"type": {
|
|
5883
|
-
"name": "enum",
|
|
5884
|
-
"value": [
|
|
5885
|
-
{
|
|
5886
|
-
"value": "'inline'",
|
|
5887
|
-
"computed": false
|
|
5888
|
-
},
|
|
5889
|
-
{
|
|
5890
|
-
"value": "'below'",
|
|
5891
|
-
"computed": false
|
|
5892
|
-
}
|
|
5893
|
-
]
|
|
5894
|
-
},
|
|
5895
|
-
"required": false,
|
|
5896
|
-
"description": "Position of the hint relative to label. Use `below` to display a larger hint below the label."
|
|
5897
|
-
},
|
|
5898
|
-
"feedback": {
|
|
5899
|
-
"type": {
|
|
5900
|
-
"name": "string"
|
|
5901
|
-
},
|
|
5902
|
-
"required": false,
|
|
5903
|
-
"description": "A detailed description of validation error/success or additional instructions.\nVisual variant is determined based on the `validation` prop."
|
|
5904
|
-
},
|
|
5905
|
-
"tooltip": {
|
|
5906
|
-
"type": {
|
|
5907
|
-
"name": "string"
|
|
5908
|
-
},
|
|
5909
|
-
"required": false,
|
|
5910
|
-
"description": "Content of an optional `Tooltip`. If set, a tooltip button will be shown next to the label."
|
|
5911
|
-
},
|
|
5912
|
-
"validation": {
|
|
5913
|
-
"type": {
|
|
5914
|
-
"name": "enum",
|
|
5915
|
-
"value": [
|
|
5916
|
-
{
|
|
5917
|
-
"value": "'error'",
|
|
5918
|
-
"computed": false
|
|
5919
|
-
},
|
|
5920
|
-
{
|
|
5921
|
-
"value": "'success'",
|
|
5922
|
-
"computed": false
|
|
5923
|
-
}
|
|
5924
|
-
]
|
|
5925
|
-
},
|
|
5926
|
-
"required": false,
|
|
5927
|
-
"description": "Use to visually mark an input as valid or invalid."
|
|
5928
|
-
},
|
|
5929
5849
|
"initialValue": {
|
|
5930
5850
|
"type": {
|
|
5931
5851
|
"name": "string"
|
|
@@ -6208,6 +6128,13 @@
|
|
|
6208
6128
|
"docs": {
|
|
6209
6129
|
"description": "`SideNav.Item` is a navigational element that is used within `SideNav` or `SideNav.ItemsGroup`.\n\n This component can only be accessed as a name-spaced component: `SideNav.Item`.",
|
|
6210
6130
|
"props": {
|
|
6131
|
+
"accessibilityRole": {
|
|
6132
|
+
"defaultValue": {
|
|
6133
|
+
"value": "'link'",
|
|
6134
|
+
"computed": false
|
|
6135
|
+
},
|
|
6136
|
+
"required": false
|
|
6137
|
+
},
|
|
6211
6138
|
"children": {
|
|
6212
6139
|
"type": {
|
|
6213
6140
|
"name": "node"
|
|
@@ -6318,7 +6245,7 @@
|
|
|
6318
6245
|
}
|
|
6319
6246
|
},
|
|
6320
6247
|
"attributes": {
|
|
6321
|
-
"acceptsRNA11yProps":
|
|
6248
|
+
"acceptsRNA11yProps": false
|
|
6322
6249
|
}
|
|
6323
6250
|
}
|
|
6324
6251
|
},
|
|
@@ -6600,59 +6527,6 @@
|
|
|
6600
6527
|
"required": false,
|
|
6601
6528
|
"description": "Sets the `flexDirection` of the container and, if `divider` is used, gives the Divider the appropriate direction."
|
|
6602
6529
|
},
|
|
6603
|
-
"pointerEvents": {
|
|
6604
|
-
"type": {
|
|
6605
|
-
"name": "enum",
|
|
6606
|
-
"value": [
|
|
6607
|
-
{
|
|
6608
|
-
"value": "'all'",
|
|
6609
|
-
"computed": false
|
|
6610
|
-
},
|
|
6611
|
-
{
|
|
6612
|
-
"value": "'none'",
|
|
6613
|
-
"computed": false
|
|
6614
|
-
},
|
|
6615
|
-
{
|
|
6616
|
-
"value": "'box-only'",
|
|
6617
|
-
"computed": false
|
|
6618
|
-
},
|
|
6619
|
-
{
|
|
6620
|
-
"value": "'box-none'",
|
|
6621
|
-
"computed": false
|
|
6622
|
-
}
|
|
6623
|
-
]
|
|
6624
|
-
},
|
|
6625
|
-
"required": false,
|
|
6626
|
-
"description": ""
|
|
6627
|
-
},
|
|
6628
|
-
"onLayout": {
|
|
6629
|
-
"type": {
|
|
6630
|
-
"name": "func"
|
|
6631
|
-
},
|
|
6632
|
-
"required": false,
|
|
6633
|
-
"description": ""
|
|
6634
|
-
},
|
|
6635
|
-
"nativeID": {
|
|
6636
|
-
"type": {
|
|
6637
|
-
"name": "string"
|
|
6638
|
-
},
|
|
6639
|
-
"required": false,
|
|
6640
|
-
"description": ""
|
|
6641
|
-
},
|
|
6642
|
-
"testID": {
|
|
6643
|
-
"type": {
|
|
6644
|
-
"name": "string"
|
|
6645
|
-
},
|
|
6646
|
-
"required": false,
|
|
6647
|
-
"description": ""
|
|
6648
|
-
},
|
|
6649
|
-
"dataSet": {
|
|
6650
|
-
"type": {
|
|
6651
|
-
"name": "object"
|
|
6652
|
-
},
|
|
6653
|
-
"required": false,
|
|
6654
|
-
"description": ""
|
|
6655
|
-
},
|
|
6656
6530
|
"tokens": {
|
|
6657
6531
|
"type": {
|
|
6658
6532
|
"name": "custom",
|
|
@@ -6716,11 +6590,6 @@
|
|
|
6716
6590
|
"name": "bool",
|
|
6717
6591
|
"description": "By default, the divider is a horizontal line the full width of its parent.\nWith `vertical` prop and when inside a container with { flexDirection: row }, draws a full height vertical line.",
|
|
6718
6592
|
"required": false
|
|
6719
|
-
},
|
|
6720
|
-
"testID": {
|
|
6721
|
-
"name": "string",
|
|
6722
|
-
"description": "@ignore\nIn tests, the only way to select dividers is with testID prop and getByTestId, since they have no content,\nno accessibility role on native, and there is no equivalent of nextSibling in React Native Testing Library.",
|
|
6723
|
-
"required": false
|
|
6724
6593
|
}
|
|
6725
6594
|
}
|
|
6726
6595
|
}
|
|
@@ -7106,14 +6975,20 @@
|
|
|
7106
6975
|
"type": {
|
|
7107
6976
|
"name": "custom",
|
|
7108
6977
|
"raw": {
|
|
7109
|
-
"borderRadius": "radius",
|
|
7110
6978
|
"backgroundColor": "color",
|
|
6979
|
+
"borderRadius": "radius",
|
|
7111
6980
|
"borderColor": "color",
|
|
7112
6981
|
"borderWidth": "border",
|
|
7113
|
-
"
|
|
7114
|
-
"shadow": "shadow",
|
|
6982
|
+
"iconColor": "color",
|
|
7115
6983
|
"iconSize": "size",
|
|
7116
|
-
"
|
|
6984
|
+
"iconScale": "iconScale",
|
|
6985
|
+
"iconTranslateX": "size",
|
|
6986
|
+
"iconTranslateY": "size",
|
|
6987
|
+
"outerBorderWidth": "border",
|
|
6988
|
+
"outerBorderColor": "color",
|
|
6989
|
+
"outerBorderGap": "size",
|
|
6990
|
+
"padding": "size",
|
|
6991
|
+
"shadow": "shadow"
|
|
7117
6992
|
}
|
|
7118
6993
|
},
|
|
7119
6994
|
"required": false,
|
|
@@ -7566,6 +7441,13 @@
|
|
|
7566
7441
|
"required": false,
|
|
7567
7442
|
"description": "Optional semantic HTML tag, to apply to the text on web. Does not change styling.\n\n`tag` and `heading` props set the same thing, so shouldn't be used together (`tag` overrides `heading`).\n\nIn native apps, if a header tag is provided (\"h1\", \"h2\" etc) and accessibilityRole prop\nis not defined, the accessibilityRole will default to \"heading\"."
|
|
7568
7443
|
},
|
|
7444
|
+
"accessibilityRole": {
|
|
7445
|
+
"defaultValue": {
|
|
7446
|
+
"value": "heading === true ? 'header' : undefined",
|
|
7447
|
+
"computed": false
|
|
7448
|
+
},
|
|
7449
|
+
"required": false
|
|
7450
|
+
},
|
|
7569
7451
|
"block": {
|
|
7570
7452
|
"defaultValue": {
|
|
7571
7453
|
"value": "false",
|
|
@@ -7694,7 +7576,7 @@
|
|
|
7694
7576
|
}
|
|
7695
7577
|
},
|
|
7696
7578
|
"attributes": {
|
|
7697
|
-
"acceptsRNA11yProps":
|
|
7579
|
+
"acceptsRNA11yProps": false
|
|
7698
7580
|
}
|
|
7699
7581
|
}
|
|
7700
7582
|
},
|
|
@@ -8408,14 +8290,20 @@
|
|
|
8408
8290
|
"type": {
|
|
8409
8291
|
"name": "custom",
|
|
8410
8292
|
"raw": {
|
|
8411
|
-
"borderRadius": "radius",
|
|
8412
8293
|
"backgroundColor": "color",
|
|
8294
|
+
"borderRadius": "radius",
|
|
8413
8295
|
"borderColor": "color",
|
|
8414
8296
|
"borderWidth": "border",
|
|
8415
|
-
"
|
|
8416
|
-
"shadow": "shadow",
|
|
8297
|
+
"iconColor": "color",
|
|
8417
8298
|
"iconSize": "size",
|
|
8418
|
-
"
|
|
8299
|
+
"iconScale": "iconScale",
|
|
8300
|
+
"iconTranslateX": "size",
|
|
8301
|
+
"iconTranslateY": "size",
|
|
8302
|
+
"outerBorderWidth": "border",
|
|
8303
|
+
"outerBorderColor": "color",
|
|
8304
|
+
"outerBorderGap": "size",
|
|
8305
|
+
"padding": "size",
|
|
8306
|
+
"shadow": "shadow"
|
|
8419
8307
|
}
|
|
8420
8308
|
},
|
|
8421
8309
|
"required": false,
|
|
@@ -8696,81 +8584,14 @@
|
|
|
8696
8584
|
"required": false,
|
|
8697
8585
|
"description": ""
|
|
8698
8586
|
},
|
|
8699
|
-
"
|
|
8700
|
-
"
|
|
8701
|
-
"
|
|
8702
|
-
|
|
8703
|
-
"required": false,
|
|
8704
|
-
"description": ""
|
|
8705
|
-
},
|
|
8706
|
-
"onPressIn": {
|
|
8707
|
-
"type": {
|
|
8708
|
-
"name": "func"
|
|
8587
|
+
"accessibilityRole": {
|
|
8588
|
+
"defaultValue": {
|
|
8589
|
+
"value": "'link'",
|
|
8590
|
+
"computed": false
|
|
8709
8591
|
},
|
|
8710
|
-
"required": false
|
|
8711
|
-
"description": ""
|
|
8592
|
+
"required": false
|
|
8712
8593
|
},
|
|
8713
|
-
"
|
|
8714
|
-
"type": {
|
|
8715
|
-
"name": "func"
|
|
8716
|
-
},
|
|
8717
|
-
"required": false,
|
|
8718
|
-
"description": ""
|
|
8719
|
-
},
|
|
8720
|
-
"disabled": {
|
|
8721
|
-
"type": {
|
|
8722
|
-
"name": "bool"
|
|
8723
|
-
},
|
|
8724
|
-
"required": false,
|
|
8725
|
-
"description": ""
|
|
8726
|
-
},
|
|
8727
|
-
"href": {
|
|
8728
|
-
"type": {
|
|
8729
|
-
"name": "string"
|
|
8730
|
-
},
|
|
8731
|
-
"required": false,
|
|
8732
|
-
"description": ""
|
|
8733
|
-
},
|
|
8734
|
-
"hrefAttrs": {
|
|
8735
|
-
"type": {
|
|
8736
|
-
"name": "shape",
|
|
8737
|
-
"value": {
|
|
8738
|
-
"download": {
|
|
8739
|
-
"name": "string",
|
|
8740
|
-
"required": false
|
|
8741
|
-
},
|
|
8742
|
-
"rel": {
|
|
8743
|
-
"name": "string",
|
|
8744
|
-
"required": false
|
|
8745
|
-
},
|
|
8746
|
-
"target": {
|
|
8747
|
-
"name": "enum",
|
|
8748
|
-
"value": [
|
|
8749
|
-
{
|
|
8750
|
-
"value": "'_self'",
|
|
8751
|
-
"computed": false
|
|
8752
|
-
},
|
|
8753
|
-
{
|
|
8754
|
-
"value": "'_blank'",
|
|
8755
|
-
"computed": false
|
|
8756
|
-
},
|
|
8757
|
-
{
|
|
8758
|
-
"value": "'_parent'",
|
|
8759
|
-
"computed": false
|
|
8760
|
-
},
|
|
8761
|
-
{
|
|
8762
|
-
"value": "'_top'",
|
|
8763
|
-
"computed": false
|
|
8764
|
-
}
|
|
8765
|
-
],
|
|
8766
|
-
"required": false
|
|
8767
|
-
}
|
|
8768
|
-
}
|
|
8769
|
-
},
|
|
8770
|
-
"required": false,
|
|
8771
|
-
"description": "On Web if href is passed, React Native Web maps this object's props to\n`rel`, `target` and `download` attrs."
|
|
8772
|
-
},
|
|
8773
|
-
"variant": {
|
|
8594
|
+
"variant": {
|
|
8774
8595
|
"type": {
|
|
8775
8596
|
"name": "objectOf",
|
|
8776
8597
|
"value": {
|
|
@@ -8826,10 +8647,49 @@
|
|
|
8826
8647
|
},
|
|
8827
8648
|
"required": false,
|
|
8828
8649
|
"description": "A function component for an SVG icon to render inside the link. Inherits size and color from\nthe link and any Typography the link is nested inside."
|
|
8650
|
+
},
|
|
8651
|
+
"hrefAttrs": {
|
|
8652
|
+
"type": {
|
|
8653
|
+
"name": "shape",
|
|
8654
|
+
"value": {
|
|
8655
|
+
"download": {
|
|
8656
|
+
"name": "string",
|
|
8657
|
+
"required": false
|
|
8658
|
+
},
|
|
8659
|
+
"rel": {
|
|
8660
|
+
"name": "string",
|
|
8661
|
+
"required": false
|
|
8662
|
+
},
|
|
8663
|
+
"target": {
|
|
8664
|
+
"name": "enum",
|
|
8665
|
+
"value": [
|
|
8666
|
+
{
|
|
8667
|
+
"value": "'_self'",
|
|
8668
|
+
"computed": false
|
|
8669
|
+
},
|
|
8670
|
+
{
|
|
8671
|
+
"value": "'_blank'",
|
|
8672
|
+
"computed": false
|
|
8673
|
+
},
|
|
8674
|
+
{
|
|
8675
|
+
"value": "'_parent'",
|
|
8676
|
+
"computed": false
|
|
8677
|
+
},
|
|
8678
|
+
{
|
|
8679
|
+
"value": "'_top'",
|
|
8680
|
+
"computed": false
|
|
8681
|
+
}
|
|
8682
|
+
],
|
|
8683
|
+
"required": false
|
|
8684
|
+
}
|
|
8685
|
+
}
|
|
8686
|
+
},
|
|
8687
|
+
"required": false,
|
|
8688
|
+
"description": "On Web if href is passed, React Native Web maps this object's props to\n`rel`, `target` and `download` attrs."
|
|
8829
8689
|
}
|
|
8830
8690
|
},
|
|
8831
8691
|
"attributes": {
|
|
8832
|
-
"acceptsRNA11yProps":
|
|
8692
|
+
"acceptsRNA11yProps": false
|
|
8833
8693
|
}
|
|
8834
8694
|
}
|
|
8835
8695
|
},
|
|
@@ -9265,59 +9125,6 @@
|
|
|
9265
9125
|
"docs": {
|
|
9266
9126
|
"description": "StackWrap is an alternative to StackView where the spaced items are allowed to wrap.\n\nAs well as providing space between the items, StackWrap provides `gap` space between\nwrapped lines of items. By default, this `gap` is the same as the gap between spaced items.\nIf a different spacing is desired between wrapped lines, pass a spacing value to the `gap` prop.",
|
|
9267
9127
|
"props": {
|
|
9268
|
-
"pointerEvents": {
|
|
9269
|
-
"type": {
|
|
9270
|
-
"name": "enum",
|
|
9271
|
-
"value": [
|
|
9272
|
-
{
|
|
9273
|
-
"value": "'all'",
|
|
9274
|
-
"computed": false
|
|
9275
|
-
},
|
|
9276
|
-
{
|
|
9277
|
-
"value": "'none'",
|
|
9278
|
-
"computed": false
|
|
9279
|
-
},
|
|
9280
|
-
{
|
|
9281
|
-
"value": "'box-only'",
|
|
9282
|
-
"computed": false
|
|
9283
|
-
},
|
|
9284
|
-
{
|
|
9285
|
-
"value": "'box-none'",
|
|
9286
|
-
"computed": false
|
|
9287
|
-
}
|
|
9288
|
-
]
|
|
9289
|
-
},
|
|
9290
|
-
"required": false,
|
|
9291
|
-
"description": ""
|
|
9292
|
-
},
|
|
9293
|
-
"onLayout": {
|
|
9294
|
-
"type": {
|
|
9295
|
-
"name": "func"
|
|
9296
|
-
},
|
|
9297
|
-
"required": false,
|
|
9298
|
-
"description": ""
|
|
9299
|
-
},
|
|
9300
|
-
"nativeID": {
|
|
9301
|
-
"type": {
|
|
9302
|
-
"name": "string"
|
|
9303
|
-
},
|
|
9304
|
-
"required": false,
|
|
9305
|
-
"description": ""
|
|
9306
|
-
},
|
|
9307
|
-
"testID": {
|
|
9308
|
-
"type": {
|
|
9309
|
-
"name": "string"
|
|
9310
|
-
},
|
|
9311
|
-
"required": false,
|
|
9312
|
-
"description": ""
|
|
9313
|
-
},
|
|
9314
|
-
"dataSet": {
|
|
9315
|
-
"type": {
|
|
9316
|
-
"name": "object"
|
|
9317
|
-
},
|
|
9318
|
-
"required": false,
|
|
9319
|
-
"description": ""
|
|
9320
|
-
},
|
|
9321
9128
|
"tokens": {
|
|
9322
9129
|
"type": {
|
|
9323
9130
|
"name": "custom",
|
|
@@ -9500,68 +9307,6 @@
|
|
|
9500
9307
|
"required": false,
|
|
9501
9308
|
"description": ""
|
|
9502
9309
|
},
|
|
9503
|
-
"label": {
|
|
9504
|
-
"type": {
|
|
9505
|
-
"name": "string"
|
|
9506
|
-
},
|
|
9507
|
-
"required": false,
|
|
9508
|
-
"description": "The input label."
|
|
9509
|
-
},
|
|
9510
|
-
"hint": {
|
|
9511
|
-
"type": {
|
|
9512
|
-
"name": "string"
|
|
9513
|
-
},
|
|
9514
|
-
"required": false,
|
|
9515
|
-
"description": "A short description of the expected input."
|
|
9516
|
-
},
|
|
9517
|
-
"hintPosition": {
|
|
9518
|
-
"type": {
|
|
9519
|
-
"name": "enum",
|
|
9520
|
-
"value": [
|
|
9521
|
-
{
|
|
9522
|
-
"value": "'inline'",
|
|
9523
|
-
"computed": false
|
|
9524
|
-
},
|
|
9525
|
-
{
|
|
9526
|
-
"value": "'below'",
|
|
9527
|
-
"computed": false
|
|
9528
|
-
}
|
|
9529
|
-
]
|
|
9530
|
-
},
|
|
9531
|
-
"required": false,
|
|
9532
|
-
"description": "Position of the hint relative to label. Use `below` to display a larger hint below the label."
|
|
9533
|
-
},
|
|
9534
|
-
"feedback": {
|
|
9535
|
-
"type": {
|
|
9536
|
-
"name": "string"
|
|
9537
|
-
},
|
|
9538
|
-
"required": false,
|
|
9539
|
-
"description": "A detailed description of validation error/success or additional instructions.\nVisual variant is determined based on the `validation` prop."
|
|
9540
|
-
},
|
|
9541
|
-
"tooltip": {
|
|
9542
|
-
"type": {
|
|
9543
|
-
"name": "string"
|
|
9544
|
-
},
|
|
9545
|
-
"required": false,
|
|
9546
|
-
"description": "Content of an optional `Tooltip`. If set, a tooltip button will be shown next to the label."
|
|
9547
|
-
},
|
|
9548
|
-
"validation": {
|
|
9549
|
-
"type": {
|
|
9550
|
-
"name": "enum",
|
|
9551
|
-
"value": [
|
|
9552
|
-
{
|
|
9553
|
-
"value": "'error'",
|
|
9554
|
-
"computed": false
|
|
9555
|
-
},
|
|
9556
|
-
{
|
|
9557
|
-
"value": "'success'",
|
|
9558
|
-
"computed": false
|
|
9559
|
-
}
|
|
9560
|
-
]
|
|
9561
|
-
},
|
|
9562
|
-
"required": false,
|
|
9563
|
-
"description": "Use to visually mark an input as valid or invalid."
|
|
9564
|
-
},
|
|
9565
9310
|
"value": {
|
|
9566
9311
|
"type": {
|
|
9567
9312
|
"name": "string"
|
|
@@ -9660,68 +9405,6 @@
|
|
|
9660
9405
|
"required": false,
|
|
9661
9406
|
"description": ""
|
|
9662
9407
|
},
|
|
9663
|
-
"label": {
|
|
9664
|
-
"type": {
|
|
9665
|
-
"name": "string"
|
|
9666
|
-
},
|
|
9667
|
-
"required": false,
|
|
9668
|
-
"description": "The input label."
|
|
9669
|
-
},
|
|
9670
|
-
"hint": {
|
|
9671
|
-
"type": {
|
|
9672
|
-
"name": "string"
|
|
9673
|
-
},
|
|
9674
|
-
"required": false,
|
|
9675
|
-
"description": "A short description of the expected input."
|
|
9676
|
-
},
|
|
9677
|
-
"hintPosition": {
|
|
9678
|
-
"type": {
|
|
9679
|
-
"name": "enum",
|
|
9680
|
-
"value": [
|
|
9681
|
-
{
|
|
9682
|
-
"value": "'inline'",
|
|
9683
|
-
"computed": false
|
|
9684
|
-
},
|
|
9685
|
-
{
|
|
9686
|
-
"value": "'below'",
|
|
9687
|
-
"computed": false
|
|
9688
|
-
}
|
|
9689
|
-
]
|
|
9690
|
-
},
|
|
9691
|
-
"required": false,
|
|
9692
|
-
"description": "Position of the hint relative to label. Use `below` to display a larger hint below the label."
|
|
9693
|
-
},
|
|
9694
|
-
"feedback": {
|
|
9695
|
-
"type": {
|
|
9696
|
-
"name": "string"
|
|
9697
|
-
},
|
|
9698
|
-
"required": false,
|
|
9699
|
-
"description": "A detailed description of validation error/success or additional instructions.\nVisual variant is determined based on the `validation` prop."
|
|
9700
|
-
},
|
|
9701
|
-
"tooltip": {
|
|
9702
|
-
"type": {
|
|
9703
|
-
"name": "string"
|
|
9704
|
-
},
|
|
9705
|
-
"required": false,
|
|
9706
|
-
"description": "Content of an optional `Tooltip`. If set, a tooltip button will be shown next to the label."
|
|
9707
|
-
},
|
|
9708
|
-
"validation": {
|
|
9709
|
-
"type": {
|
|
9710
|
-
"name": "enum",
|
|
9711
|
-
"value": [
|
|
9712
|
-
{
|
|
9713
|
-
"value": "'error'",
|
|
9714
|
-
"computed": false
|
|
9715
|
-
},
|
|
9716
|
-
{
|
|
9717
|
-
"value": "'success'",
|
|
9718
|
-
"computed": false
|
|
9719
|
-
}
|
|
9720
|
-
]
|
|
9721
|
-
},
|
|
9722
|
-
"required": false,
|
|
9723
|
-
"description": "Use to visually mark an input as valid or invalid."
|
|
9724
|
-
},
|
|
9725
9408
|
"value": {
|
|
9726
9409
|
"type": {
|
|
9727
9410
|
"name": "string"
|