@telus-uds/components-base 0.0.2-prerelease.5 → 0.0.2-prerelease.9
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/.ultra.cache.json +1 -0
- package/CHANGELOG.md +65 -0
- package/__fixtures__/Accessible.js +33 -0
- package/__fixtures__/Accessible.native.js +32 -0
- package/__fixtures__/testTheme.js +871 -52
- package/__tests__/ActivityIndicator/ActivityIndicator.test.jsx +1 -1
- package/__tests__/Button/ButtonBase.test.jsx +3 -32
- package/__tests__/Button/ButtonGroup.test.jsx +2 -2
- package/__tests__/Checkbox/Checkbox.test.jsx +94 -0
- package/__tests__/Checkbox/CheckboxGroup.test.jsx +247 -0
- package/__tests__/Icon/Icon.test.jsx +3 -3
- package/__tests__/IconButton/IconButton.test.jsx +52 -0
- package/__tests__/InputSupports/InputSupports.test.jsx +50 -0
- package/__tests__/List/List.test.jsx +60 -0
- package/__tests__/Modal/Modal.test.jsx +47 -0
- package/__tests__/Notification/Notification.test.jsx +20 -0
- package/__tests__/Pagination/Pagination.test.jsx +2 -2
- package/__tests__/Progress/Progress.test.jsx +79 -0
- package/__tests__/Radio/Radio.test.jsx +87 -0
- package/__tests__/Radio/RadioGroup.test.jsx +221 -0
- package/__tests__/RadioCard/RadioCard.test.jsx +87 -0
- package/__tests__/RadioCard/RadioCardGroup.test.jsx +247 -0
- package/__tests__/Search/Search.test.jsx +72 -0
- package/__tests__/Select/Select.test.jsx +93 -0
- package/__tests__/Skeleton/Skeleton.test.jsx +61 -0
- package/__tests__/StackView/StackView.test.jsx +0 -26
- package/__tests__/StepTracker/StepTracker.test.jsx +94 -0
- package/__tests__/Tabs/Tabs.test.jsx +200 -0
- package/__tests__/Tags/Tags.test.jsx +328 -0
- package/__tests__/TextInput/TextArea.test.jsx +34 -0
- package/__tests__/TextInput/{TextInput.test.jsx → TextInputBase.test.jsx} +20 -46
- package/__tests__/Tooltip/Tooltip.test.jsx +65 -0
- package/__tests__/Tooltip/getTooltipPosition.test.js +79 -0
- package/__tests__/utils/input.test.js +58 -0
- package/__tests__/utils/useCopy.test.js +42 -0
- package/__tests__/utils/useResponsiveProp.test.jsx +202 -0
- package/__tests__/utils/{spacing.test.jsx → useSpacingScale.test.jsx} +1 -1
- package/babel.config.js +20 -0
- package/jest.config.js +13 -4
- package/lib/A11yInfoProvider/index.js +54 -26
- package/lib/A11yText/index.js +37 -14
- package/lib/ActivityIndicator/Spinner.js +78 -0
- package/lib/ActivityIndicator/Spinner.native.js +121 -87
- package/lib/ActivityIndicator/index.js +28 -12
- package/lib/ActivityIndicator/shared.js +27 -12
- package/lib/BaseProvider/index.js +34 -11
- package/lib/Box/Box.js +54 -31
- package/lib/Box/index.js +13 -2
- package/lib/Button/Button.js +38 -10
- package/lib/Button/ButtonBase.js +115 -94
- package/lib/Button/ButtonGroup.js +94 -86
- package/lib/Button/ButtonLink.js +41 -13
- package/lib/Button/index.js +31 -4
- package/lib/Button/propTypes.js +32 -9
- package/lib/Card/Card.js +36 -41
- package/lib/Card/CardBase.js +78 -0
- package/lib/Card/PressableCardBase.js +137 -0
- package/lib/Card/index.js +40 -2
- package/lib/Checkbox/Checkbox.js +344 -0
- package/lib/Checkbox/CheckboxGroup.js +231 -0
- package/lib/Checkbox/CheckboxInput.js +74 -0
- package/lib/Checkbox/CheckboxInput.native.js +14 -0
- package/lib/Checkbox/index.js +21 -0
- package/lib/Divider/Divider.js +50 -24
- package/lib/Divider/index.js +13 -2
- package/lib/ExpandCollapse/Accordion.js +20 -7
- package/lib/ExpandCollapse/Control.js +50 -27
- package/lib/ExpandCollapse/ExpandCollapse.js +41 -24
- package/lib/ExpandCollapse/Panel.js +75 -37
- package/lib/ExpandCollapse/index.js +25 -7
- package/lib/Feedback/Feedback.js +85 -34
- package/lib/Feedback/index.js +13 -2
- package/lib/Fieldset/Fieldset.js +160 -0
- package/lib/Fieldset/FieldsetContainer.js +41 -0
- package/lib/Fieldset/FieldsetContainer.native.js +33 -0
- package/lib/Fieldset/Legend.js +33 -0
- package/lib/Fieldset/Legend.native.js +43 -0
- package/lib/Fieldset/cssReset.js +21 -0
- package/lib/Fieldset/index.js +13 -0
- package/lib/FlexGrid/Col/Col.js +67 -38
- package/lib/FlexGrid/Col/index.js +13 -2
- package/lib/FlexGrid/FlexGrid.js +70 -45
- package/lib/FlexGrid/Row/Row.js +48 -27
- package/lib/FlexGrid/Row/index.js +13 -2
- package/lib/FlexGrid/helpers/index.js +9 -1
- package/lib/FlexGrid/index.js +13 -2
- package/lib/FlexGrid/providers/GutterContext.js +15 -3
- package/lib/Icon/Icon.js +52 -47
- package/lib/Icon/IconText.js +100 -0
- package/lib/Icon/index.js +31 -3
- package/lib/IconButton/IconButton.js +135 -0
- package/lib/IconButton/index.js +13 -0
- package/lib/InputLabel/InputLabel.js +70 -34
- package/lib/InputLabel/LabelContent.js +31 -0
- package/lib/InputLabel/LabelContent.native.js +9 -1
- package/lib/InputLabel/index.js +13 -2
- package/lib/InputSupports/InputSupports.js +104 -0
- package/lib/InputSupports/index.js +13 -0
- package/lib/InputSupports/propTypes.js +66 -0
- package/lib/InputSupports/useInputSupports.js +41 -0
- package/lib/Link/ChevronLink.js +57 -15
- package/lib/Link/InlinePressable.js +50 -0
- package/lib/Link/InlinePressable.native.js +101 -0
- package/lib/Link/Link.js +30 -13
- package/lib/Link/LinkBase.js +114 -145
- package/lib/Link/TextButton.js +47 -17
- package/lib/Link/index.js +39 -4
- package/lib/List/List.js +80 -0
- package/lib/List/ListItem.js +237 -0
- package/lib/List/index.js +13 -0
- package/lib/Modal/Modal.js +226 -0
- package/lib/Modal/dictionary.js +16 -0
- package/lib/Modal/index.js +13 -0
- package/lib/Notification/Notification.js +200 -0
- package/lib/Notification/dictionary.js +15 -0
- package/lib/Notification/index.js +13 -0
- package/lib/Pagination/PageButton.js +45 -46
- package/lib/Pagination/Pagination.js +70 -40
- package/lib/Pagination/SideButton.js +74 -58
- package/lib/Pagination/dictionary.js +9 -2
- package/lib/Pagination/index.js +13 -2
- package/lib/Pagination/usePagination.js +12 -2
- package/lib/Progress/Progress.js +99 -0
- package/lib/Progress/ProgressBar.js +146 -0
- package/lib/Progress/ProgressBarBackground.js +57 -0
- package/lib/Progress/index.js +16 -0
- package/lib/Radio/Radio.js +292 -0
- package/lib/Radio/RadioButton.js +141 -0
- package/lib/Radio/RadioGroup.js +233 -0
- package/lib/Radio/RadioInput.js +76 -0
- package/lib/Radio/RadioInput.native.js +14 -0
- package/lib/Radio/index.js +21 -0
- package/lib/RadioCard/RadioCard.js +240 -0
- package/lib/RadioCard/RadioCardGroup.js +251 -0
- package/lib/RadioCard/index.js +21 -0
- package/lib/Search/Search.js +243 -0
- package/lib/Search/dictionary.js +19 -0
- package/lib/Search/index.js +13 -0
- package/lib/Select/Group.js +33 -0
- package/lib/Select/Group.native.js +25 -0
- package/lib/Select/Item.js +29 -0
- package/lib/Select/Item.native.js +19 -0
- package/lib/Select/Picker.js +79 -0
- package/lib/Select/Picker.native.js +115 -0
- package/lib/Select/Select.js +300 -0
- package/lib/Select/index.js +19 -0
- package/lib/SideNav/Item.js +54 -33
- package/lib/SideNav/ItemContent.js +41 -15
- package/lib/SideNav/ItemsGroup.js +46 -27
- package/lib/SideNav/SideNav.js +92 -69
- package/lib/SideNav/index.js +15 -1
- package/lib/Skeleton/Skeleton.js +137 -0
- package/lib/Skeleton/index.js +13 -0
- package/lib/Skeleton/skeleton.constant.js +12 -0
- package/lib/Skeleton/skeletonWebAnimation.js +27 -0
- package/lib/Skeleton/useSkeletonNativeAnimation.js +37 -0
- package/lib/Spacer/Spacer.js +31 -12
- package/lib/Spacer/index.js +13 -2
- package/lib/StackView/StackView.js +57 -33
- package/lib/StackView/StackWrap.js +33 -10
- package/lib/StackView/StackWrap.native.js +13 -2
- package/lib/StackView/StackWrapBox.js +50 -23
- package/lib/StackView/StackWrapGap.js +45 -19
- package/lib/StackView/common.js +19 -4
- package/lib/StackView/getStackedContent.js +49 -19
- package/lib/StackView/index.js +29 -5
- package/lib/StepTracker/Step.js +245 -0
- package/lib/StepTracker/StepTracker.js +197 -0
- package/lib/StepTracker/dictionary.js +17 -0
- package/lib/StepTracker/index.js +13 -0
- package/lib/Tabs/HorizontalScroll.js +199 -0
- package/lib/Tabs/ScrollViewEnd.js +66 -0
- package/lib/Tabs/ScrollViewEnd.native.js +41 -0
- package/lib/Tabs/Tabs.js +117 -0
- package/lib/Tabs/TabsItem.js +234 -0
- package/lib/Tabs/TabsScrollButton.js +121 -0
- package/lib/Tabs/dictionary.js +18 -0
- package/lib/Tabs/index.js +13 -0
- package/lib/Tabs/itemPositions.js +128 -0
- package/lib/Tags/Tags.js +250 -0
- package/lib/Tags/index.js +13 -0
- package/lib/TextInput/TextArea.js +109 -0
- package/lib/TextInput/TextInput.js +41 -303
- package/lib/TextInput/TextInputBase.js +252 -0
- package/lib/TextInput/index.js +23 -2
- package/lib/TextInput/propTypes.js +42 -0
- package/lib/ThemeProvider/ThemeProvider.js +38 -14
- package/lib/ThemeProvider/index.js +61 -6
- package/lib/ThemeProvider/useSetTheme.js +14 -5
- package/lib/ThemeProvider/useTheme.js +13 -4
- package/lib/ThemeProvider/useThemeTokens.js +86 -19
- package/lib/ThemeProvider/utils/index.js +31 -2
- package/lib/ThemeProvider/utils/styles.js +52 -16
- package/lib/ThemeProvider/utils/theme-tokens.js +94 -16
- package/lib/ToggleSwitch/ToggleSwitch.js +76 -52
- package/lib/ToggleSwitch/index.js +13 -2
- package/lib/Tooltip/Backdrop.js +56 -0
- package/lib/Tooltip/Backdrop.native.js +59 -0
- package/lib/Tooltip/Tooltip.js +357 -0
- package/lib/Tooltip/dictionary.js +15 -0
- package/lib/Tooltip/getTooltipPosition.js +172 -0
- package/lib/Tooltip/index.js +13 -0
- package/lib/TooltipButton/TooltipButton.js +83 -0
- package/lib/TooltipButton/index.js +13 -0
- package/lib/Typography/Typography.js +58 -43
- package/lib/Typography/index.js +13 -2
- package/lib/ViewportProvider/ViewportProvider.js +46 -0
- package/lib/ViewportProvider/index.js +22 -38
- package/lib/ViewportProvider/useViewport.js +15 -0
- package/lib/ViewportProvider/useViewportListener.js +57 -0
- package/lib/index.js +518 -24
- package/lib/utils/a11y/index.js +18 -0
- package/lib/utils/a11y/textSize.js +49 -0
- package/lib/utils/animation/index.js +15 -2
- package/lib/utils/animation/useVerticalExpandAnimation.js +28 -11
- package/lib/utils/children.js +87 -0
- package/lib/utils/index.js +163 -4
- package/lib/utils/info/index.js +19 -0
- package/lib/utils/info/platform/index.js +23 -0
- package/lib/utils/info/platform/platform.android.js +8 -0
- package/lib/utils/info/platform/platform.ios.js +8 -0
- package/lib/utils/info/platform/platform.js +8 -0
- package/lib/utils/info/platform/platform.native.js +11 -0
- package/lib/utils/info/versions.js +16 -0
- package/lib/utils/input.js +51 -33
- package/lib/utils/pressability.js +120 -0
- package/lib/utils/propTypes.js +269 -116
- package/lib/utils/useCopy.js +51 -0
- package/lib/utils/useHash.js +48 -0
- package/lib/utils/useHash.native.js +15 -0
- package/lib/utils/useResponsiveProp.js +59 -0
- package/lib/utils/{spacing/useSpacingScale.js → useSpacingScale.js} +45 -12
- package/lib/utils/useUniqueId.js +13 -4
- package/package.json +12 -9
- package/release-context.json +4 -4
- package/src/ActivityIndicator/{Spinner.web.jsx → Spinner.jsx} +0 -0
- package/src/Box/Box.jsx +11 -4
- package/src/Button/Button.jsx +9 -5
- package/src/Button/ButtonBase.jsx +69 -69
- package/src/Button/ButtonGroup.jsx +11 -24
- package/src/Button/ButtonLink.jsx +14 -4
- package/src/Button/propTypes.js +12 -2
- package/src/Card/Card.jsx +4 -30
- package/src/Card/CardBase.jsx +57 -0
- package/src/Card/PressableCardBase.jsx +112 -0
- package/src/Card/index.js +3 -0
- package/src/Checkbox/Checkbox.jsx +274 -0
- package/src/Checkbox/CheckboxGroup.jsx +196 -0
- package/src/Checkbox/CheckboxInput.jsx +55 -0
- package/src/Checkbox/CheckboxInput.native.jsx +6 -0
- package/src/Checkbox/index.js +5 -0
- package/src/ExpandCollapse/Control.jsx +1 -1
- package/src/Feedback/Feedback.jsx +31 -22
- package/src/Fieldset/Fieldset.jsx +129 -0
- package/src/Fieldset/FieldsetContainer.jsx +22 -0
- package/src/Fieldset/FieldsetContainer.native.jsx +16 -0
- package/src/Fieldset/Legend.jsx +16 -0
- package/src/Fieldset/Legend.native.jsx +22 -0
- package/src/Fieldset/cssReset.js +14 -0
- package/src/Fieldset/index.js +3 -0
- package/src/Icon/Icon.jsx +21 -26
- package/src/Icon/IconText.jsx +63 -0
- package/src/Icon/index.js +3 -2
- package/src/IconButton/IconButton.jsx +107 -0
- package/src/IconButton/index.js +3 -0
- package/src/InputLabel/InputLabel.jsx +11 -4
- package/src/InputLabel/{LabelContent.web.jsx → LabelContent.jsx} +0 -0
- package/src/InputSupports/InputSupports.jsx +75 -0
- package/src/InputSupports/index.js +3 -0
- package/src/InputSupports/propTypes.js +44 -0
- package/src/InputSupports/useInputSupports.js +30 -0
- package/src/Link/ChevronLink.jsx +28 -7
- package/src/Link/InlinePressable.jsx +37 -0
- package/src/Link/InlinePressable.native.jsx +73 -0
- package/src/Link/Link.jsx +17 -13
- package/src/Link/LinkBase.jsx +67 -148
- package/src/Link/TextButton.jsx +25 -11
- package/src/Link/index.js +2 -1
- package/src/List/List.jsx +47 -0
- package/src/List/ListItem.jsx +187 -0
- package/src/List/index.js +3 -0
- package/src/Modal/Modal.jsx +185 -0
- package/src/Modal/dictionary.js +9 -0
- package/src/Modal/index.js +3 -0
- package/src/Notification/Notification.jsx +149 -0
- package/src/Notification/dictionary.js +8 -0
- package/src/Notification/index.js +3 -0
- package/src/Pagination/PageButton.jsx +3 -17
- package/src/Pagination/SideButton.jsx +27 -38
- package/src/Progress/Progress.jsx +77 -0
- package/src/Progress/ProgressBar.jsx +110 -0
- package/src/Progress/ProgressBarBackground.jsx +34 -0
- package/src/Progress/index.js +6 -0
- package/src/Radio/Radio.jsx +233 -0
- package/src/Radio/RadioButton.jsx +131 -0
- package/src/Radio/RadioGroup.jsx +198 -0
- package/src/Radio/RadioInput.jsx +57 -0
- package/src/Radio/RadioInput.native.jsx +6 -0
- package/src/Radio/index.js +5 -0
- package/src/RadioCard/RadioCard.jsx +191 -0
- package/src/RadioCard/RadioCardGroup.jsx +211 -0
- package/src/RadioCard/index.js +5 -0
- package/src/Search/Search.jsx +204 -0
- package/src/Search/dictionary.js +12 -0
- package/src/Search/index.js +3 -0
- package/src/Select/Group.jsx +15 -0
- package/src/Select/Group.native.jsx +14 -0
- package/src/Select/Item.jsx +11 -0
- package/src/Select/Item.native.jsx +10 -0
- package/src/Select/Picker.jsx +67 -0
- package/src/Select/Picker.native.jsx +95 -0
- package/src/Select/Select.jsx +255 -0
- package/src/Select/index.js +8 -0
- package/src/SideNav/Item.jsx +2 -2
- package/src/Skeleton/Skeleton.jsx +98 -0
- package/src/Skeleton/index.js +3 -0
- package/src/Skeleton/skeleton.constant.js +3 -0
- package/src/Skeleton/skeletonWebAnimation.js +13 -0
- package/src/Skeleton/useSkeletonNativeAnimation.js +27 -0
- package/src/StackView/StackView.jsx +25 -17
- package/src/StackView/StackWrap.jsx +9 -1
- package/src/StackView/StackWrapBox.jsx +19 -7
- package/src/StackView/StackWrapGap.jsx +15 -5
- package/src/StackView/getStackedContent.jsx +8 -2
- package/src/StepTracker/Step.jsx +202 -0
- package/src/StepTracker/StepTracker.jsx +163 -0
- package/src/StepTracker/dictionary.js +10 -0
- package/src/StepTracker/index.js +3 -0
- package/src/Tabs/HorizontalScroll.jsx +165 -0
- package/src/Tabs/ScrollViewEnd.jsx +53 -0
- package/src/Tabs/ScrollViewEnd.native.jsx +24 -0
- package/src/Tabs/Tabs.jsx +89 -0
- package/src/Tabs/TabsItem.jsx +204 -0
- package/src/Tabs/TabsScrollButton.jsx +100 -0
- package/src/Tabs/dictionary.js +11 -0
- package/src/Tabs/index.js +3 -0
- package/src/Tabs/itemPositions.js +101 -0
- package/src/Tags/Tags.jsx +207 -0
- package/src/Tags/index.js +3 -0
- package/src/TextInput/TextArea.jsx +78 -0
- package/src/TextInput/TextInput.jsx +17 -290
- package/src/TextInput/TextInputBase.jsx +210 -0
- package/src/TextInput/index.js +2 -1
- package/src/TextInput/propTypes.js +29 -0
- package/src/ThemeProvider/useThemeTokens.js +56 -5
- package/src/ThemeProvider/utils/styles.js +18 -5
- package/src/ThemeProvider/utils/theme-tokens.js +46 -5
- package/src/ToggleSwitch/ToggleSwitch.jsx +3 -4
- package/src/Tooltip/Backdrop.jsx +60 -0
- package/src/Tooltip/Backdrop.native.jsx +33 -0
- package/src/Tooltip/Tooltip.jsx +294 -0
- package/src/Tooltip/dictionary.js +8 -0
- package/src/Tooltip/getTooltipPosition.js +161 -0
- package/src/Tooltip/index.js +3 -0
- package/src/TooltipButton/TooltipButton.jsx +49 -0
- package/src/TooltipButton/index.js +3 -0
- package/src/Typography/Typography.jsx +10 -20
- package/src/ViewportProvider/ViewportProvider.jsx +21 -0
- package/src/ViewportProvider/index.jsx +2 -41
- package/src/ViewportProvider/useViewport.js +5 -0
- package/src/ViewportProvider/useViewportListener.js +43 -0
- package/src/index.js +31 -3
- package/src/utils/a11y/index.js +1 -0
- package/src/utils/a11y/textSize.js +30 -0
- package/src/utils/children.jsx +66 -0
- package/src/utils/index.js +11 -1
- package/src/utils/info/index.js +8 -0
- package/src/utils/info/platform/index.js +11 -0
- package/src/utils/info/platform/platform.android.js +1 -0
- package/src/utils/info/platform/platform.ios.js +1 -0
- package/src/utils/info/platform/platform.js +1 -0
- package/src/utils/info/platform/platform.native.js +4 -0
- package/src/utils/info/versions.js +6 -0
- package/src/utils/input.js +20 -12
- package/src/utils/pressability.js +96 -0
- package/src/utils/propTypes.js +195 -56
- package/src/utils/useCopy.js +39 -0
- package/src/utils/useHash.js +34 -0
- package/src/utils/useHash.native.js +6 -0
- package/src/utils/useResponsiveProp.js +50 -0
- package/src/utils/{spacing/useSpacingScale.js → useSpacingScale.js} +25 -10
- package/stories/A11yText/A11yText.stories.jsx +4 -8
- package/stories/Button/Button.stories.jsx +5 -0
- package/stories/Card/Card.stories.jsx +1 -1
- package/stories/Checkbox/Checkbox.stories.jsx +94 -0
- package/stories/Feedback/Feedback.stories.jsx +5 -6
- package/stories/Icon/Icon.stories.jsx +27 -7
- package/stories/IconButton/IconButton.stories.jsx +50 -0
- package/stories/InputLabel/InputLabel.stories.jsx +8 -3
- package/stories/Link/ChevronLink.stories.jsx +3 -3
- package/stories/Link/Link.stories.jsx +28 -18
- package/stories/List/List.stories.jsx +117 -0
- package/stories/Modal/Modal.stories.jsx +29 -0
- package/stories/Notification/Notification.stories.jsx +82 -0
- package/stories/Progress/Progress.stories.jsx +93 -0
- package/stories/Radio/Radio.stories.jsx +100 -0
- package/stories/RadioCard/RadioCard.stories.jsx +98 -0
- package/stories/Search/Search.stories.jsx +16 -0
- package/stories/Select/Select.stories.jsx +55 -0
- package/stories/Skeleton/Skeleton.stories.jsx +36 -0
- package/stories/Spacer/Spacer.stories.jsx +7 -2
- package/stories/StackView/StackView.stories.jsx +10 -0
- package/stories/StackView/StackWrap.stories.jsx +12 -0
- package/stories/StepTracker/StepTracker.stories.jsx +71 -0
- package/stories/Tabs/Tabs.stories.jsx +97 -0
- package/stories/Tags/Tags.stories.jsx +69 -0
- package/stories/TextInput/TextArea.stories.jsx +100 -0
- package/stories/Tooltip/Tooltip.stories.jsx +81 -0
- package/stories/TooltipButton/TooltipButton.stories.jsx +11 -0
- package/stories/{platform-supports.web.jsx → platform-supports.jsx} +0 -0
- package/stories/supports.jsx +36 -2
- package/__fixtures__/accessible.icon.svg +0 -6
- package/babel.config.json +0 -8
- package/docs/Contributing.stories.mdx +0 -9
- package/docs/Fonts.stories.mdx +0 -104
- package/docs/Icons.stories.mdx +0 -144
- package/docs/Introduction.stories.mdx +0 -9
- package/lib/ActivityIndicator/Spinner.web.js +0 -55
- package/lib/InputLabel/LabelContent.web.js +0 -17
- package/lib/Pagination/useCopy.js +0 -10
- package/lib/config/svgr-icons-web.js +0 -9
- package/lib/config/svgr-icons.js +0 -52
- package/lib/utils/spacing/index.js +0 -2
- package/lib/utils/spacing/utils.js +0 -32
- package/src/Pagination/useCopy.js +0 -7
- package/src/config/svgr-icons-web.js +0 -11
- package/src/config/svgr-icons.js +0 -46
- package/src/utils/spacing/index.js +0 -3
- package/src/utils/spacing/utils.js +0 -28
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"files":{"lib":"1640765991518.3665","node_modules":"1640765946329.8555","CHANGELOG.md":"5bc422a054a961eb445a0646534e7ee14ade5aef","README.md":"acc5433a698785066c3daa62811b6efad2195525","__fixtures__/Accessible.js":"1e452d9be512760279c180058fd1d7eec73604d8","__fixtures__/Accessible.native.js":"81b05d1715839d7c9a83da5f4adc6997f15c7ac4","__fixtures__/Theme.jsx":"98540416fcd0b932d18083f9256ccba8ff559cf4","__fixtures__/Viewport.jsx":"c9b2af9a0786fbe2445e77e5da76ef4c500f04d3","__fixtures__/testTheme.js":"9289b7299d4726b887b7587fd87bef3cec3120b3","__tests__/A11yText/A11yText.test.jsx":"bb544fd8f00c2e6135588049c62bf5910f9ffcda","__tests__/ActivityIndicator/ActivityIndicator.test.jsx":"ffed250b44f2e28838c9b8f909b7c45941385da3","__tests__/Box/Box.test.jsx":"5635f1b28e1bf5b07c09bc31218bbb90533445f9","__tests__/Button/Button.test.jsx":"c5b7e97ffb7171ce6e9ceaa4d6c6e6cbd78562e7","__tests__/Button/ButtonBase.test.jsx":"f8cf3ecdbafcea37c7f9f57ca5060c18b17dc56f","__tests__/Button/ButtonGroup.test.jsx":"193c3d84b56b5322c9c3a183f4de1d42a01561b0","__tests__/Button/ButtonLink.test.jsx":"60200e31dcabcde9f800d9c56cabcfa931168518","__tests__/Card/Card.test.jsx":"627cbf03d2bbf569bd29e33345d79f8cefaedfd1","__tests__/Checkbox/Checkbox.test.jsx":"9c3b4e6e4756836f9bf2c661d43f90b3d9e4feeb","__tests__/Checkbox/CheckboxGroup.test.jsx":"91d4f85498e0f58c5f42f54a6b8267fadab8f223","__tests__/Divider/Divider.test.jsx":"026de7361850866ffe8f553d10834e6dc835417b","__tests__/ExpandCollapse/ExpandCollapse.test.jsx":"9e85e341a050ee10f15cdd5a7a0faba0629be2fd","__tests__/Feedback/Feedback.test.jsx":"c26bcd8a8b528dd45a656fb58e157e759b7c4284","__tests__/FlexGrid/Col.test.jsx":"c5c224c841d87e79e8feccc297d4ee2dd0075a09","__tests__/FlexGrid/FlexGrid.test.jsx":"f7cd0601b26c39e6113ae4068022c6ea4646f731","__tests__/FlexGrid/Row.test.jsx":"084735ca2082515a1ebfe7c5e62bd7016efe922c","__tests__/Icon/Icon.test.jsx":"56e95c5df78ba4f73e56c281cbfa69493cafe15f","__tests__/IconButton/IconButton.test.jsx":"c085f4a605726b9460fd4d74ba14f070b76a9847","__tests__/InputSupports/InputSupports.test.jsx":"6590d5033b31b30fb6290bb2fe4e1c60696ce9a5","__tests__/Link/Link.test.jsx":"deb9ea0fbedbe8a214d1c3047c93b830bf8588b3","__tests__/Link/LinkBase.test.jsx":"fc19b014a988512c41931434e9be3cf0bd8cfadf","__tests__/Link/TextButton.test.jsx":"e5653b75e6dece08d7f64a99e9880cbb21a61cbe","__tests__/List/List.test.jsx":"8ba93772fcf305c49d73fdddc66a51ec098169f1","__tests__/Modal/Modal.test.jsx":"920e8a16e7064142f56533889f0ac4fb5909225f","__tests__/Notification/Notification.test.jsx":"9f073100b6e5696ef43ec663988b7d8ccbf009e4","__tests__/Pagination/Pagination.test.jsx":"254a468b5bbe038147ab7858ae78fe349a883c76","__tests__/Progress/Progress.test.jsx":"2e2cd16b50871ed616ada7bc617fcdfb81f6906e","__tests__/Radio/Radio.test.jsx":"28fd22b9c8cecdeee15cf345645cfd5d42fb64ae","__tests__/Radio/RadioGroup.test.jsx":"416608a4fa541088d39104d4065b98acedbdc000","__tests__/RadioCard/RadioCard.test.jsx":"2b065718450b4bc3c589e58c9c7b82ac5573064d","__tests__/RadioCard/RadioCardGroup.test.jsx":"cb83f5d9bc55ebfa837937bd443c2cde1d85c481","__tests__/Search/Search.test.jsx":"2c00a8cc742922705913396622b94d1757e6c5c6","__tests__/Select/Select.test.jsx":"ae58e09250d15276a883c4fb5214825260082ee1","__tests__/SideNav/SideNav.test.jsx":"9c5548f7a6c891741a7e60a520dc4da2b54ecb82","__tests__/Skeleton/Skeleton.test.jsx":"3facb44a45dda0114a30de7c7fee4105796b83ea","__tests__/Spacer/Spacer.test.jsx":"6ab4f9c2e75409bbe6aeef3708bc28da1a06de7b","__tests__/StackView/StackView.test.jsx":"051e7bb2dcee923a610dbf547143d21e19a52616","__tests__/StackView/StackWrap.test.jsx":"f1c7e1f9f0d35bd76fd97e11bc36e8d86b8e47dd","__tests__/StackView/getStackedContent.test.jsx":"73d7bd8448641fea18ded75254d6ecc4bf04e836","__tests__/StepTracker/StepTracker.test.jsx":"c11ee312ae4a1ea5820d8d96c7120c7ebe51c36f","__tests__/Tabs/Tabs.test.jsx":"b36f9399247adc3e56b4e95d85068c7f5342361a","__tests__/Tags/Tags.test.jsx":"1a4c53d6f3e35a5559e4288be6c5ed76236c4995","__tests__/TextInput/TextArea.test.jsx":"37e56e251941ccdb1d175449e558a2e1508eeaaf","__tests__/TextInput/TextInputBase.test.jsx":"318f7fa1c7d841594326839cfc6324b98f08cfed","__tests__/ThemeProvider/useThemeTokens.test.jsx":"86febf0023161098a21aa08d0132a1df693de31a","__tests__/ToggleSwitch/ToggleSwitch.test.jsx":"e1372aae6c8b7a3d0c1aa7bf63fb0dc8773f51ad","__tests__/Tooltip/Tooltip.test.jsx":"6c88c6dfd4aa97994ec8686d986e149ba9de5d5a","__tests__/Tooltip/getTooltipPosition.test.js":"b9fb1a5f5849216de602a66b810435e2e95f71ec","__tests__/Typography/typography.test.jsx":"f63a1d7137cc3c981adb343abf2db6f8d88cfe3b","__tests__/utils/input.test.js":"b80978f484a2a0d7b7f4dfedf77dca63b31bf9dc","__tests__/utils/useCopy.test.js":"b7ac269197a892761be543a1aa0ca25419e2575d","__tests__/utils/useResponsiveProp.test.jsx":"d1fe7f195df30c7623f5c221b59ab421ded34769","__tests__/utils/useSpacingScale.test.jsx":"3acd952f4e8ca3673f7f2b25a8fbeb82f12d8bda","__tests__/utils/useUniqueId.test.js":"6886d52bb63423cc88293a60a2495c0934b4e447","babel.config.js":"262a79320201a15aef984fcf1cc6c6cf02c8744a","jest.config.js":"8fa824d22f579fd7ffa9c7bd9d83e59c2dee611e","package.json":"a9273faeeb0461ea8ffd49bdfefc8a6048788665","src/A11yInfoProvider/index.jsx":"79a84eef336aa678d2adfe290bfdb15aae94687e","src/A11yText/index.jsx":"8bc34f4cdb15fb64718e2d535592f598265326af","src/ActivityIndicator/Spinner.jsx":"42f0d695466b5312f5972d47d0b5803c3c5648f5","src/ActivityIndicator/Spinner.native.jsx":"c6c1f9985121ac8e5d511539f899d4bfb5a61f8c","src/ActivityIndicator/index.jsx":"15d219d42aef7f29e689086d4d82ac0e225cc611","src/ActivityIndicator/shared.js":"ca6120fee59f7a0986bb823cc92ad21966d7bb2e","src/BaseProvider/index.jsx":"14773240cde78b596fe391cc1ef2525d87e6b246","src/Box/Box.jsx":"c6d878ad4c149eeb2d460def78dd5d77ccd2ca35","src/Box/index.js":"280496403f647db4bb7d563109b72799b281c104","src/Button/Button.jsx":"c8df2c9f1782bdf8a6db47aad26470aec9158a00","src/Button/ButtonBase.jsx":"e0abf0714ad831daef1a4308411499e0df58122e","src/Button/ButtonGroup.jsx":"8512cb7ab760194f932fc03748ca8c1df23f658c","src/Button/ButtonLink.jsx":"d12b6fde47c73eddceaa1afe9e7a53323df650a8","src/Button/index.js":"46aecee948aff0b9039676c156098100a3ee6033","src/Button/propTypes.js":"d1b001e897ba08c8a3c8a240c0d0214824ec6642","src/Card/Card.jsx":"3e04381c18604c4e839ecc50d776d1163679c2df","src/Card/CardBase.jsx":"bfc1b67184c466b1ffc70c4b18e60ad79050bb68","src/Card/PressableCardBase.jsx":"f9d1decdc6ae967312829991b290574b7343c028","src/Card/index.js":"76bf74db2e39f45cd9b47d8e36052a93ec62f483","src/Checkbox/Checkbox.jsx":"83d425af36f2b466cece49245ece3480cd172451","src/Checkbox/CheckboxGroup.jsx":"caba5b9a5fd7413df098b8b2778140624ecd8299","src/Checkbox/CheckboxInput.jsx":"88d356f8287c502ecec4413ecfcd8ea231f271b6","src/Checkbox/CheckboxInput.native.jsx":"393cc6721b14ae67ec336ed94639ae764d4dd928","src/Checkbox/index.js":"958d04ebd9cd61c92316e5ce6f66647bcb45066b","src/Divider/Divider.jsx":"f517d4501df2f31b0cf6213089f54abf5d4c50ff","src/Divider/index.js":"fa2817652d45ec83ae079679fb5a8c9eb786fc43","src/ExpandCollapse/Accordion.jsx":"382109f00c5ceed895e0ca6cc08bb21725645af9","src/ExpandCollapse/Control.jsx":"8d9717041db7711191ee3a31b9428a53bd3b8824","src/ExpandCollapse/ExpandCollapse.jsx":"74f6f110fb21ed6ff40dc163a984ebd76d9c6428","src/ExpandCollapse/Panel.jsx":"f7dd1696451dab10dccac424d1b242a52c442287","src/ExpandCollapse/index.js":"e553901efa8408d1753ecc329ea1361e57084199","src/Feedback/Feedback.jsx":"b516ef8ebe0256913f8d7fca915000054e310e1b","src/Feedback/index.js":"a1181a81414ebd8797eb48975b1a377319de4ad2","src/Fieldset/Fieldset.jsx":"b70e66c7e851d0a7342bf898a6389c2158e514fc","src/Fieldset/FieldsetContainer.jsx":"b716b18a7490401009c6fb827f1c8d20eedc9fcc","src/Fieldset/FieldsetContainer.native.jsx":"d4376c53c48f67628b7b3ec908298ca15611b713","src/Fieldset/Legend.jsx":"92387a2321381ecc2c2f305bc7d6f47dfdc93558","src/Fieldset/Legend.native.jsx":"5416181ee5aeb034ed9350c9f6370fb3a6a53e12","src/Fieldset/cssReset.js":"6532e6e410e70d2ef566d75e252615f9a9ca6bb9","src/Fieldset/index.js":"cc6c5bc097a0f7f1437637ebf285480bffeb71b4","src/FlexGrid/Col/Col.jsx":"84ed0037b3b7844b45eb78648b993020846b8744","src/FlexGrid/Col/index.js":"a5e8b19d6f2f0cf20635a9407421bd2448f22a55","src/FlexGrid/FlexGrid.jsx":"a885fa3328f796e0624a5158baa8b378265d8fde","src/FlexGrid/Row/Row.jsx":"c6993dd57024baffb5c2f6d54534ae5ab2c39ae7","src/FlexGrid/Row/index.js":"136065433ab96251df79b75f213e0fd9de30e7b7","src/FlexGrid/helpers/index.js":"640ddf9188848b52b35736a615b4124708b5cbec","src/FlexGrid/index.js":"c5c40a5d8c40df5c1a25309aeee1f740df58e261","src/FlexGrid/providers/GutterContext.jsx":"f6fd8ed5a72cb7daf1b5faeb7d15675bd61aca41","src/Icon/Icon.jsx":"7b638e4dcf00e1b2f5b2aecb09610119cf0e973f","src/Icon/IconText.jsx":"32f0cd29e0a8364f33b7525f7cc7bb6612eaed14","src/Icon/index.js":"bd961bc6eb1602d8e0cf77bad71a2c9e6d084d1e","src/IconButton/IconButton.jsx":"abf12c94060c6f3c8082fea55be083dd3e22b297","src/IconButton/index.js":"a719cd42817fa7f7922a2a18f679163da2ab923b","src/InputLabel/InputLabel.jsx":"d172ba23e7dd96865cddfd0cd8ba04650dc0e589","src/InputLabel/LabelContent.jsx":"7766c99498dbf61b5ee3486741fcdeebcd4fcfb1","src/InputLabel/LabelContent.native.jsx":"ca05199ac6793615fbe65f19a30ec4145a0303d1","src/InputLabel/index.js":"d73f3f71f8afdaa74b4e8f0905f9f9b8815c89b1","src/InputSupports/InputSupports.jsx":"e62278cd4b73b5306a9f7305f827144a18deba0a","src/InputSupports/index.js":"5173f3d29b1d427836b20906608fc7e2fdb6bb17","src/InputSupports/propTypes.js":"e66e0dad9ed1931416b57ffc996daba1d5c125e5","src/InputSupports/useInputSupports.js":"7b926bb247864737a1223acf79b6d2308d306bc9","src/Link/ChevronLink.jsx":"acd2363f419abfa8c60c5813ae02e0a7b269ee28","src/Link/InlinePressable.jsx":"a55d82e1428ff56cbef68e4d6a177298fd61ecd0","src/Link/InlinePressable.native.jsx":"995bf9c884c972cafa0b33564efb57c9504d9e57","src/Link/Link.jsx":"71869fd0b1458b8b3b9bca11e7861731d632abbb","src/Link/LinkBase.jsx":"e1f363c4ccd085c630076971d24d7fc71e1ec512","src/Link/TextButton.jsx":"a56911d540d4e071579674cdd710694fdc701fff","src/Link/index.js":"09d2787b9253295551e08326120969635c040b7a","src/List/List.jsx":"2d4c1581095e2e1ae723ba25da66b31f82f088e7","src/List/ListItem.jsx":"500f627d3f6ec6116b0627546c43769fecd918f9","src/List/index.js":"6cd88f9e42f35d8494a0a273250b3f349c88acbe","src/Modal/Modal.jsx":"3244f882442ee8e48ff42d6dc52a6eff17ff891d","src/Modal/dictionary.js":"c5bebd7b63fa826f93df3f61d0950b010890a6d0","src/Modal/index.js":"498702f472940b1d7a8b6b29797bbea308209e1d","src/Notification/Notification.jsx":"a6fa7f9396610edfc7f838a3acdd53cd936fa8e3","src/Notification/dictionary.js":"c7e14273e5253a3e8ce1e11879630ad29ad5108c","src/Notification/index.js":"21d57835b505d7198076398e5ea6309a61299f40","src/Pagination/PageButton.jsx":"2ce68be66c220923cf52e1cf0d647e79aa7137ae","src/Pagination/Pagination.jsx":"9d0aa65dc4acf042751ab252e1c46dd5b6df0ada","src/Pagination/SideButton.jsx":"26f6191ab6db248175a065744764ce5fb5870b0c","src/Pagination/dictionary.js":"ccfb5733071adfd9b8a067f407627461dce68a9a","src/Pagination/index.js":"1466412190cfefc75aaa042004374f9f19505c64","src/Pagination/usePagination.js":"ca67794bd989d870a9bf68acbdf4d847e19a0ded","src/Progress/Progress.jsx":"2ef6425cad7ce53947ee2deefea37f7ae2564c86","src/Progress/ProgressBar.jsx":"0f329b4d8a59f04520af41481c5e71139afaccb2","src/Progress/ProgressBarBackground.jsx":"01279e59a5b2d70b55b5ff355d1b4e404170d5f8","src/Progress/index.js":"9a98c968b708cc86d9c6f00415faede75cfadb85","src/Radio/Radio.jsx":"f29ae06086fcc9e7886122cbf7cfa92fda2b9e5f","src/Radio/RadioButton.jsx":"37ae90c39876eb85432cb922a6d65657f9b7b5b2","src/Radio/RadioGroup.jsx":"767e16950ee6367d2c2f0840f49feb9a8f15bcdf","src/Radio/RadioInput.jsx":"a0a8e4bc2d483d79b2ff91e15da582054ba38370","src/Radio/RadioInput.native.jsx":"227eb3d2893549ba6a7a12a3f0d9a5b0ba9a5df8","src/Radio/index.js":"07a6f7d8302f7942705766fb11034a4bd1ef9a32","src/RadioCard/RadioCard.jsx":"b9594a5364c1dacad54810ad25ceacf1d176c047","src/RadioCard/RadioCardGroup.jsx":"e1416874b8b5cd068985bb65056d4d0b76aa226c","src/RadioCard/index.js":"98c5762ea92a4c3cd014d9aa29935d67da4a2433","src/Search/Search.jsx":"e611ba32bd7e42d220cb5014d7d5bc456a8b8960","src/Search/dictionary.js":"915f90418afeb3d964667a8cd44729179d6accb6","src/Search/index.js":"e96a4b2864d1b57869e7ab27a62e9cf033d456ed","src/Select/Group.jsx":"ed00f24c67e7979a6e5058775e81c62a8c810031","src/Select/Group.native.jsx":"e949aca728b9df2e73b0c0f03a78af1c0c64287b","src/Select/Item.jsx":"a82c7147e30f64c0fae2be100de060eafecd9bb1","src/Select/Item.native.jsx":"3ae9bf5713525621674fa3db2f18dabed22c345a","src/Select/Picker.jsx":"fab65fafe5ec9542fe7554aee5a2a59eaced2a78","src/Select/Picker.native.jsx":"6c115fe65101945cf2610b038cc69b6d6414ac56","src/Select/Select.jsx":"94545fe114f75ea3470bc5ff7224d5c2943942d8","src/Select/index.js":"7169081eb3d414a76095b7f44c0f64460b7cd53e","src/SideNav/Item.jsx":"91ea090a00ebd3241ab7f040a377bcc06c78e92b","src/SideNav/ItemContent.jsx":"fd1d090470a79fedb8c991204c20668497e2e372","src/SideNav/ItemsGroup.jsx":"3da969daa7b6fe5aacdcb0fcd0ca6aedc0834ecf","src/SideNav/SideNav.jsx":"5d7a0984684f0621039b83d6121246fe39c6e11a","src/SideNav/index.js":"07bd001f3d51fcb378612a8f52ec51e0d37f207c","src/Skeleton/Skeleton.jsx":"de4d89173150e171cf1fc6781bbf0bc4e3070330","src/Skeleton/index.js":"032fa38fe8f7abfeca030301aa602a85a0f4e52c","src/Skeleton/skeleton.constant.js":"5b3a0266664ddc225df74ecd907f796f1536d517","src/Skeleton/skeletonWebAnimation.js":"a384b159901d16375545d84c4fee45363db206c0","src/Skeleton/useSkeletonNativeAnimation.js":"ca0baa551fece56b1f434cdb8edd91ea97e0d2c8","src/Spacer/Spacer.jsx":"7591757948f1294a4c0f5e7dff3bdcf05b2ae30e","src/Spacer/index.js":"2674e6f47037b82fa9587b2cbb081dcbe42b506c","src/StackView/StackView.jsx":"fa1b88e45678a1d941847c832f063667448e68e4","src/StackView/StackWrap.jsx":"6777b9d75a815576d1afa51fa4b216d4b945e2f4","src/StackView/StackWrap.native.jsx":"44fc5973fea70b528b3597519a4d0aec9fdd323d","src/StackView/StackWrapBox.jsx":"77b055aea20828a3276db5816a7444b5645feef9","src/StackView/StackWrapGap.jsx":"5ab7601d2cc194ae4acf5176f3fce4da550e9b6f","src/StackView/common.jsx":"2582f176e5c91071747089ce498f07e9ba02b87c","src/StackView/getStackedContent.jsx":"152e653f7a59e269a4a421296480ee3f00bee2cb","src/StackView/index.js":"8a3ad6ded46712f67e5a520220bdfee60cd262ed","src/StepTracker/Step.jsx":"050dfe88582d6879cc012c6a9d8940f5beea93ba","src/StepTracker/StepTracker.jsx":"07e941a8a23c92d84c7b5f1e7ddaa22efb8a2f4a","src/StepTracker/dictionary.js":"7a3e206b5be7ca14f9b6e6b0ab056ee733faabcd","src/StepTracker/index.js":"fd6442c015d6d61aba70553b3f6ddae3a45b5fc6","src/Tabs/HorizontalScroll.jsx":"688fd0bce41e28612afc5f128260b5910258e112","src/Tabs/ScrollViewEnd.jsx":"b1f722ad16516a3ede2f6696ad21d304bbf04809","src/Tabs/ScrollViewEnd.native.jsx":"b02f54552b6f81af2c530f1cbb2bf0e2cffb55d4","src/Tabs/Tabs.jsx":"44c2c8cee8176f8e5d9e8d2013c636eca482cfec","src/Tabs/TabsItem.jsx":"d9b8347c203e8dbb2a7449485b028743b37da999","src/Tabs/TabsScrollButton.jsx":"1a773c4bd00f2f5a6d71381becbb8650af2f0ff3","src/Tabs/dictionary.js":"a11323cbd5ecf131d3ca4a0c5f877b53c83bb4e9","src/Tabs/index.js":"d094ea3406d681aed9787075e4dcc6489aca99ab","src/Tabs/itemPositions.js":"0a4b023e5f10162344a8260888190f1f3ceb051d","src/Tags/Tags.jsx":"47189d8af503a63519913d122fe6305bcb7cf5e5","src/Tags/index.js":"ad96785c7165bd33a85b0b2589292098e2baf6ca","src/TextInput/TextArea.jsx":"60aa9869b8aa923fdd1cf976215b26ea10a78ee3","src/TextInput/TextInput.jsx":"8d5d320ac09ad6db771c695e5c272277dd6e2100","src/TextInput/TextInputBase.jsx":"dfaba5a82b0492ba4c568cefa3804f2f3f1a3be8","src/TextInput/index.js":"437c6f792ac811cd8eb2a8d3d4bcd2cc1423bb46","src/TextInput/propTypes.js":"a3d489be19df6b9bfacc907874bd5508c0b3b1ef","src/ThemeProvider/ThemeProvider.jsx":"a1b3d40de1ba0237bba08f2fbc911be636f64e9b","src/ThemeProvider/index.js":"e760f3d3e4257b79286ad0ea9177be3c28e2bbb0","src/ThemeProvider/useSetTheme.js":"93fb289621efc0dfd4539485e4fcd7cb74a0db41","src/ThemeProvider/useTheme.js":"d76b9a6607d6beeeedf18c3685d8f33464b93862","src/ThemeProvider/useThemeTokens.js":"9fa34bf510276c7569da30bce911917c19d24f8f","src/ThemeProvider/utils/index.js":"91b8a1965980bba29b286e4af92ccf2a33379d33","src/ThemeProvider/utils/styles.js":"c4c48493e02992b440ae13c79a1acfda713bb9fe","src/ThemeProvider/utils/theme-tokens.js":"f4405bf0510c9b234cd2afe39d684fd8e714777d","src/ToggleSwitch/ToggleSwitch.jsx":"3e6407386ffdb3c977ed2a494bbb8aee19163f82","src/ToggleSwitch/index.js":"e64f52f7b34559f2fda37c9c6d389aa93f9dd0ab","src/Tooltip/Backdrop.jsx":"f4fb660b21350756247e8c4cdd01614dceb071f7","src/Tooltip/Backdrop.native.jsx":"dafa102a533f3b4ad0c97900c340f9b70414a3f8","src/Tooltip/Tooltip.jsx":"82010507e0b1257c3c0d2fc6b617692c461dca4f","src/Tooltip/dictionary.js":"b68f778fe4885a66c30076593b665ffd2cf21768","src/Tooltip/getTooltipPosition.js":"a08ff8b8aaa124f70893642e5313e8c61a69e05c","src/Tooltip/index.js":"33178590407a2a57b03f2c54f84e099ddec5d981","src/TooltipButton/TooltipButton.jsx":"0f566ecd3904ecf2a4a0a00905e5782f82b33c47","src/TooltipButton/index.js":"fcb73069cb7c57a70f8103adf941c8e6a7b7d27a","src/Typography/Typography.jsx":"acafeee3153c57a0207d37333a522c7bfe329080","src/Typography/index.js":"3e2c97cd6c718560ce5a0e0cad5253535029133a","src/ViewportProvider/ViewportProvider.jsx":"e1b9b7ca47b8e1bd8a0234cef61aa2f9eedfbeb9","src/ViewportProvider/index.jsx":"09d29bb9b616094157963d1df37231463c14be38","src/ViewportProvider/useViewport.js":"853192112855ec8447ae0a96ae2e5f88cd260bbb","src/ViewportProvider/useViewportListener.js":"4af2d136d0a116630ff1017b9c493db3cdf5d723","src/index.js":"98f3952506885eaedc0185cac9bc30c7aa986a38","src/utils/a11y/index.js":"d4e9fc105374821fb29b3e6bd9befc971b9f946b","src/utils/a11y/textSize.js":"69fc64f71f7a566dae1c74cc71421c631d6c2261","src/utils/animation/index.js":"826e6a13f4d8ebecb37214942d54584d32458db7","src/utils/animation/useVerticalExpandAnimation.js":"53b8fd94922ef2502a2b56ed3bf7fec9181fb0f2","src/utils/children.jsx":"9fb155f3842dc28bb72bae73e7bad366cc1febc6","src/utils/index.js":"f9245114f7ec5140de99f613e5e29d89a295bf30","src/utils/info/index.js":"fa745289aec95c4c8760842abd9ef1a069e190f9","src/utils/info/platform/index.js":"35090561512cc6e6eb188d27297ac79c2040cf2a","src/utils/info/platform/platform.android.js":"d9ed506d3f13da692dd979e1b3e8e54e5953b9e3","src/utils/info/platform/platform.ios.js":"c0b73ee281326cb67bd1808062564685e963db7a","src/utils/info/platform/platform.js":"0749f2c09350d8c0a14bdafa185fb67efe92e169","src/utils/info/platform/platform.native.js":"e5f5be1e6c86f89d6a55331532077702b8c45a87","src/utils/info/versions.js":"a0cfb8630dcb8f2848ccc4d3a44ff3432215fa85","src/utils/input.js":"38c1c9516306840a291d0d715d738bbb41f5cffb","src/utils/pressability.js":"b4a038578ab619307d4a6e59b47f0acf966a56ae","src/utils/propTypes.js":"2e9481e906461ef5fed319973ca0bf24b2b418fc","src/utils/useCopy.js":"84c6abb9ef6e9f5c6fddde3b5bc8cb4869038fd6","src/utils/useHash.js":"9bd7b8260259ec6e35d0f944cc0a01042338cf97","src/utils/useHash.native.js":"5bf9b2880abf96ed34105b2c6aac8110e429dacb","src/utils/useResponsiveProp.js":"63d1cc35b6ea313b35e3f23e3bc7a7c0bad74e76","src/utils/useSpacingScale.js":"0c1106da09be680fc6155e76514250845e56bc0e","src/utils/useUniqueId.js":"cf003781273080b70460791569909d6b19b28c06","stories/A11yText/A11yText.stories.jsx":"06dbc198dccf05309eb9f991884b050462a06de0","stories/ActivityIndicator/ActivityIndicator.stories.jsx":"d64e822e56629900677fd4d630f3f5609d5b449e","stories/Box/Box.stories.jsx":"facdb8b9c831bcfbe20d5f7274405febd7c7ea4e","stories/Button/Button.stories.jsx":"8a89aad8d0eca38bc23f83e8e98ff41a492d91b7","stories/Button/ButtonGroup.stories.jsx":"c789e0cae74ec586ad89cba0cdf981e7a8f47d8c","stories/Button/ButtonLink.stories.jsx":"3a74a862fa232243f79c0f7392da7b0ffe2fae1b","stories/Card/Card.stories.jsx":"e2e836873c4a2860533f9414e9135d9b1fe4bae6","stories/Checkbox/Checkbox.stories.jsx":"623f5f2600490c5ec1fef2d6b2e2bac15bacbd0d","stories/Divider/Divider.stories.jsx":"915e48a437371c7b0a9c5e3217bfb7472a1dc60f","stories/ExpandCollapse/ExpandCollapse.stories.jsx":"0202d99e1b6261b2982f298d9c4ff19497bf9d39","stories/Feedback/Feedback.stories.jsx":"aa681938edb512626fdcf870b93729ead7988cc9","stories/FlexGrid/01 FlexGrid.stories.jsx":"2a167c821373be06f3711dda96ffb2a3a2359b6a","stories/FlexGrid/02 Row.stories.jsx":"6080fd863e2b8a1937910a5542ebfa1c5c785354","stories/FlexGrid/03 Col.stories.jsx":"275468c54dc745607b666743922e0fda2620ecfe","stories/Icon/Icon.stories.jsx":"4f4562a5e3ede26d60778d5d23b506402802e2a6","stories/IconButton/IconButton.stories.jsx":"a719e5caa45ff4422243774e412228cf497523e4","stories/InputLabel/InputLabel.stories.jsx":"d617e10f6d4103d5cf68c7ec298511870038ae81","stories/Link/ChevronLink.stories.jsx":"0e57c45603f49430bcc6413789e6707a343ec350","stories/Link/Link.stories.jsx":"0bdd2c2a33c3bc46ad42bf156adc4c138d6b0770","stories/Link/TextButton.stories.jsx":"b12469c061f4672904bea80d9e78afcef6385551","stories/List/List.stories.jsx":"020a87ad7ec1bf6b4feaabfdaa367a6b1432bbce","stories/Modal/Modal.stories.jsx":"9251f7cc1a3087b6407aceda5f0ecf277532f1ff","stories/Notification/Notification.stories.jsx":"7e7d0e0af09017dce8d9bbf2d2d631cd0c76ee84","stories/Pagination/Pagination.stories.jsx":"b2101af449f199f03b0eae520d8ae52557484eb5","stories/Progress/Progress.stories.jsx":"e20b7fb0dc12b06044bc5670e55f1e14422586f5","stories/Radio/Radio.stories.jsx":"afa8390003bf7318b3388bc31cfb504de5da5c99","stories/RadioCard/RadioCard.stories.jsx":"12acafccd9b754dea81e336f54cecfa6db38cb59","stories/Search/Search.stories.jsx":"a28efe6a293d80f717ec149792e90d2ec1e8162f","stories/Select/Select.stories.jsx":"8d73fb9850834d4c837221ef028fa3c7fed124a8","stories/SideNav/SideNav.stories.jsx":"36f98572fa651be8db6d8f3633cef8d5db2221e6","stories/SideNav/SideNavItem.stories.jsx":"a9bf9189f7c8c2c322ffc291eaab24e00259e9da","stories/SideNav/SideNavItemsGroup.stories.jsx":"316adeb93421a258792b0810cf1cb8ca43384453","stories/Skeleton/Skeleton.stories.jsx":"e517538b89ff539b196712dbcaebb45e11004833","stories/Spacer/Spacer.stories.jsx":"151762f905deaadf7396369329633f3b69aaba26","stories/StackView/StackView.stories.jsx":"e7d9b663dc64996d86aa5c62fb74c587bca13b82","stories/StackView/StackWrap.stories.jsx":"38f73364c6fead41694e9f9d6b36f9ffc4f34e66","stories/StepTracker/StepTracker.stories.jsx":"c40dc2265e5b37f58a621eae1f2509eaa35b5eee","stories/Tabs/Tabs.stories.jsx":"85458254c44deea12caa178511e4bf15a8195f18","stories/Tags/Tags.stories.jsx":"370c180758881efab1ac3966fe7a39cd2904b593","stories/TextInput/TextArea.stories.jsx":"02d62f5de6582aad07f9add961af22adfa7814c9","stories/TextInput/TextInput.stories.jsx":"26fd05b15e02bf265670310d52e82c97a0f50341","stories/ToggleSwitch/ToggleSwitch.stories.jsx":"a473e05d4f5938d2835e21c28a5b6da5db582515","stories/Tooltip/Tooltip.stories.jsx":"e03b7c0ce05ba537ab2582bd26217230c47d0fc0","stories/TooltipButton/TooltipButton.stories.jsx":"81b9f4f91f3e29ffc1f70b20b61cd54b7be38551","stories/Typography/Typography.stories.jsx":"3b3bf6c8b6bb6272ffc41a4fbd9c2365cf14ca82","stories/platform-supports.jsx":"1e6f6f8fd3e09f99fe667cc46d86c7da50b399e4","stories/platform-supports.native.jsx":"fcfbb23b926b3440b0f684119832a388e880bd82","stories/supports.jsx":"07523b43ff784f8a95c0f8c9b74e1c10e57fd5e3"},"deps":{"@telus-uds/system-constants":1640765985142.2947,"@telus-uds/system-themes":1640765985286.2964}}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,71 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.0.2-prerelease.9](https://github.com/telus/universal-design-system/compare/@telus-uds/components-base/v0.0.2-prerelease.8...@telus-uds/components-base/v0.0.2-prerelease.9) (2021-12-29)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **base:** implement IconButton ([#958](https://github.com/telus/universal-design-system/issues/958)) ([c3ff7dd](https://github.com/telus/universal-design-system/commit/c3ff7dd9fb76123d3ff8409e507c89ad91b7fef2))
|
|
10
|
+
|
|
11
|
+
### [0.0.2-prerelease.8](https://github.com/telus/universal-design-system/compare/@telus-uds/components-base/v0.0.2-prerelease.7...@telus-uds/components-base/v0.0.2-prerelease.8) (2021-12-15)
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
- **base:** add `ProgressBar` component ([#890](https://github.com/telus/universal-design-system/issues/890)) ([b98315c](https://github.com/telus/universal-design-system/commit/b98315cc7dabb2c7130c62c9c3bbf6fdfb7419a0))
|
|
16
|
+
- **base:** add `Tabs` component ([#908](https://github.com/telus/universal-design-system/issues/908)) ([073bbd2](https://github.com/telus/universal-design-system/commit/073bbd2a0b4282112aa434f8e97e505fa8b4b92f))
|
|
17
|
+
- **base:** add base `StepTracker` component ([#800](https://github.com/telus/universal-design-system/issues/800)) ([aa7d472](https://github.com/telus/universal-design-system/commit/aa7d47297c1d9ba13daef60b5184ead07b95cd52))
|
|
18
|
+
- **base:** add Group fieldsets for RadioCard, Radio, Checkbox ([#875](https://github.com/telus/universal-design-system/issues/875)) ([4b99987](https://github.com/telus/universal-design-system/commit/4b999872714144b643f676d3d473369d605b3eea))
|
|
19
|
+
- **base:** add Notification ([#848](https://github.com/telus/universal-design-system/issues/848)) ([ee6a83e](https://github.com/telus/universal-design-system/commit/ee6a83e05dc991acef3b9449f78c17d43d63b248))
|
|
20
|
+
- **base:** add RadioCard and PressableCardBase ([#865](https://github.com/telus/universal-design-system/issues/865)) ([55c6fa2](https://github.com/telus/universal-design-system/commit/55c6fa293f2fa09499aed763910d3791eefbc4a1))
|
|
21
|
+
- **base:** add the Modal component ([#878](https://github.com/telus/universal-design-system/issues/878)) ([431d4cd](https://github.com/telus/universal-design-system/commit/431d4cd2c1a7f4ce30b453d437b9f5d7b69fd251))
|
|
22
|
+
- **base:** add the Search component ([#798](https://github.com/telus/universal-design-system/issues/798)) ([7b974df](https://github.com/telus/universal-design-system/commit/7b974df12d2bf0cb94b6360091bac8ac57dd7245))
|
|
23
|
+
- **base:** handle `Tabs` hashes, with `useHash` ([#910](https://github.com/telus/universal-design-system/issues/910)) ([8ad6507](https://github.com/telus/universal-design-system/commit/8ad65072c249e8439e7d1c7e55fee535a5f30b4e))
|
|
24
|
+
- **ds-allium:** `PriceLockup` implmementation ([#858](https://github.com/telus/universal-design-system/issues/858)) ([8669b9e](https://github.com/telus/universal-design-system/commit/8669b9e3f80261bd18962dfba5d774c90a5f4ebb))
|
|
25
|
+
- **ds-allium:** add `StoryCard` component ([#880](https://github.com/telus/universal-design-system/issues/880)) ([6f0616d](https://github.com/telus/universal-design-system/commit/6f0616dc761cbdcf470bc2505d773eb362bf800e))
|
|
26
|
+
- **ds-allium:** add Modal content types ([#896](https://github.com/telus/universal-design-system/issues/896)) ([f070447](https://github.com/telus/universal-design-system/commit/f070447fc796139046a96892aab34b74bc1974a4))
|
|
27
|
+
- **ds-allium:** add SubNavigation ([#931](https://github.com/telus/universal-design-system/issues/931)) ([834ee7b](https://github.com/telus/universal-design-system/commit/834ee7bbe811ea8477ac4870466ae573d73e3a8f))
|
|
28
|
+
- use built icons ([#809](https://github.com/telus/universal-design-system/issues/809)) ([120802e](https://github.com/telus/universal-design-system/commit/120802e11bcb4352b9d2e171525f6dc5b687c023))
|
|
29
|
+
|
|
30
|
+
### Bug Fixes
|
|
31
|
+
|
|
32
|
+
- **base:** add outer border to Radio, extract RadioButton ([#847](https://github.com/telus/universal-design-system/issues/847)) ([b563335](https://github.com/telus/universal-design-system/commit/b563335087fbfffe6739ad185fe4fc7886ef4e4d))
|
|
33
|
+
- **base:** fix Tags icon, update Allium Tags/ButtonGroup ([#888](https://github.com/telus/universal-design-system/issues/888)) ([6d6ff35](https://github.com/telus/universal-design-system/commit/6d6ff35caba4c9c6c99eacf015be56e8862ad170))
|
|
34
|
+
- **components-base:** Remove named import of json file ([#930](https://github.com/telus/universal-design-system/issues/930)) ([9db1cbe](https://github.com/telus/universal-design-system/commit/9db1cbe501d3c049f1f6476720a3ee9bd8b4d736))
|
|
35
|
+
- fix storybook error from proptypes ([#857](https://github.com/telus/universal-design-system/issues/857)) ([175537a](https://github.com/telus/universal-design-system/commit/175537a6ac4b48699f66b1a59eb35910cbf9930b))
|
|
36
|
+
- update test theme icons + cleanup ds-allium icon usage ([#860](https://github.com/telus/universal-design-system/issues/860)) ([c2c0a84](https://github.com/telus/universal-design-system/commit/c2c0a84914eed9dafaf47acca30e1f5119f19e57))
|
|
37
|
+
|
|
38
|
+
### [0.0.2-prerelease.7](https://github.com/telus/universal-design-system/compare/@telus-uds/components-base/v0.0.2-prerelease.6...@telus-uds/components-base/v0.0.2-prerelease.7) (2021-11-23)
|
|
39
|
+
|
|
40
|
+
### Features
|
|
41
|
+
|
|
42
|
+
- **base:** add `Radio` button ([#731](https://github.com/telus/universal-design-system/issues/731)) ([ad1613c](https://github.com/telus/universal-design-system/commit/ad1613c547fe3b0cdf1490a92267f32045356133))
|
|
43
|
+
- **base:** add base `Checkbox` component ([#706](https://github.com/telus/universal-design-system/issues/706)) ([a3fa01a](https://github.com/telus/universal-design-system/commit/a3fa01ad0da342be02c15284a103c22d7b315ae9))
|
|
44
|
+
- **base:** add Tags component ([#785](https://github.com/telus/universal-design-system/issues/785)) ([90bbf40](https://github.com/telus/universal-design-system/commit/90bbf4035a0bc0a8cdf319d9b366c8498c0dfb56))
|
|
45
|
+
- **base:** add TextArea ([#720](https://github.com/telus/universal-design-system/issues/720)) ([b18cae3](https://github.com/telus/universal-design-system/commit/b18cae3357375019ecc4e24e78ed9a2345b26139))
|
|
46
|
+
- **base:** add the Select component ([#759](https://github.com/telus/universal-design-system/issues/759)) ([9cfdf84](https://github.com/telus/universal-design-system/commit/9cfdf846b7a273dd140537b60e08f30a70c13a66))
|
|
47
|
+
- **base:** adding list component ([#296](https://github.com/telus/universal-design-system/issues/296)) ([#703](https://github.com/telus/universal-design-system/issues/703)) ([50e474d](https://github.com/telus/universal-design-system/commit/50e474d3d7f1988f5971a10be8416c8ac510626f))
|
|
48
|
+
- **base:** implementing base Skeleton component ([#770](https://github.com/telus/universal-design-system/issues/770)) ([1138f08](https://github.com/telus/universal-design-system/commit/1138f08885f4cf67fc0fb7273758d20cc0a989c1)), closes [#296](https://github.com/telus/universal-design-system/issues/296) [#296](https://github.com/telus/universal-design-system/issues/296) [#296](https://github.com/telus/universal-design-system/issues/296) [#296](https://github.com/telus/universal-design-system/issues/296) [#296](https://github.com/telus/universal-design-system/issues/296) [#296](https://github.com/telus/universal-design-system/issues/296) [#296](https://github.com/telus/universal-design-system/issues/296)
|
|
49
|
+
|
|
50
|
+
### Bug Fixes
|
|
51
|
+
|
|
52
|
+
- **base:** adjust event handlers for checkbox / radio inputs on Web ([#820](https://github.com/telus/universal-design-system/issues/820)) ([87624d2](https://github.com/telus/universal-design-system/commit/87624d29166ce85aeaf7dc1db4dc5b60ecd170a5))
|
|
53
|
+
- **base:** fix button text alignment ([#794](https://github.com/telus/universal-design-system/issues/794)) ([9671087](https://github.com/telus/universal-design-system/commit/9671087477eb45b0d3c872b47f1d24cdd43a727f))
|
|
54
|
+
- **base:** various visual fixes for native/app ([#797](https://github.com/telus/universal-design-system/issues/797)) ([a00ab12](https://github.com/telus/universal-design-system/commit/a00ab124c40e1ea46441270acfd64ae0f37b0a68))
|
|
55
|
+
- export a11ytext [prerelease-components-base] ([#830](https://github.com/telus/universal-design-system/issues/830)) ([af627a2](https://github.com/telus/universal-design-system/commit/af627a2b4fa4cbf78983521bbb66b86ab9f87601))
|
|
56
|
+
- **jest:** pick .web files in -allium-web tests ([#765](https://github.com/telus/universal-design-system/issues/765)) ([e0b1bd5](https://github.com/telus/universal-design-system/commit/e0b1bd5edcc52b916685f8c5dcd8d2901d2ecdbd))
|
|
57
|
+
|
|
58
|
+
### [0.0.2-prerelease.6](https://github.com/telus/universal-design-system/compare/@telus-uds/components-base/v0.0.2-prerelease.5...@telus-uds/components-base/v0.0.2-prerelease.6) (2021-11-08)
|
|
59
|
+
|
|
60
|
+
### Features
|
|
61
|
+
|
|
62
|
+
- **base:** add Tooltip component ([#687](https://github.com/telus/universal-design-system/issues/687)) ([38aaad4](https://github.com/telus/universal-design-system/commit/38aaad43d664b76e85a264901df5e1ca045a0304))
|
|
63
|
+
- **base:** responsive directions with `useResponsiveProp` ([#677](https://github.com/telus/universal-design-system/issues/677)) ([b61e6a7](https://github.com/telus/universal-design-system/commit/b61e6a75159ce3fbd81758148ff8d10ab73cb409))
|
|
64
|
+
|
|
65
|
+
### Bug Fixes
|
|
66
|
+
|
|
67
|
+
- **base:** fix Tooltip positioning when page scrollbar is rendered ([#728](https://github.com/telus/universal-design-system/issues/728)) ([c52167d](https://github.com/telus/universal-design-system/commit/c52167d94b1306749f2755ed2c4fb39bedd5dbf6))
|
|
68
|
+
- **base:** refresh viewport on first render, for SSR ([#712](https://github.com/telus/universal-design-system/issues/712)) ([b6288c0](https://github.com/telus/universal-design-system/commit/b6288c0e003a73f88e3fa5743ee085a767c53a0b))
|
|
69
|
+
|
|
5
70
|
### [0.0.2-prerelease.5](https://github.com/telus/universal-design-system/compare/@telus-uds/components-base/v0.0.2-prerelease.4...@telus-uds/components-base/v0.0.2-prerelease.5) (2021-10-27)
|
|
6
71
|
|
|
7
72
|
### Features
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
// this is a copy of an autogenerated file
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
|
|
4
|
+
import * as React from 'react'
|
|
5
|
+
|
|
6
|
+
const Accessible = ({ title, titleId, size, color }) =>
|
|
7
|
+
/*#__PURE__*/ React.createElement(
|
|
8
|
+
'svg',
|
|
9
|
+
{
|
|
10
|
+
viewBox: '0 0 24 24',
|
|
11
|
+
height: size,
|
|
12
|
+
width: size,
|
|
13
|
+
fill: color,
|
|
14
|
+
role: title ? 'img' : undefined,
|
|
15
|
+
'aria-hidden': !title,
|
|
16
|
+
'aria-labelledby': titleId
|
|
17
|
+
},
|
|
18
|
+
title
|
|
19
|
+
? /*#__PURE__*/ React.createElement(
|
|
20
|
+
'title',
|
|
21
|
+
{
|
|
22
|
+
id: titleId
|
|
23
|
+
},
|
|
24
|
+
title
|
|
25
|
+
)
|
|
26
|
+
: null,
|
|
27
|
+
/*#__PURE__*/ React.createElement('path', {
|
|
28
|
+
d: 'M4.231 12.257l.662.662a5.87 5.87 0 00-.982 3.235c0 1.585.618 3.078 1.74 4.2a5.903 5.903 0 004.2 1.739 5.839 5.839 0 002.991-.831l.242-.151.647.645c-1.167.81-2.517 1.244-3.88 1.244a6.83 6.83 0 01-4.845-2.003A6.805 6.805 0 013 16.154c0-1.315.378-2.568 1.067-3.65l.165-.247zm5.81-9.99c.178 0 .358.037.527.112l.175.093c.575.334 5.897 3.426 5.907 3.433.307.192.507.492.579.822.124.433.054.913-.22 1.3l-.1.125-2.68 2.738c.106.088.21.178.313.273l.166.162.014.016 5.136-.603.07-.002a1.3 1.3 0 011.3 1.265l-.004.14-.39 6.71a1.46 1.46 0 01-1.455 1.369l-.094-.003a1.456 1.456 0 01-1.362-1.41l.003-.141.337-4.465a.09.09 0 00-.09-.103l-1.71.3a6.86 6.86 0 01-.809 5.367l-.165.254-.66-.66a5.882 5.882 0 00.96-3.206 5.903 5.903 0 00-1.738-4.2 5.904 5.904 0 00-4.201-1.74c-1.06 0-2.073.291-2.966.813l-.24.148-.648-.648a6.827 6.827 0 012.94-1.156l.312-.035 2.507-2.778-1.5-.876L8.33 7.31a1.47 1.47 0 01-2.081.002c-.542-.542-.554-1.423-.078-2.008l.102-.112 2.902-2.596c.244-.217.552-.33.865-.33zm10.24 10.386c.096-.848-.406-.964-.75-.955l-.061.003-3.975.467c.223.338.41.701.576 1.073l.12.28 1.75-.308.077-.022.156-.004c.288 0 .562.125.754.34.15.174.236.392.246.618l-.003.136-.337 4.454a.541.541 0 00.136.389.536.536 0 00.287.171l.086.013c.289 0 .509-.18.567-.422l.015-.093.357-6.14zm-10.24-9.475a.387.387 0 00-.202.056l-.057.043L6.905 5.85c-.215.23-.222.607-.012.817a.558.558 0 00.725.057l.068-.058.027-.027 2.444-2.07 3.024 1.766-2.663 2.952a6.958 6.958 0 012.683.85l.31.183 2.727-2.784a.602.602 0 00.135-.46l-.02-.1-.013-.053a.385.385 0 00-.165-.241l-5.94-3.451a.38.38 0 00-.194-.053zM17.743 1c1.16 0 2.106.945 2.106 2.106a2.11 2.11 0 01-2.106 2.107 2.11 2.11 0 01-2.106-2.107c0-1.161.945-2.106 2.106-2.106zm0 .91a1.196 1.196 0 000 2.392 1.196 1.196 0 000-2.391z',
|
|
29
|
+
fillRule: 'evenodd'
|
|
30
|
+
})
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
export default Accessible
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
// this is a copy of an autogenerated file
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
|
|
4
|
+
import * as React from 'react'
|
|
5
|
+
import Svg, { Path } from 'react-native-svg'
|
|
6
|
+
|
|
7
|
+
const Accessible = ({ title, titleId, size, color }) =>
|
|
8
|
+
/*#__PURE__*/ React.createElement(
|
|
9
|
+
Svg,
|
|
10
|
+
{
|
|
11
|
+
viewBox: '0 0 24 24',
|
|
12
|
+
height: size,
|
|
13
|
+
width: size,
|
|
14
|
+
fill: color,
|
|
15
|
+
'aria-labelledby': titleId
|
|
16
|
+
},
|
|
17
|
+
title
|
|
18
|
+
? /*#__PURE__*/ React.createElement(
|
|
19
|
+
'title',
|
|
20
|
+
{
|
|
21
|
+
id: titleId
|
|
22
|
+
},
|
|
23
|
+
title
|
|
24
|
+
)
|
|
25
|
+
: null,
|
|
26
|
+
/*#__PURE__*/ React.createElement(Path, {
|
|
27
|
+
d: 'M4.231 12.257l.662.662a5.87 5.87 0 00-.982 3.235c0 1.585.618 3.078 1.74 4.2a5.903 5.903 0 004.2 1.739 5.839 5.839 0 002.991-.831l.242-.151.647.645c-1.167.81-2.517 1.244-3.88 1.244a6.83 6.83 0 01-4.845-2.003A6.805 6.805 0 013 16.154c0-1.315.378-2.568 1.067-3.65l.165-.247zm5.81-9.99c.178 0 .358.037.527.112l.175.093c.575.334 5.897 3.426 5.907 3.433.307.192.507.492.579.822.124.433.054.913-.22 1.3l-.1.125-2.68 2.738c.106.088.21.178.313.273l.166.162.014.016 5.136-.603.07-.002a1.3 1.3 0 011.3 1.265l-.004.14-.39 6.71a1.46 1.46 0 01-1.455 1.369l-.094-.003a1.456 1.456 0 01-1.362-1.41l.003-.141.337-4.465a.09.09 0 00-.09-.103l-1.71.3a6.86 6.86 0 01-.809 5.367l-.165.254-.66-.66a5.882 5.882 0 00.96-3.206 5.903 5.903 0 00-1.738-4.2 5.904 5.904 0 00-4.201-1.74c-1.06 0-2.073.291-2.966.813l-.24.148-.648-.648a6.827 6.827 0 012.94-1.156l.312-.035 2.507-2.778-1.5-.876L8.33 7.31a1.47 1.47 0 01-2.081.002c-.542-.542-.554-1.423-.078-2.008l.102-.112 2.902-2.596c.244-.217.552-.33.865-.33zm10.24 10.386c.096-.848-.406-.964-.75-.955l-.061.003-3.975.467c.223.338.41.701.576 1.073l.12.28 1.75-.308.077-.022.156-.004c.288 0 .562.125.754.34.15.174.236.392.246.618l-.003.136-.337 4.454a.541.541 0 00.136.389.536.536 0 00.287.171l.086.013c.289 0 .509-.18.567-.422l.015-.093.357-6.14zm-10.24-9.475a.387.387 0 00-.202.056l-.057.043L6.905 5.85c-.215.23-.222.607-.012.817a.558.558 0 00.725.057l.068-.058.027-.027 2.444-2.07 3.024 1.766-2.663 2.952a6.958 6.958 0 012.683.85l.31.183 2.727-2.784a.602.602 0 00.135-.46l-.02-.1-.013-.053a.385.385 0 00-.165-.241l-5.94-3.451a.38.38 0 00-.194-.053zM17.743 1c1.16 0 2.106.945 2.106 2.106a2.11 2.11 0 01-2.106 2.107 2.11 2.11 0 01-2.106-2.107c0-1.161.945-2.106 2.106-2.106zm0 .91a1.196 1.196 0 000 2.392 1.196 1.196 0 000-2.391z',
|
|
28
|
+
fillRule: 'evenodd'
|
|
29
|
+
})
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
export default Accessible
|