@hero-design/rn 7.6.1-alpha.0 → 7.8.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/.expo/README.md +15 -0
- package/.expo/packager-info.json +10 -0
- package/.expo/prebuild/cached-packages.json +4 -0
- package/.expo/settings.json +10 -0
- package/.expo/xcodebuild-error.log +2 -0
- package/.expo/xcodebuild.log +11199 -0
- package/.turbo/turbo-build.log +2 -2
- package/.turbo/turbo-publish:npm.log +0 -0
- package/es/index.js +4528 -432
- package/lib/index.js +4616 -516
- package/package.json +6 -8
- package/rollup.config.js +1 -7
- package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
- package/src/components/Avatar/index.tsx +1 -1
- package/src/components/Button/Button.tsx +4 -2
- package/src/components/Button/LoadingIndicator/StyledLoadingIndicator.tsx +7 -2
- package/src/components/Button/LoadingIndicator/__tests__/StyledLoadingIndicator.spec.tsx +2 -0
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +40 -0
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +242 -0
- package/src/components/Button/LoadingIndicator/__tests__/index.spec.tsx +2 -0
- package/src/components/Button/LoadingIndicator/index.tsx +3 -1
- package/src/components/Button/StyledButton.tsx +15 -2
- package/src/components/Button/__tests__/Button.spec.tsx +2 -0
- package/src/components/Button/__tests__/StyledButton.spec.tsx +12 -0
- package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +314 -0
- package/src/components/Card/DataCard/StyledDataCard.tsx +20 -0
- package/src/components/Card/DataCard/__tests__/StyledDataCard.spec.tsx +24 -0
- package/src/components/Card/DataCard/__tests__/__snapshots__/StyledDataCard.spec.tsx.snap +97 -0
- package/src/components/Card/DataCard/__tests__/__snapshots__/index.spec.tsx.snap +156 -0
- package/src/components/Card/DataCard/__tests__/index.spec.tsx +30 -0
- package/src/components/Card/DataCard/index.tsx +35 -0
- package/src/components/Card/index.tsx +7 -2
- package/src/components/Checkbox/StyledCheckbox.tsx +18 -0
- package/src/components/Checkbox/__tests__/StyledCheckbox.spec.tsx +10 -0
- package/src/components/Checkbox/__tests__/__snapshots__/StyledCheckbox.spec.tsx.snap +31 -0
- package/src/components/Checkbox/__tests__/__snapshots__/index.spec.tsx.snap +63 -0
- package/src/components/Checkbox/__tests__/index.spec.tsx +24 -0
- package/src/components/Checkbox/index.tsx +58 -0
- package/src/components/Collapse/index.tsx +1 -1
- package/src/components/Icon/index.tsx +1 -1
- package/src/components/List/BasicListItem.tsx +98 -0
- package/src/components/List/ListItem.tsx +142 -0
- package/src/components/List/StyledBasicListItem.tsx +34 -0
- package/src/components/List/StyledListItem.tsx +82 -0
- package/src/components/List/__tests__/BasicListItem.spec.tsx +37 -0
- package/src/components/List/__tests__/ListItem.spec.tsx +110 -0
- package/src/components/List/__tests__/StyledBasicListItem.spec.tsx +24 -0
- package/src/components/List/__tests__/StyledListItem.spec.tsx +48 -0
- package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +103 -0
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +760 -0
- package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +105 -0
- package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +200 -0
- package/src/components/List/index.tsx +14 -0
- package/src/components/SectionHeading/index.tsx +1 -1
- package/src/components/Select/Footer.tsx +13 -0
- package/src/components/Select/MultiSelect/Option.tsx +25 -0
- package/src/components/Select/MultiSelect/OptionList.tsx +30 -63
- package/src/components/Select/MultiSelect/__tests__/Option.spec.tsx +16 -0
- package/src/components/Select/MultiSelect/__tests__/OptionList.spec.tsx +42 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +70 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +627 -0
- package/src/components/Select/MultiSelect/__tests__/index.spec.tsx +6 -6
- package/src/components/Select/MultiSelect/index.tsx +8 -7
- package/src/components/Select/SingleSelect/Option.tsx +23 -0
- package/src/components/Select/SingleSelect/OptionList.tsx +43 -0
- package/src/components/Select/SingleSelect/__tests__/Option.spec.tsx +16 -0
- package/src/components/Select/SingleSelect/__tests__/OptionList.spec.tsx +42 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +56 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +571 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +1430 -0
- package/src/components/Select/SingleSelect/__tests__/index.spec.tsx +89 -0
- package/src/components/Select/SingleSelect/index.tsx +89 -0
- package/src/components/Select/{MultiSelect/StyledMultiSelect.tsx → StyledSelect.tsx} +1 -1
- package/src/components/Select/{MultiSelect/__tests__/StyledMultiSelect.spec.tsx → __tests__/StyledSelect.spec.tsx} +2 -2
- package/src/components/Select/{MultiSelect/__tests__/__snapshots__/StyledMultiSelect.spec.tsx.snap → __tests__/__snapshots__/StyledSelect.spec.tsx.snap} +0 -0
- package/src/components/Select/helpers.tsx +18 -0
- package/src/components/Select/index.tsx +4 -3
- package/src/components/Select/{MultiSelect/types.ts → types.ts} +0 -0
- package/src/components/Switch/index.tsx +1 -1
- package/src/components/Toast/StyledToast.tsx +65 -0
- package/src/components/Toast/Toast.tsx +123 -0
- package/src/components/Toast/ToastContainer.tsx +88 -0
- package/src/components/Toast/ToastContext.ts +25 -0
- package/src/components/Toast/ToastProvider.tsx +53 -0
- package/src/components/Toast/__tests__/Toast.spec.tsx +125 -0
- package/src/components/Toast/__tests__/ToastContainer.spec.tsx +107 -0
- package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +655 -0
- package/src/components/Toast/__tests__/__snapshots__/ToastContainer.spec.tsx.snap +93 -0
- package/src/components/Toast/index.tsx +11 -0
- package/src/components/Toast/types.ts +70 -0
- package/src/components/Toolbar/StyledToolbar.tsx +42 -0
- package/src/components/Toolbar/ToolbarGroup.tsx +31 -0
- package/src/components/Toolbar/ToolbarItem.tsx +57 -0
- package/src/components/Toolbar/__tests__/ToolbarGroup.spec.tsx +32 -0
- package/src/components/Toolbar/__tests__/ToolbarItem.spec.tsx +57 -0
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarGroup.spec.tsx.snap +391 -0
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +355 -0
- package/src/components/Toolbar/index.tsx +18 -0
- package/src/components/Typography/Text/StyledText.tsx +8 -1
- package/src/components/Typography/Text/__tests__/StyledText.spec.tsx +5 -0
- package/src/components/Typography/Text/__tests__/__snapshots__/StyledText.spec.tsx.snap +110 -0
- package/src/components/Typography/Text/index.tsx +9 -2
- package/src/index.ts +8 -0
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +119 -2
- package/src/theme/components/button.ts +2 -0
- package/src/theme/components/card.ts +8 -1
- package/src/theme/components/checkbox.ts +37 -0
- package/src/theme/components/list.ts +46 -0
- package/src/theme/components/toast.ts +33 -0
- package/src/theme/components/toolbar.ts +27 -0
- package/src/theme/components/typography.ts +4 -0
- package/src/theme/global/colors.ts +9 -2
- package/src/theme/global/space.ts +2 -0
- package/src/theme/index.ts +12 -0
- package/tsconfig.json +1 -2
- package/types/components/Alert/StyledAlert.d.ts +0 -0
- package/types/components/Alert/__tests__/index.spec.d.ts +0 -0
- package/types/components/Alert/index.d.ts +0 -0
- package/types/components/Avatar/index.d.ts +1 -1
- package/types/components/Button/Button.d.ts +2 -2
- package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +1 -1
- package/types/components/Button/LoadingIndicator/index.d.ts +1 -1
- package/types/components/Button/StyledButton.d.ts +2 -2
- package/{es/components/Card/StyledCard.d.ts → types/components/Card/DataCard/StyledDataCard.d.ts} +5 -6
- package/{es/components/Avatar/__tests__/StyledAvatar.spec.d.ts → types/components/Card/DataCard/__tests__/StyledDataCard.spec.d.ts} +0 -0
- package/{es/components/Avatar → types/components/Card/DataCard}/__tests__/index.spec.d.ts +0 -0
- package/types/components/Card/DataCard/index.d.ts +22 -0
- package/types/components/Card/index.d.ts +7 -3
- package/types/components/Checkbox/StyledCheckbox.d.ts +0 -0
- package/types/components/Checkbox/__tests__/StyledCheckbox.spec.d.ts +0 -0
- package/types/components/Checkbox/__tests__/index.spec.d.ts +0 -0
- package/types/components/Checkbox/index.d.ts +1 -1
- package/types/components/Collapse/index.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/List/BasicListItem.d.ts +43 -0
- package/types/components/List/ListItem.d.ts +51 -0
- package/types/components/List/StyledBasicListItem.d.ts +29 -0
- package/types/components/List/StyledListItem.d.ts +51 -0
- package/{es/components/Badge/__tests__/Badge.spec.d.ts → types/components/List/__tests__/BasicListItem.spec.d.ts} +0 -0
- package/{es/components/Badge/__tests__/Status.spec.d.ts → types/components/List/__tests__/ListItem.spec.d.ts} +0 -0
- package/{es/components/BottomNavigation/__tests__/index.spec.d.ts → types/components/List/__tests__/StyledBasicListItem.spec.d.ts} +0 -0
- package/{es/components/Button/__tests__/index.spec.d.ts → types/components/List/__tests__/StyledListItem.spec.d.ts} +0 -0
- package/types/components/List/index.d.ts +8 -0
- package/types/components/Radio/types.d.ts +0 -0
- package/types/components/SectionHeading/__tests__/StyledHeading.spec.d.ts +0 -0
- package/types/components/SectionHeading/index.d.ts +1 -1
- package/types/components/Select/Footer.d.ts +5 -0
- package/types/components/Select/MultiSelect/Footer.d.ts +0 -0
- package/types/components/Select/MultiSelect/Option.d.ts +6 -0
- package/types/components/Select/MultiSelect/OptionList.d.ts +7 -1
- package/types/components/Select/MultiSelect/StyledMultiSelect.d.ts +0 -0
- package/{es/components/Card/__tests__/StyledCard.spec.d.ts → types/components/Select/MultiSelect/__tests__/Option.spec.d.ts} +0 -0
- package/{es/components/Card/__tests__/index.spec.d.ts → types/components/Select/MultiSelect/__tests__/OptionList.spec.d.ts} +0 -0
- package/types/components/Select/MultiSelect/__tests__/StyledMultiSelect.spec.d.ts +0 -0
- package/types/components/Select/MultiSelect/__tests__/index.spec.d.ts +0 -0
- package/types/components/Select/MultiSelect/index.d.ts +4 -4
- package/types/components/Select/MultiSelect/types.d.ts +0 -0
- package/types/components/Select/SingleSelect/Option.d.ts +6 -0
- package/types/components/Select/SingleSelect/OptionList.d.ts +9 -0
- package/{es/components/Collapse/__tests__/StyledCollapse.spec.d.ts → types/components/Select/SingleSelect/__tests__/Option.spec.d.ts} +0 -0
- package/{es/components/Collapse/__tests__/index.spec.d.ts → types/components/Select/SingleSelect/__tests__/OptionList.spec.d.ts} +0 -0
- package/{es/components/Drawer → types/components/Select/SingleSelect}/__tests__/index.spec.d.ts +0 -0
- package/types/components/Select/SingleSelect/index.d.ts +35 -0
- package/types/components/Select/StyledSelect.d.ts +26 -0
- package/{es/components/Divider/__tests__/StyledDivider.spec.d.ts → types/components/Select/__tests__/StyledSelect.spec.d.ts} +0 -0
- package/types/components/Select/helpers.d.ts +2 -0
- package/types/components/Select/index.d.ts +3 -3
- package/types/components/Select/types.d.ts +5 -0
- package/types/components/Switch/StyledSwitch.d.ts +0 -0
- package/types/components/Switch/__tests__/StyledHeading.spec.d.ts +0 -0
- package/types/components/Switch/__tests__/index.spec.d.ts +0 -0
- package/types/components/Switch/index.d.ts +1 -1
- package/types/components/Toast/StyledToast.d.ts +45 -0
- package/types/components/Toast/Toast.d.ts +3 -0
- package/types/components/Toast/ToastContainer.d.ts +5 -0
- package/types/components/Toast/ToastContext.d.ts +11 -0
- package/types/components/Toast/ToastProvider.d.ts +10 -0
- package/{es/components/FAB/__tests__/AnimatedFABIcon.spec.d.ts → types/components/Toast/__tests__/Toast.spec.d.ts} +0 -0
- package/{es/components/FAB/__tests__/StyledFAB.spec.d.ts → types/components/Toast/__tests__/ToastContainer.spec.d.ts} +0 -0
- package/types/components/Toast/index.d.ts +8 -0
- package/types/components/Toast/types.d.ts +67 -0
- package/types/components/Toolbar/StyledToolbar.d.ts +22 -0
- package/types/components/Toolbar/ToolbarGroup.d.ts +13 -0
- package/types/components/Toolbar/ToolbarItem.d.ts +25 -0
- package/{es/components/FAB/__tests__/index.spec.d.ts → types/components/Toolbar/__tests__/ToolbarGroup.spec.d.ts} +0 -0
- package/{es/components/Icon/__tests__/index.spec.d.ts → types/components/Toolbar/__tests__/ToolbarItem.spec.d.ts} +0 -0
- package/types/components/Toolbar/index.d.ts +11 -0
- package/types/components/Typography/Text/StyledText.d.ts +1 -1
- package/types/components/Typography/Text/index.d.ts +2 -2
- package/types/index.d.ts +5 -1
- package/types/theme/components/alert.d.ts +0 -0
- package/types/theme/components/button.d.ts +2 -0
- package/types/theme/components/card.d.ts +7 -0
- package/types/theme/components/checkbox.d.ts +0 -0
- package/types/theme/components/list.d.ts +40 -0
- package/types/theme/components/sectionHeading.d.ts +0 -0
- package/types/theme/components/select.d.ts +0 -0
- package/types/theme/components/switch.d.ts +0 -0
- package/types/theme/components/toast.d.ts +24 -0
- package/types/theme/components/toolbar.d.ts +21 -0
- package/types/theme/components/typography.d.ts +4 -0
- package/types/theme/global/colors.d.ts +5 -0
- package/types/theme/global/index.d.ts +5 -0
- package/types/theme/global/space.d.ts +1 -0
- package/types/theme/index.d.ts +8 -0
- package/.turbo/turbo-build:types.log +0 -2
- package/.turbo/turbo-build:watch.log +0 -1
- package/.turbo/turbo-lint.log +0 -2
- package/.turbo/turbo-type-check.log +0 -2
- package/es/components/Avatar/StyledAvatar.d.ts +0 -46
- package/es/components/Avatar/index.d.ts +0 -25
- package/es/components/Badge/Status.d.ts +0 -24
- package/es/components/Badge/StyledBadge.d.ts +0 -28
- package/es/components/Badge/index.d.ts +0 -32
- package/es/components/BottomNavigation/StyledBottomNavigation.d.ts +0 -52
- package/es/components/BottomNavigation/index.d.ts +0 -45
- package/es/components/Button/IconButton.d.ts +0 -34
- package/es/components/Button/index.d.ts +0 -4
- package/es/components/Card/index.d.ts +0 -22
- package/es/components/Collapse/StyledCollapse.d.ts +0 -15
- package/es/components/Collapse/index.d.ts +0 -23
- package/es/components/Divider/StyledDivider.d.ts +0 -13
- package/es/components/Divider/index.d.ts +0 -21
- package/es/components/Drawer/StyledDrawer.d.ts +0 -25
- package/es/components/Drawer/index.d.ts +0 -25
- package/es/components/FAB/ActionGroup/ActionItem.d.ts +0 -12
- package/es/components/FAB/ActionGroup/StyledActionGroup.d.ts +0 -30
- package/es/components/FAB/ActionGroup/StyledActionItem.d.ts +0 -13
- package/es/components/FAB/ActionGroup/__tests__/index.spec.d.ts +0 -1
- package/es/components/FAB/ActionGroup/index.d.ts +0 -34
- package/es/components/FAB/AnimatedFABIcon.d.ts +0 -6
- package/es/components/FAB/FAB.d.ts +0 -34
- package/es/components/FAB/StyledFAB.d.ts +0 -20
- package/es/components/FAB/index.d.ts +0 -4
- package/es/components/Icon/HeroIcon/index.d.ts +0 -13
- package/es/components/Icon/IconList.d.ts +0 -2
- package/es/components/Icon/index.d.ts +0 -27
- package/es/components/Icon/utils.d.ts +0 -2
- package/es/components/Progress/ProgressBar.d.ts +0 -18
- package/es/components/Progress/ProgressCircle.d.ts +0 -18
- package/es/components/Progress/StyledProgressBar.d.ts +0 -18
- package/es/components/Progress/StyledProgressCircle.d.ts +0 -38
- package/es/components/Progress/index.d.ts +0 -5
- package/es/components/Progress/types.d.ts +0 -1
- package/es/components/Tabs/ActiveTabIndicator.d.ts +0 -8
- package/es/components/Tabs/ScrollableTabs.d.ts +0 -3
- package/es/components/Tabs/StyledScrollableTabs.d.ts +0 -61
- package/es/components/Tabs/StyledTabs.d.ts +0 -55
- package/es/components/Tabs/__tests__/ScrollableTabs.spec.d.ts +0 -1
- package/es/components/Tabs/__tests__/index.spec.d.ts +0 -1
- package/es/components/Tabs/index.d.ts +0 -54
- package/es/components/Tabs/utils.d.ts +0 -2
- package/es/components/Tag/StyledTag.d.ts +0 -20
- package/es/components/Tag/__tests__/Tag.spec.d.ts +0 -1
- package/es/components/Tag/index.d.ts +0 -21
- package/es/components/Typography/Text/StyledText.d.ts +0 -13
- package/es/components/Typography/Text/__tests__/StyledText.spec.d.ts +0 -1
- package/es/components/Typography/Text/__tests__/index.spec.d.ts +0 -1
- package/es/components/Typography/Text/index.d.ts +0 -30
- package/es/components/Typography/index.d.ts +0 -6
- package/es/index.d.ts +0 -19
- package/es/theme/__tests__/index.spec.d.ts +0 -1
- package/es/theme/components/avatar.d.ts +0 -32
- package/es/theme/components/badge.d.ts +0 -29
- package/es/theme/components/bottomNavigation.d.ts +0 -23
- package/es/theme/components/card.d.ts +0 -10
- package/es/theme/components/divider.d.ts +0 -17
- package/es/theme/components/drawer.d.ts +0 -21
- package/es/theme/components/fab.d.ts +0 -51
- package/es/theme/components/icon.d.ts +0 -19
- package/es/theme/components/progress.d.ts +0 -21
- package/es/theme/components/tabs.d.ts +0 -27
- package/es/theme/components/tag.d.ts +0 -30
- package/es/theme/components/typography.d.ts +0 -26
- package/es/theme/global/borders.d.ts +0 -11
- package/es/theme/global/colors.d.ts +0 -29
- package/es/theme/global/index.d.ts +0 -39
- package/es/theme/global/scale.d.ts +0 -9
- package/es/theme/global/space.d.ts +0 -13
- package/es/theme/global/typography.d.ts +0 -21
- package/es/theme/index.d.ts +0 -33
- package/es/types.d.ts +0 -5
- package/es/utils/__tests__/scale.spec.d.ts +0 -1
- package/es/utils/helpers.d.ts +0 -2
- package/es/utils/hooks.d.ts +0 -1
- package/es/utils/scale.d.ts +0 -3
- package/lib/components/Avatar/StyledAvatar.d.ts +0 -46
- package/lib/components/Avatar/__tests__/StyledAvatar.spec.d.ts +0 -1
- package/lib/components/Avatar/__tests__/index.spec.d.ts +0 -1
- package/lib/components/Avatar/index.d.ts +0 -25
- package/lib/components/Badge/Status.d.ts +0 -24
- package/lib/components/Badge/StyledBadge.d.ts +0 -28
- package/lib/components/Badge/__tests__/Badge.spec.d.ts +0 -1
- package/lib/components/Badge/__tests__/Status.spec.d.ts +0 -1
- package/lib/components/Badge/index.d.ts +0 -32
- package/lib/components/BottomNavigation/StyledBottomNavigation.d.ts +0 -52
- package/lib/components/BottomNavigation/__tests__/index.spec.d.ts +0 -1
- package/lib/components/BottomNavigation/index.d.ts +0 -45
- package/lib/components/Button/IconButton.d.ts +0 -34
- package/lib/components/Button/__tests__/index.spec.d.ts +0 -1
- package/lib/components/Button/index.d.ts +0 -4
- package/lib/components/Card/StyledCard.d.ts +0 -17
- package/lib/components/Card/__tests__/StyledCard.spec.d.ts +0 -1
- package/lib/components/Card/__tests__/index.spec.d.ts +0 -1
- package/lib/components/Card/index.d.ts +0 -22
- package/lib/components/Collapse/StyledCollapse.d.ts +0 -15
- package/lib/components/Collapse/__tests__/StyledCollapse.spec.d.ts +0 -1
- package/lib/components/Collapse/__tests__/index.spec.d.ts +0 -1
- package/lib/components/Collapse/index.d.ts +0 -23
- package/lib/components/Divider/StyledDivider.d.ts +0 -13
- package/lib/components/Divider/__tests__/StyledDivider.spec.d.ts +0 -1
- package/lib/components/Divider/index.d.ts +0 -21
- package/lib/components/Drawer/StyledDrawer.d.ts +0 -25
- package/lib/components/Drawer/__tests__/index.spec.d.ts +0 -1
- package/lib/components/Drawer/index.d.ts +0 -25
- package/lib/components/FAB/ActionGroup/ActionItem.d.ts +0 -12
- package/lib/components/FAB/ActionGroup/StyledActionGroup.d.ts +0 -30
- package/lib/components/FAB/ActionGroup/StyledActionItem.d.ts +0 -13
- package/lib/components/FAB/ActionGroup/__tests__/index.spec.d.ts +0 -1
- package/lib/components/FAB/ActionGroup/index.d.ts +0 -34
- package/lib/components/FAB/AnimatedFABIcon.d.ts +0 -6
- package/lib/components/FAB/FAB.d.ts +0 -34
- package/lib/components/FAB/StyledFAB.d.ts +0 -20
- package/lib/components/FAB/__tests__/AnimatedFABIcon.spec.d.ts +0 -1
- package/lib/components/FAB/__tests__/StyledFAB.spec.d.ts +0 -1
- package/lib/components/FAB/__tests__/index.spec.d.ts +0 -1
- package/lib/components/FAB/index.d.ts +0 -4
- package/lib/components/Icon/HeroIcon/index.d.ts +0 -13
- package/lib/components/Icon/IconList.d.ts +0 -2
- package/lib/components/Icon/__tests__/index.spec.d.ts +0 -1
- package/lib/components/Icon/index.d.ts +0 -27
- package/lib/components/Icon/utils.d.ts +0 -2
- package/lib/components/Progress/ProgressBar.d.ts +0 -18
- package/lib/components/Progress/ProgressCircle.d.ts +0 -18
- package/lib/components/Progress/StyledProgressBar.d.ts +0 -18
- package/lib/components/Progress/StyledProgressCircle.d.ts +0 -38
- package/lib/components/Progress/index.d.ts +0 -5
- package/lib/components/Progress/types.d.ts +0 -1
- package/lib/components/Tabs/ActiveTabIndicator.d.ts +0 -8
- package/lib/components/Tabs/ScrollableTabs.d.ts +0 -3
- package/lib/components/Tabs/StyledScrollableTabs.d.ts +0 -61
- package/lib/components/Tabs/StyledTabs.d.ts +0 -55
- package/lib/components/Tabs/__tests__/ScrollableTabs.spec.d.ts +0 -1
- package/lib/components/Tabs/__tests__/index.spec.d.ts +0 -1
- package/lib/components/Tabs/index.d.ts +0 -54
- package/lib/components/Tabs/utils.d.ts +0 -2
- package/lib/components/Tag/StyledTag.d.ts +0 -20
- package/lib/components/Tag/__tests__/Tag.spec.d.ts +0 -1
- package/lib/components/Tag/index.d.ts +0 -21
- package/lib/components/Typography/Text/StyledText.d.ts +0 -13
- package/lib/components/Typography/Text/__tests__/StyledText.spec.d.ts +0 -1
- package/lib/components/Typography/Text/__tests__/index.spec.d.ts +0 -1
- package/lib/components/Typography/Text/index.d.ts +0 -30
- package/lib/components/Typography/index.d.ts +0 -6
- package/lib/index.d.ts +0 -19
- package/lib/theme/__tests__/index.spec.d.ts +0 -1
- package/lib/theme/components/avatar.d.ts +0 -32
- package/lib/theme/components/badge.d.ts +0 -29
- package/lib/theme/components/bottomNavigation.d.ts +0 -23
- package/lib/theme/components/card.d.ts +0 -10
- package/lib/theme/components/divider.d.ts +0 -17
- package/lib/theme/components/drawer.d.ts +0 -21
- package/lib/theme/components/fab.d.ts +0 -51
- package/lib/theme/components/icon.d.ts +0 -19
- package/lib/theme/components/progress.d.ts +0 -21
- package/lib/theme/components/tabs.d.ts +0 -27
- package/lib/theme/components/tag.d.ts +0 -30
- package/lib/theme/components/typography.d.ts +0 -26
- package/lib/theme/global/borders.d.ts +0 -11
- package/lib/theme/global/colors.d.ts +0 -29
- package/lib/theme/global/index.d.ts +0 -39
- package/lib/theme/global/scale.d.ts +0 -9
- package/lib/theme/global/space.d.ts +0 -13
- package/lib/theme/global/typography.d.ts +0 -21
- package/lib/theme/index.d.ts +0 -33
- package/lib/types.d.ts +0 -5
- package/lib/utils/__tests__/scale.spec.d.ts +0 -1
- package/lib/utils/helpers.d.ts +0 -2
- package/lib/utils/hooks.d.ts +0 -1
- package/lib/utils/scale.d.ts +0 -3
- package/playground/.detoxrc.json +0 -49
- package/playground/.prettierrc.json +0 -8
- package/playground/app.json +0 -9
- package/playground/babel.config.js +0 -63
- package/playground/e2e/config.json +0 -9
- package/playground/e2e/environment.js +0 -23
- package/playground/e2e/firstTest.e2e.js +0 -16
- package/playground/expoEntry.js +0 -5
- package/playground/fonts/be-vietnam-pro-light.ttf +0 -0
- package/playground/fonts/be-vietnam-pro-regular.ttf +0 -0
- package/playground/fonts/be-vietnam-pro-semibold.ttf +0 -0
- package/playground/fonts/hero-icons.ttf +0 -0
- package/playground/index.js +0 -7
- package/playground/ios/MobileHeroDesignPlayground/AppDelegate.h +0 -9
- package/playground/ios/MobileHeroDesignPlayground/AppDelegate.m +0 -75
- package/playground/ios/MobileHeroDesignPlayground/Images.xcassets/AppIcon.appiconset/Contents.json +0 -38
- package/playground/ios/MobileHeroDesignPlayground/Images.xcassets/Contents.json +0 -6
- package/playground/ios/MobileHeroDesignPlayground/Images.xcassets/SplashScreenBackground.imageset/Contents.json +0 -21
- package/playground/ios/MobileHeroDesignPlayground/Images.xcassets/SplashScreenBackground.imageset/image.png +0 -0
- package/playground/ios/MobileHeroDesignPlayground/Info.plist +0 -85
- package/playground/ios/MobileHeroDesignPlayground/MobileHeroDesignPlayground-Bridging-Header.h +0 -3
- package/playground/ios/MobileHeroDesignPlayground/MobileHeroDesignPlayground.entitlements +0 -8
- package/playground/ios/MobileHeroDesignPlayground/SplashScreen.storyboard +0 -40
- package/playground/ios/MobileHeroDesignPlayground/Supporting/Expo.plist +0 -16
- package/playground/ios/MobileHeroDesignPlayground/main.m +0 -10
- package/playground/ios/MobileHeroDesignPlayground/noop-file.swift +0 -4
- package/playground/ios/MobileHeroDesignPlayground.xcodeproj/project.pbxproj +0 -515
- package/playground/ios/MobileHeroDesignPlayground.xcodeproj/xcshareddata/xcschemes/MobileHeroDesignPlayground.xcscheme +0 -88
- package/playground/ios/MobileHeroDesignPlayground.xcworkspace/contents.xcworkspacedata +0 -10
- package/playground/ios/MobileHeroDesignPlayground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- package/playground/ios/Podfile +0 -49
- package/playground/ios/Podfile.lock +0 -478
- package/playground/ios/Podfile.properties.json +0 -3
- package/playground/metro.config.js +0 -24
- package/playground/package.json +0 -63
- package/playground/src/Alert.tsx +0 -80
- package/playground/src/App.tsx +0 -202
- package/playground/src/Avatar.tsx +0 -102
- package/playground/src/Badge.tsx +0 -187
- package/playground/src/BottomNavigation.tsx +0 -72
- package/playground/src/BottomSheet.tsx +0 -43
- package/playground/src/Button.tsx +0 -170
- package/playground/src/Card.tsx +0 -342
- package/playground/src/Collapse.tsx +0 -99
- package/playground/src/ContentNavigator.tsx +0 -58
- package/playground/src/Divider.tsx +0 -13
- package/playground/src/Drawer.tsx +0 -32
- package/playground/src/FAB.tsx +0 -66
- package/playground/src/Icon.tsx +0 -144
- package/playground/src/IconButton.tsx +0 -78
- package/playground/src/MultipleThemes.tsx +0 -34
- package/playground/src/Progress.tsx +0 -95
- package/playground/src/Radio.tsx +0 -25
- package/playground/src/SectionHeading.tsx +0 -68
- package/playground/src/Select.tsx +0 -32
- package/playground/src/Spinner.tsx +0 -19
- package/playground/src/Switch.tsx +0 -80
- package/playground/src/Tabs.tsx +0 -136
- package/playground/src/Tag.tsx +0 -45
- package/playground/src/TextInput.tsx +0 -14
- package/playground/src/Typography.tsx +0 -23
- package/playground/tsconfig.json +0 -21
- package/src/components/Select/MultiSelect/Footer.tsx +0 -15
- package/types/components/SectionHeading/__tests__/StyledHeading.d.ts +0 -1
|
@@ -1,478 +0,0 @@
|
|
|
1
|
-
PODS:
|
|
2
|
-
- boost-for-react-native (1.63.0)
|
|
3
|
-
- DoubleConversion (1.1.6)
|
|
4
|
-
- EXApplication (4.0.2):
|
|
5
|
-
- ExpoModulesCore
|
|
6
|
-
- EXConstants (13.0.2):
|
|
7
|
-
- ExpoModulesCore
|
|
8
|
-
- EXFileSystem (13.1.4):
|
|
9
|
-
- ExpoModulesCore
|
|
10
|
-
- EXFont (10.0.5):
|
|
11
|
-
- ExpoModulesCore
|
|
12
|
-
- EXKeepAwake (10.0.2):
|
|
13
|
-
- ExpoModulesCore
|
|
14
|
-
- Expo (44.0.6):
|
|
15
|
-
- ExpoModulesCore
|
|
16
|
-
- ExpoModulesCore (0.6.5):
|
|
17
|
-
- React-Core
|
|
18
|
-
- ReactCommon/turbomodule/core
|
|
19
|
-
- EXSplashScreen (0.14.2):
|
|
20
|
-
- ExpoModulesCore
|
|
21
|
-
- React-Core
|
|
22
|
-
- FBLazyVector (0.64.3)
|
|
23
|
-
- FBReactNativeSpec (0.64.3):
|
|
24
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
25
|
-
- RCTRequired (= 0.64.3)
|
|
26
|
-
- RCTTypeSafety (= 0.64.3)
|
|
27
|
-
- React-Core (= 0.64.3)
|
|
28
|
-
- React-jsi (= 0.64.3)
|
|
29
|
-
- ReactCommon/turbomodule/core (= 0.64.3)
|
|
30
|
-
- glog (0.3.5)
|
|
31
|
-
- RCT-Folly (2020.01.13.00):
|
|
32
|
-
- boost-for-react-native
|
|
33
|
-
- DoubleConversion
|
|
34
|
-
- glog
|
|
35
|
-
- RCT-Folly/Default (= 2020.01.13.00)
|
|
36
|
-
- RCT-Folly/Default (2020.01.13.00):
|
|
37
|
-
- boost-for-react-native
|
|
38
|
-
- DoubleConversion
|
|
39
|
-
- glog
|
|
40
|
-
- RCTRequired (0.64.3)
|
|
41
|
-
- RCTTypeSafety (0.64.3):
|
|
42
|
-
- FBLazyVector (= 0.64.3)
|
|
43
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
44
|
-
- RCTRequired (= 0.64.3)
|
|
45
|
-
- React-Core (= 0.64.3)
|
|
46
|
-
- React (0.64.3):
|
|
47
|
-
- React-Core (= 0.64.3)
|
|
48
|
-
- React-Core/DevSupport (= 0.64.3)
|
|
49
|
-
- React-Core/RCTWebSocket (= 0.64.3)
|
|
50
|
-
- React-RCTActionSheet (= 0.64.3)
|
|
51
|
-
- React-RCTAnimation (= 0.64.3)
|
|
52
|
-
- React-RCTBlob (= 0.64.3)
|
|
53
|
-
- React-RCTImage (= 0.64.3)
|
|
54
|
-
- React-RCTLinking (= 0.64.3)
|
|
55
|
-
- React-RCTNetwork (= 0.64.3)
|
|
56
|
-
- React-RCTSettings (= 0.64.3)
|
|
57
|
-
- React-RCTText (= 0.64.3)
|
|
58
|
-
- React-RCTVibration (= 0.64.3)
|
|
59
|
-
- React-callinvoker (0.64.3)
|
|
60
|
-
- React-Core (0.64.3):
|
|
61
|
-
- glog
|
|
62
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
63
|
-
- React-Core/Default (= 0.64.3)
|
|
64
|
-
- React-cxxreact (= 0.64.3)
|
|
65
|
-
- React-jsi (= 0.64.3)
|
|
66
|
-
- React-jsiexecutor (= 0.64.3)
|
|
67
|
-
- React-perflogger (= 0.64.3)
|
|
68
|
-
- Yoga
|
|
69
|
-
- React-Core/CoreModulesHeaders (0.64.3):
|
|
70
|
-
- glog
|
|
71
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
72
|
-
- React-Core/Default
|
|
73
|
-
- React-cxxreact (= 0.64.3)
|
|
74
|
-
- React-jsi (= 0.64.3)
|
|
75
|
-
- React-jsiexecutor (= 0.64.3)
|
|
76
|
-
- React-perflogger (= 0.64.3)
|
|
77
|
-
- Yoga
|
|
78
|
-
- React-Core/Default (0.64.3):
|
|
79
|
-
- glog
|
|
80
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
81
|
-
- React-cxxreact (= 0.64.3)
|
|
82
|
-
- React-jsi (= 0.64.3)
|
|
83
|
-
- React-jsiexecutor (= 0.64.3)
|
|
84
|
-
- React-perflogger (= 0.64.3)
|
|
85
|
-
- Yoga
|
|
86
|
-
- React-Core/DevSupport (0.64.3):
|
|
87
|
-
- glog
|
|
88
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
89
|
-
- React-Core/Default (= 0.64.3)
|
|
90
|
-
- React-Core/RCTWebSocket (= 0.64.3)
|
|
91
|
-
- React-cxxreact (= 0.64.3)
|
|
92
|
-
- React-jsi (= 0.64.3)
|
|
93
|
-
- React-jsiexecutor (= 0.64.3)
|
|
94
|
-
- React-jsinspector (= 0.64.3)
|
|
95
|
-
- React-perflogger (= 0.64.3)
|
|
96
|
-
- Yoga
|
|
97
|
-
- React-Core/RCTActionSheetHeaders (0.64.3):
|
|
98
|
-
- glog
|
|
99
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
100
|
-
- React-Core/Default
|
|
101
|
-
- React-cxxreact (= 0.64.3)
|
|
102
|
-
- React-jsi (= 0.64.3)
|
|
103
|
-
- React-jsiexecutor (= 0.64.3)
|
|
104
|
-
- React-perflogger (= 0.64.3)
|
|
105
|
-
- Yoga
|
|
106
|
-
- React-Core/RCTAnimationHeaders (0.64.3):
|
|
107
|
-
- glog
|
|
108
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
109
|
-
- React-Core/Default
|
|
110
|
-
- React-cxxreact (= 0.64.3)
|
|
111
|
-
- React-jsi (= 0.64.3)
|
|
112
|
-
- React-jsiexecutor (= 0.64.3)
|
|
113
|
-
- React-perflogger (= 0.64.3)
|
|
114
|
-
- Yoga
|
|
115
|
-
- React-Core/RCTBlobHeaders (0.64.3):
|
|
116
|
-
- glog
|
|
117
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
118
|
-
- React-Core/Default
|
|
119
|
-
- React-cxxreact (= 0.64.3)
|
|
120
|
-
- React-jsi (= 0.64.3)
|
|
121
|
-
- React-jsiexecutor (= 0.64.3)
|
|
122
|
-
- React-perflogger (= 0.64.3)
|
|
123
|
-
- Yoga
|
|
124
|
-
- React-Core/RCTImageHeaders (0.64.3):
|
|
125
|
-
- glog
|
|
126
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
127
|
-
- React-Core/Default
|
|
128
|
-
- React-cxxreact (= 0.64.3)
|
|
129
|
-
- React-jsi (= 0.64.3)
|
|
130
|
-
- React-jsiexecutor (= 0.64.3)
|
|
131
|
-
- React-perflogger (= 0.64.3)
|
|
132
|
-
- Yoga
|
|
133
|
-
- React-Core/RCTLinkingHeaders (0.64.3):
|
|
134
|
-
- glog
|
|
135
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
136
|
-
- React-Core/Default
|
|
137
|
-
- React-cxxreact (= 0.64.3)
|
|
138
|
-
- React-jsi (= 0.64.3)
|
|
139
|
-
- React-jsiexecutor (= 0.64.3)
|
|
140
|
-
- React-perflogger (= 0.64.3)
|
|
141
|
-
- Yoga
|
|
142
|
-
- React-Core/RCTNetworkHeaders (0.64.3):
|
|
143
|
-
- glog
|
|
144
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
145
|
-
- React-Core/Default
|
|
146
|
-
- React-cxxreact (= 0.64.3)
|
|
147
|
-
- React-jsi (= 0.64.3)
|
|
148
|
-
- React-jsiexecutor (= 0.64.3)
|
|
149
|
-
- React-perflogger (= 0.64.3)
|
|
150
|
-
- Yoga
|
|
151
|
-
- React-Core/RCTSettingsHeaders (0.64.3):
|
|
152
|
-
- glog
|
|
153
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
154
|
-
- React-Core/Default
|
|
155
|
-
- React-cxxreact (= 0.64.3)
|
|
156
|
-
- React-jsi (= 0.64.3)
|
|
157
|
-
- React-jsiexecutor (= 0.64.3)
|
|
158
|
-
- React-perflogger (= 0.64.3)
|
|
159
|
-
- Yoga
|
|
160
|
-
- React-Core/RCTTextHeaders (0.64.3):
|
|
161
|
-
- glog
|
|
162
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
163
|
-
- React-Core/Default
|
|
164
|
-
- React-cxxreact (= 0.64.3)
|
|
165
|
-
- React-jsi (= 0.64.3)
|
|
166
|
-
- React-jsiexecutor (= 0.64.3)
|
|
167
|
-
- React-perflogger (= 0.64.3)
|
|
168
|
-
- Yoga
|
|
169
|
-
- React-Core/RCTVibrationHeaders (0.64.3):
|
|
170
|
-
- glog
|
|
171
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
172
|
-
- React-Core/Default
|
|
173
|
-
- React-cxxreact (= 0.64.3)
|
|
174
|
-
- React-jsi (= 0.64.3)
|
|
175
|
-
- React-jsiexecutor (= 0.64.3)
|
|
176
|
-
- React-perflogger (= 0.64.3)
|
|
177
|
-
- Yoga
|
|
178
|
-
- React-Core/RCTWebSocket (0.64.3):
|
|
179
|
-
- glog
|
|
180
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
181
|
-
- React-Core/Default (= 0.64.3)
|
|
182
|
-
- React-cxxreact (= 0.64.3)
|
|
183
|
-
- React-jsi (= 0.64.3)
|
|
184
|
-
- React-jsiexecutor (= 0.64.3)
|
|
185
|
-
- React-perflogger (= 0.64.3)
|
|
186
|
-
- Yoga
|
|
187
|
-
- React-CoreModules (0.64.3):
|
|
188
|
-
- FBReactNativeSpec (= 0.64.3)
|
|
189
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
190
|
-
- RCTTypeSafety (= 0.64.3)
|
|
191
|
-
- React-Core/CoreModulesHeaders (= 0.64.3)
|
|
192
|
-
- React-jsi (= 0.64.3)
|
|
193
|
-
- React-RCTImage (= 0.64.3)
|
|
194
|
-
- ReactCommon/turbomodule/core (= 0.64.3)
|
|
195
|
-
- React-cxxreact (0.64.3):
|
|
196
|
-
- boost-for-react-native (= 1.63.0)
|
|
197
|
-
- DoubleConversion
|
|
198
|
-
- glog
|
|
199
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
200
|
-
- React-callinvoker (= 0.64.3)
|
|
201
|
-
- React-jsi (= 0.64.3)
|
|
202
|
-
- React-jsinspector (= 0.64.3)
|
|
203
|
-
- React-perflogger (= 0.64.3)
|
|
204
|
-
- React-runtimeexecutor (= 0.64.3)
|
|
205
|
-
- React-jsi (0.64.3):
|
|
206
|
-
- boost-for-react-native (= 1.63.0)
|
|
207
|
-
- DoubleConversion
|
|
208
|
-
- glog
|
|
209
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
210
|
-
- React-jsi/Default (= 0.64.3)
|
|
211
|
-
- React-jsi/Default (0.64.3):
|
|
212
|
-
- boost-for-react-native (= 1.63.0)
|
|
213
|
-
- DoubleConversion
|
|
214
|
-
- glog
|
|
215
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
216
|
-
- React-jsiexecutor (0.64.3):
|
|
217
|
-
- DoubleConversion
|
|
218
|
-
- glog
|
|
219
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
220
|
-
- React-cxxreact (= 0.64.3)
|
|
221
|
-
- React-jsi (= 0.64.3)
|
|
222
|
-
- React-perflogger (= 0.64.3)
|
|
223
|
-
- React-jsinspector (0.64.3)
|
|
224
|
-
- react-native-safe-area-context (4.2.5):
|
|
225
|
-
- RCT-Folly
|
|
226
|
-
- RCTRequired
|
|
227
|
-
- RCTTypeSafety
|
|
228
|
-
- React
|
|
229
|
-
- ReactCommon/turbomodule/core
|
|
230
|
-
- React-perflogger (0.64.3)
|
|
231
|
-
- React-RCTActionSheet (0.64.3):
|
|
232
|
-
- React-Core/RCTActionSheetHeaders (= 0.64.3)
|
|
233
|
-
- React-RCTAnimation (0.64.3):
|
|
234
|
-
- FBReactNativeSpec (= 0.64.3)
|
|
235
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
236
|
-
- RCTTypeSafety (= 0.64.3)
|
|
237
|
-
- React-Core/RCTAnimationHeaders (= 0.64.3)
|
|
238
|
-
- React-jsi (= 0.64.3)
|
|
239
|
-
- ReactCommon/turbomodule/core (= 0.64.3)
|
|
240
|
-
- React-RCTBlob (0.64.3):
|
|
241
|
-
- FBReactNativeSpec (= 0.64.3)
|
|
242
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
243
|
-
- React-Core/RCTBlobHeaders (= 0.64.3)
|
|
244
|
-
- React-Core/RCTWebSocket (= 0.64.3)
|
|
245
|
-
- React-jsi (= 0.64.3)
|
|
246
|
-
- React-RCTNetwork (= 0.64.3)
|
|
247
|
-
- ReactCommon/turbomodule/core (= 0.64.3)
|
|
248
|
-
- React-RCTImage (0.64.3):
|
|
249
|
-
- FBReactNativeSpec (= 0.64.3)
|
|
250
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
251
|
-
- RCTTypeSafety (= 0.64.3)
|
|
252
|
-
- React-Core/RCTImageHeaders (= 0.64.3)
|
|
253
|
-
- React-jsi (= 0.64.3)
|
|
254
|
-
- React-RCTNetwork (= 0.64.3)
|
|
255
|
-
- ReactCommon/turbomodule/core (= 0.64.3)
|
|
256
|
-
- React-RCTLinking (0.64.3):
|
|
257
|
-
- FBReactNativeSpec (= 0.64.3)
|
|
258
|
-
- React-Core/RCTLinkingHeaders (= 0.64.3)
|
|
259
|
-
- React-jsi (= 0.64.3)
|
|
260
|
-
- ReactCommon/turbomodule/core (= 0.64.3)
|
|
261
|
-
- React-RCTNetwork (0.64.3):
|
|
262
|
-
- FBReactNativeSpec (= 0.64.3)
|
|
263
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
264
|
-
- RCTTypeSafety (= 0.64.3)
|
|
265
|
-
- React-Core/RCTNetworkHeaders (= 0.64.3)
|
|
266
|
-
- React-jsi (= 0.64.3)
|
|
267
|
-
- ReactCommon/turbomodule/core (= 0.64.3)
|
|
268
|
-
- React-RCTSettings (0.64.3):
|
|
269
|
-
- FBReactNativeSpec (= 0.64.3)
|
|
270
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
271
|
-
- RCTTypeSafety (= 0.64.3)
|
|
272
|
-
- React-Core/RCTSettingsHeaders (= 0.64.3)
|
|
273
|
-
- React-jsi (= 0.64.3)
|
|
274
|
-
- ReactCommon/turbomodule/core (= 0.64.3)
|
|
275
|
-
- React-RCTText (0.64.3):
|
|
276
|
-
- React-Core/RCTTextHeaders (= 0.64.3)
|
|
277
|
-
- React-RCTVibration (0.64.3):
|
|
278
|
-
- FBReactNativeSpec (= 0.64.3)
|
|
279
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
280
|
-
- React-Core/RCTVibrationHeaders (= 0.64.3)
|
|
281
|
-
- React-jsi (= 0.64.3)
|
|
282
|
-
- ReactCommon/turbomodule/core (= 0.64.3)
|
|
283
|
-
- React-runtimeexecutor (0.64.3):
|
|
284
|
-
- React-jsi (= 0.64.3)
|
|
285
|
-
- ReactCommon/turbomodule/core (0.64.3):
|
|
286
|
-
- DoubleConversion
|
|
287
|
-
- glog
|
|
288
|
-
- RCT-Folly (= 2020.01.13.00)
|
|
289
|
-
- React-callinvoker (= 0.64.3)
|
|
290
|
-
- React-Core (= 0.64.3)
|
|
291
|
-
- React-cxxreact (= 0.64.3)
|
|
292
|
-
- React-jsi (= 0.64.3)
|
|
293
|
-
- React-perflogger (= 0.64.3)
|
|
294
|
-
- RNCMaskedView (0.1.11):
|
|
295
|
-
- React
|
|
296
|
-
- RNGestureHandler (2.1.3):
|
|
297
|
-
- React-Core
|
|
298
|
-
- RNScreens (3.10.2):
|
|
299
|
-
- React-Core
|
|
300
|
-
- React-RCTImage
|
|
301
|
-
- Yoga (1.14.0)
|
|
302
|
-
|
|
303
|
-
DEPENDENCIES:
|
|
304
|
-
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
|
305
|
-
- EXApplication (from `../../../../node_modules/expo-application/ios`)
|
|
306
|
-
- EXConstants (from `../../../../node_modules/expo-constants/ios`)
|
|
307
|
-
- EXFileSystem (from `../../../../node_modules/expo-file-system/ios`)
|
|
308
|
-
- EXFont (from `../../../../node_modules/expo-font/ios`)
|
|
309
|
-
- EXKeepAwake (from `../../../../node_modules/expo-keep-awake/ios`)
|
|
310
|
-
- Expo (from `../../../../node_modules/expo/ios`)
|
|
311
|
-
- ExpoModulesCore (from `../../../../node_modules/expo-modules-core/ios`)
|
|
312
|
-
- EXSplashScreen (from `../../../../node_modules/expo-splash-screen/ios`)
|
|
313
|
-
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
|
314
|
-
- FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
|
|
315
|
-
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
|
316
|
-
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
|
317
|
-
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
|
|
318
|
-
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
|
|
319
|
-
- React (from `../node_modules/react-native/`)
|
|
320
|
-
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
|
|
321
|
-
- React-Core (from `../node_modules/react-native/`)
|
|
322
|
-
- React-Core/DevSupport (from `../node_modules/react-native/`)
|
|
323
|
-
- React-Core/RCTWebSocket (from `../node_modules/react-native/`)
|
|
324
|
-
- React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
|
|
325
|
-
- React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
|
|
326
|
-
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
|
|
327
|
-
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
|
|
328
|
-
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
|
|
329
|
-
- react-native-safe-area-context (from `../../node_modules/react-native-safe-area-context`)
|
|
330
|
-
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
|
|
331
|
-
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
|
|
332
|
-
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
|
|
333
|
-
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
|
|
334
|
-
- React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
|
|
335
|
-
- React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
|
|
336
|
-
- React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
|
|
337
|
-
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
|
|
338
|
-
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
|
|
339
|
-
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
|
|
340
|
-
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
|
|
341
|
-
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
|
|
342
|
-
- "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)"
|
|
343
|
-
- RNGestureHandler (from `../../../../node_modules/react-native-gesture-handler`)
|
|
344
|
-
- RNScreens (from `../node_modules/react-native-screens`)
|
|
345
|
-
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
|
|
346
|
-
|
|
347
|
-
SPEC REPOS:
|
|
348
|
-
trunk:
|
|
349
|
-
- boost-for-react-native
|
|
350
|
-
|
|
351
|
-
EXTERNAL SOURCES:
|
|
352
|
-
DoubleConversion:
|
|
353
|
-
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
|
|
354
|
-
EXApplication:
|
|
355
|
-
:path: "../../../../node_modules/expo-application/ios"
|
|
356
|
-
EXConstants:
|
|
357
|
-
:path: "../../../../node_modules/expo-constants/ios"
|
|
358
|
-
EXFileSystem:
|
|
359
|
-
:path: "../../../../node_modules/expo-file-system/ios"
|
|
360
|
-
EXFont:
|
|
361
|
-
:path: "../../../../node_modules/expo-font/ios"
|
|
362
|
-
EXKeepAwake:
|
|
363
|
-
:path: "../../../../node_modules/expo-keep-awake/ios"
|
|
364
|
-
Expo:
|
|
365
|
-
:path: "../../../../node_modules/expo/ios"
|
|
366
|
-
ExpoModulesCore:
|
|
367
|
-
:path: "../../../../node_modules/expo-modules-core/ios"
|
|
368
|
-
EXSplashScreen:
|
|
369
|
-
:path: "../../../../node_modules/expo-splash-screen/ios"
|
|
370
|
-
FBLazyVector:
|
|
371
|
-
:path: "../node_modules/react-native/Libraries/FBLazyVector"
|
|
372
|
-
FBReactNativeSpec:
|
|
373
|
-
:path: "../node_modules/react-native/React/FBReactNativeSpec"
|
|
374
|
-
glog:
|
|
375
|
-
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
|
|
376
|
-
RCT-Folly:
|
|
377
|
-
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
|
|
378
|
-
RCTRequired:
|
|
379
|
-
:path: "../node_modules/react-native/Libraries/RCTRequired"
|
|
380
|
-
RCTTypeSafety:
|
|
381
|
-
:path: "../node_modules/react-native/Libraries/TypeSafety"
|
|
382
|
-
React:
|
|
383
|
-
:path: "../node_modules/react-native/"
|
|
384
|
-
React-callinvoker:
|
|
385
|
-
:path: "../node_modules/react-native/ReactCommon/callinvoker"
|
|
386
|
-
React-Core:
|
|
387
|
-
:path: "../node_modules/react-native/"
|
|
388
|
-
React-CoreModules:
|
|
389
|
-
:path: "../node_modules/react-native/React/CoreModules"
|
|
390
|
-
React-cxxreact:
|
|
391
|
-
:path: "../node_modules/react-native/ReactCommon/cxxreact"
|
|
392
|
-
React-jsi:
|
|
393
|
-
:path: "../node_modules/react-native/ReactCommon/jsi"
|
|
394
|
-
React-jsiexecutor:
|
|
395
|
-
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
|
|
396
|
-
React-jsinspector:
|
|
397
|
-
:path: "../node_modules/react-native/ReactCommon/jsinspector"
|
|
398
|
-
react-native-safe-area-context:
|
|
399
|
-
:path: "../../node_modules/react-native-safe-area-context"
|
|
400
|
-
React-perflogger:
|
|
401
|
-
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
|
|
402
|
-
React-RCTActionSheet:
|
|
403
|
-
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
|
|
404
|
-
React-RCTAnimation:
|
|
405
|
-
:path: "../node_modules/react-native/Libraries/NativeAnimation"
|
|
406
|
-
React-RCTBlob:
|
|
407
|
-
:path: "../node_modules/react-native/Libraries/Blob"
|
|
408
|
-
React-RCTImage:
|
|
409
|
-
:path: "../node_modules/react-native/Libraries/Image"
|
|
410
|
-
React-RCTLinking:
|
|
411
|
-
:path: "../node_modules/react-native/Libraries/LinkingIOS"
|
|
412
|
-
React-RCTNetwork:
|
|
413
|
-
:path: "../node_modules/react-native/Libraries/Network"
|
|
414
|
-
React-RCTSettings:
|
|
415
|
-
:path: "../node_modules/react-native/Libraries/Settings"
|
|
416
|
-
React-RCTText:
|
|
417
|
-
:path: "../node_modules/react-native/Libraries/Text"
|
|
418
|
-
React-RCTVibration:
|
|
419
|
-
:path: "../node_modules/react-native/Libraries/Vibration"
|
|
420
|
-
React-runtimeexecutor:
|
|
421
|
-
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
|
|
422
|
-
ReactCommon:
|
|
423
|
-
:path: "../node_modules/react-native/ReactCommon"
|
|
424
|
-
RNCMaskedView:
|
|
425
|
-
:path: "../node_modules/@react-native-community/masked-view"
|
|
426
|
-
RNGestureHandler:
|
|
427
|
-
:path: "../../../../node_modules/react-native-gesture-handler"
|
|
428
|
-
RNScreens:
|
|
429
|
-
:path: "../node_modules/react-native-screens"
|
|
430
|
-
Yoga:
|
|
431
|
-
:path: "../node_modules/react-native/ReactCommon/yoga"
|
|
432
|
-
|
|
433
|
-
SPEC CHECKSUMS:
|
|
434
|
-
boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
|
|
435
|
-
DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de
|
|
436
|
-
EXApplication: 54fe5bd6268d697771645e8f1aef8b806a65247a
|
|
437
|
-
EXConstants: 88bf79622fbd9b476c96d8ec57fe97ca44fe8e3c
|
|
438
|
-
EXFileSystem: 08a3033ac372b6346becf07839e1ccef26fb1058
|
|
439
|
-
EXFont: 2597c10ac85a69d348d44d7873eccf5a7576ef5e
|
|
440
|
-
EXKeepAwake: bf48d7f740a5cd2befed6cf9a49911d385c6c47d
|
|
441
|
-
Expo: 534e51e607aba8229293297da5585f4b26f50fa1
|
|
442
|
-
ExpoModulesCore: 32c0ccb47f477d330ee93db72505380adf0de09a
|
|
443
|
-
EXSplashScreen: 21669e598804ee810547dbb6692c8deb5dd8dbf3
|
|
444
|
-
FBLazyVector: c71c5917ec0ad2de41d5d06a5855f6d5eda06971
|
|
445
|
-
FBReactNativeSpec: 06fd93c5a76cbc493634220b619550ad90c11c46
|
|
446
|
-
glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62
|
|
447
|
-
RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c
|
|
448
|
-
RCTRequired: d34bf57e17cb6e3b2681f4809b13843c021feb6c
|
|
449
|
-
RCTTypeSafety: 8dab4933124ed39bb0c1d88d74d61b1eb950f28f
|
|
450
|
-
React: ef700aeb19afabff83a9cc5799ac955a9c6b5e0f
|
|
451
|
-
React-callinvoker: 5547633d44f3e114b17c03c660ccb5faefd9ed2d
|
|
452
|
-
React-Core: 3858d60185d71567962468bf176d582e36e4e25b
|
|
453
|
-
React-CoreModules: 29b3397adac0c04915cf93089328664868510717
|
|
454
|
-
React-cxxreact: 7e6cc1f4cdfcd40e483dd228fa8a3d3e0ed16f4a
|
|
455
|
-
React-jsi: a8b09c29521c798f1783348b37b511ba7b3dbeb3
|
|
456
|
-
React-jsiexecutor: df6abc9fafbecb8e5b7a5fbc5e6d4bd017d594d5
|
|
457
|
-
React-jsinspector: 34e23860273a23695342f58eed3ffd3ba10c31e0
|
|
458
|
-
react-native-safe-area-context: ebf8c413eb8b5f7c392a036a315eb7b46b96845f
|
|
459
|
-
React-perflogger: cc76a4254d19640f1d8ad1c66fdee800414b805c
|
|
460
|
-
React-RCTActionSheet: 7448f049318d8d7e8a9a1ebb742ada721757eea8
|
|
461
|
-
React-RCTAnimation: fb9b3fa1a4a9f5e6ab01b3368693ce69860ba76a
|
|
462
|
-
React-RCTBlob: a2e7056601c599c19884992f08ebacae810426f9
|
|
463
|
-
React-RCTImage: 5a46c12327d0d6f6844a1fe38baa92a1e02847e8
|
|
464
|
-
React-RCTLinking: 63dd8305591e1def35267557ed42918aec9eb30b
|
|
465
|
-
React-RCTNetwork: d0516e39a5f736b2bff671c3e03804200161dcd3
|
|
466
|
-
React-RCTSettings: a09566b14f1649f6c8a39ad1a174bb5c0631bb09
|
|
467
|
-
React-RCTText: 04a2f0a281f715f0aed4f515717fafd64510e2c8
|
|
468
|
-
React-RCTVibration: c7f845861e79eae13dc1e8217a3cf47a3945b504
|
|
469
|
-
React-runtimeexecutor: 493d9abb8b23c3f84e19ae221eeba92cadcb70dc
|
|
470
|
-
ReactCommon: 8fea6422328e2fc093e25c9fac67adbcf0f04fb4
|
|
471
|
-
RNCMaskedView: 0e1bc4bfa8365eba5fbbb71e07fbdc0555249489
|
|
472
|
-
RNGestureHandler: e1099204721a17a89c81fcd1cc2e92143dc040fb
|
|
473
|
-
RNScreens: d6da2b9e29cf523832c2542f47bf1287318b1868
|
|
474
|
-
Yoga: e6ecf3fa25af9d4c87e94ad7d5d292eedef49749
|
|
475
|
-
|
|
476
|
-
PODFILE CHECKSUM: d615e1760634e4df53df7db7f35f6d059087871f
|
|
477
|
-
|
|
478
|
-
COCOAPODS: 1.11.3
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Metro configuration for React Native
|
|
3
|
-
* https://github.com/facebook/react-native
|
|
4
|
-
*
|
|
5
|
-
* @format
|
|
6
|
-
*/
|
|
7
|
-
const { getDefaultConfig } = require('expo/metro-config');
|
|
8
|
-
const path = require('path');
|
|
9
|
-
|
|
10
|
-
// Find the workspace root, this can be replaced with `find-yarn-workspace-root`
|
|
11
|
-
const workspaceRoot = path.resolve(__dirname, '../../..');
|
|
12
|
-
const projectRoot = __dirname;
|
|
13
|
-
|
|
14
|
-
const config = getDefaultConfig(projectRoot);
|
|
15
|
-
|
|
16
|
-
// 1. Watch all files within the monorepo
|
|
17
|
-
config.watchFolders = [workspaceRoot];
|
|
18
|
-
// 2. Let Metro know where to resolve packages, and in what order
|
|
19
|
-
config.resolver.nodeModulesPaths = [
|
|
20
|
-
path.resolve(projectRoot, 'node_modules'),
|
|
21
|
-
path.resolve(workspaceRoot, 'node_modules'),
|
|
22
|
-
];
|
|
23
|
-
|
|
24
|
-
module.exports = config;
|
package/playground/package.json
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@hero-design/playground",
|
|
3
|
-
"private": true,
|
|
4
|
-
"version": "7.6.0",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"lint": "eslint src expoEntry.js --ext .js,.jsx,.ts,.tsx --ignore-path ../../../.gitignore",
|
|
8
|
-
"type-check": "tsc --noEmit",
|
|
9
|
-
"dev": "expo start -i",
|
|
10
|
-
"start": "expo start -dev-client",
|
|
11
|
-
"android": "expo run:android",
|
|
12
|
-
"ios": "expo run:ios",
|
|
13
|
-
"visual-test": "detox build -c ios.sim.release && detox test -c ios.sim.release"
|
|
14
|
-
},
|
|
15
|
-
"dependencies": {
|
|
16
|
-
"@hero-design/colors": "7.6.0",
|
|
17
|
-
"@hero-design/rn": "7.6.0",
|
|
18
|
-
"@react-native-community/masked-view": "^0.1.11",
|
|
19
|
-
"@react-navigation/core": "^6.3.0",
|
|
20
|
-
"@react-navigation/native": "^6.0.12",
|
|
21
|
-
"@react-navigation/native-stack": "^6.8.0",
|
|
22
|
-
"expo": "^44",
|
|
23
|
-
"expo-file-system": "~13.1.4",
|
|
24
|
-
"expo-font": "~10.0.4",
|
|
25
|
-
"expo-splash-screen": "~0.14.1",
|
|
26
|
-
"expo-status-bar": "~1.2.0",
|
|
27
|
-
"react": "17.0.1",
|
|
28
|
-
"react-dom": "17.0.1",
|
|
29
|
-
"react-native": "0.64.3",
|
|
30
|
-
"react-native-gesture-handler": "~2.1.0",
|
|
31
|
-
"react-native-safe-area-context": "3.3.2",
|
|
32
|
-
"react-native-screens": "~3.10.1",
|
|
33
|
-
"react-native-web": "0.17.1"
|
|
34
|
-
},
|
|
35
|
-
"devDependencies": {
|
|
36
|
-
"@babel/core": "^7.17.5",
|
|
37
|
-
"@babel/preset-env": "^7.16.11",
|
|
38
|
-
"@babel/preset-react": "^7.16.7",
|
|
39
|
-
"@babel/preset-typescript": "^7.17.12",
|
|
40
|
-
"@babel/runtime": "^7.18.9",
|
|
41
|
-
"@testing-library/jest-native": "^4.0.4",
|
|
42
|
-
"@testing-library/react-native": "^9.1.0",
|
|
43
|
-
"@types/jest": "^27.0.2",
|
|
44
|
-
"@types/react-native-vector-icons": "^6.4.10",
|
|
45
|
-
"@typescript-eslint/eslint-plugin": "^5.12.1",
|
|
46
|
-
"@typescript-eslint/parser": "^5.12.1",
|
|
47
|
-
"babel-plugin-transform-runtime": "^6.23.0",
|
|
48
|
-
"detox": "^19.9.3",
|
|
49
|
-
"eslint": "^8.9.0",
|
|
50
|
-
"eslint-config-airbnb": "^19.0.4",
|
|
51
|
-
"eslint-config-prettier": "^8.5.0",
|
|
52
|
-
"eslint-plugin-import": "^2.25.4",
|
|
53
|
-
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
54
|
-
"eslint-plugin-react": "^7.28.0",
|
|
55
|
-
"eslint-plugin-react-hooks": "^4.3.0",
|
|
56
|
-
"jest": "^27.3.1",
|
|
57
|
-
"metro-react-native-babel-preset": "^0.72.1",
|
|
58
|
-
"prettier": "^2.5.1",
|
|
59
|
-
"react-test-renderer": "17.0.2",
|
|
60
|
-
"ts-jest": "^27.0.7",
|
|
61
|
-
"typescript": "^4.5.5"
|
|
62
|
-
}
|
|
63
|
-
}
|
package/playground/src/Alert.tsx
DELETED
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ScrollView, View } from 'react-native';
|
|
3
|
-
import { Alert, Typography, useTheme } from '@hero-design/rn';
|
|
4
|
-
|
|
5
|
-
const AlertPlayground = (): JSX.Element => {
|
|
6
|
-
const theme = useTheme();
|
|
7
|
-
|
|
8
|
-
return (
|
|
9
|
-
<ScrollView style={{ flex: 1, padding: theme.space.medium }}>
|
|
10
|
-
<Typography.Text>Default variant</Typography.Text>
|
|
11
|
-
<View style={{ paddingVertical: theme.space.medium }}>
|
|
12
|
-
<Alert
|
|
13
|
-
title="Title"
|
|
14
|
-
content="Success"
|
|
15
|
-
intent="success"
|
|
16
|
-
style={{ marginBottom: theme.space.small }}
|
|
17
|
-
onClose={() => alert('Closed')}
|
|
18
|
-
/>
|
|
19
|
-
<Alert
|
|
20
|
-
title="Title"
|
|
21
|
-
content="Info"
|
|
22
|
-
intent="info"
|
|
23
|
-
style={{ marginBottom: theme.space.small }}
|
|
24
|
-
onClose={() => alert('Closed')}
|
|
25
|
-
/>
|
|
26
|
-
<Alert
|
|
27
|
-
title="Title"
|
|
28
|
-
content="Warning"
|
|
29
|
-
intent="warning"
|
|
30
|
-
style={{ marginBottom: theme.space.small }}
|
|
31
|
-
onClose={() => alert('Closed')}
|
|
32
|
-
/>
|
|
33
|
-
<Alert
|
|
34
|
-
title="Title"
|
|
35
|
-
content="Error"
|
|
36
|
-
intent="error"
|
|
37
|
-
style={{ marginBottom: theme.space.small }}
|
|
38
|
-
onClose={() => alert('Closed')}
|
|
39
|
-
/>
|
|
40
|
-
</View>
|
|
41
|
-
<Typography.Text>Round variant</Typography.Text>
|
|
42
|
-
<View style={{ paddingVertical: theme.space.medium }}>
|
|
43
|
-
<Alert
|
|
44
|
-
title="Title"
|
|
45
|
-
content="Success"
|
|
46
|
-
intent="success"
|
|
47
|
-
variant="round"
|
|
48
|
-
style={{ marginBottom: theme.space.small }}
|
|
49
|
-
onClose={() => alert('Closed')}
|
|
50
|
-
/>
|
|
51
|
-
<Alert
|
|
52
|
-
title="Title"
|
|
53
|
-
content="Info"
|
|
54
|
-
intent="info"
|
|
55
|
-
variant="round"
|
|
56
|
-
style={{ marginBottom: theme.space.small }}
|
|
57
|
-
onClose={() => alert('Closed')}
|
|
58
|
-
/>
|
|
59
|
-
<Alert
|
|
60
|
-
title="Title"
|
|
61
|
-
content="Warning"
|
|
62
|
-
intent="warning"
|
|
63
|
-
variant="round"
|
|
64
|
-
style={{ marginBottom: theme.space.small }}
|
|
65
|
-
onClose={() => alert('Closed')}
|
|
66
|
-
/>
|
|
67
|
-
<Alert
|
|
68
|
-
title="Title"
|
|
69
|
-
content="Error"
|
|
70
|
-
intent="error"
|
|
71
|
-
variant="round"
|
|
72
|
-
style={{ marginBottom: theme.space.small }}
|
|
73
|
-
onClose={() => alert('Closed')}
|
|
74
|
-
/>
|
|
75
|
-
</View>
|
|
76
|
-
</ScrollView>
|
|
77
|
-
);
|
|
78
|
-
};
|
|
79
|
-
|
|
80
|
-
export default AlertPlayground;
|