@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,515 +0,0 @@
|
|
|
1
|
-
// !$*UTF8*$!
|
|
2
|
-
{
|
|
3
|
-
archiveVersion = 1;
|
|
4
|
-
classes = {
|
|
5
|
-
};
|
|
6
|
-
objectVersion = 46;
|
|
7
|
-
objects = {
|
|
8
|
-
|
|
9
|
-
/* Begin PBXBuildFile section */
|
|
10
|
-
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
|
|
11
|
-
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
12
|
-
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
|
13
|
-
16B4C2D54D6B45DDB105B95E /* be-vietnam-pro-light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = EF5740945E0E4E62BD4D1ABE /* be-vietnam-pro-light.ttf */; };
|
|
14
|
-
3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */; };
|
|
15
|
-
4FBCD585B19746B8BEAD3806 /* hero-icons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C1578E6D16D24FE8B2967E90 /* hero-icons.ttf */; };
|
|
16
|
-
80F6D4E5E039401C80ADE5E0 /* be-vietnam-pro-semibold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5E37DE72701E4059BA799B5E /* be-vietnam-pro-semibold.ttf */; };
|
|
17
|
-
90C0D473828041BD9EEC3099 /* be-vietnam-pro-regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4A26D551CEEF41248FB699AB /* be-vietnam-pro-regular.ttf */; };
|
|
18
|
-
B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */; };
|
|
19
|
-
BB2F792D24A3F905000567C9 /* Expo.plist in Resources */ = {isa = PBXBuildFile; fileRef = BB2F792C24A3F905000567C9 /* Expo.plist */; };
|
|
20
|
-
F6E015FA58E842B89B8A19B8 /* noop-file.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2F56576D7E14C1DB9FE539D /* noop-file.swift */; };
|
|
21
|
-
/* End PBXBuildFile section */
|
|
22
|
-
|
|
23
|
-
/* Begin PBXFileReference section */
|
|
24
|
-
008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
|
|
25
|
-
13B07F961A680F5B00A75B9A /* MobileHeroDesignPlayground.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MobileHeroDesignPlayground.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
26
|
-
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = MobileHeroDesignPlayground/AppDelegate.h; sourceTree = "<group>"; };
|
|
27
|
-
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = MobileHeroDesignPlayground/AppDelegate.m; sourceTree = "<group>"; };
|
|
28
|
-
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = MobileHeroDesignPlayground/Images.xcassets; sourceTree = "<group>"; };
|
|
29
|
-
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = MobileHeroDesignPlayground/Info.plist; sourceTree = "<group>"; };
|
|
30
|
-
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = MobileHeroDesignPlayground/main.m; sourceTree = "<group>"; };
|
|
31
|
-
4A26D551CEEF41248FB699AB /* be-vietnam-pro-regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "be-vietnam-pro-regular.ttf"; path = "../../assets/fonts/be-vietnam-pro-regular.ttf"; sourceTree = "<group>"; };
|
|
32
|
-
4B0848E3AE024522B6BBC6F5 /* MobileHeroDesignPlayground.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; path = MobileHeroDesignPlayground.xcodeproj; sourceTree = "<group>"; };
|
|
33
|
-
58EEBF8E8E6FB1BC6CAF49B5 /* libPods-MobileHeroDesignPlayground.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MobileHeroDesignPlayground.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
34
|
-
5E37DE72701E4059BA799B5E /* be-vietnam-pro-semibold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "be-vietnam-pro-semibold.ttf"; path = "../../assets/fonts/be-vietnam-pro-semibold.ttf"; sourceTree = "<group>"; };
|
|
35
|
-
6C2E3173556A471DD304B334 /* Pods-MobileHeroDesignPlayground.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MobileHeroDesignPlayground.debug.xcconfig"; path = "Target Support Files/Pods-MobileHeroDesignPlayground/Pods-MobileHeroDesignPlayground.debug.xcconfig"; sourceTree = "<group>"; };
|
|
36
|
-
7A4D352CD337FB3A3BF06240 /* Pods-MobileHeroDesignPlayground.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MobileHeroDesignPlayground.release.xcconfig"; path = "Target Support Files/Pods-MobileHeroDesignPlayground/Pods-MobileHeroDesignPlayground.release.xcconfig"; sourceTree = "<group>"; };
|
|
37
|
-
AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = SplashScreen.storyboard; path = MobileHeroDesignPlayground/SplashScreen.storyboard; sourceTree = "<group>"; };
|
|
38
|
-
B2F56576D7E14C1DB9FE539D /* noop-file.swift */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.swift; name = "noop-file.swift"; path = "MobileHeroDesignPlayground/noop-file.swift"; sourceTree = "<group>"; };
|
|
39
|
-
BB2F792C24A3F905000567C9 /* Expo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Expo.plist; sourceTree = "<group>"; };
|
|
40
|
-
C1578E6D16D24FE8B2967E90 /* hero-icons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "hero-icons.ttf"; path = "../../assets/fonts/hero-icons.ttf"; sourceTree = "<group>"; };
|
|
41
|
-
DE5E9E761E114078A9DA4349 /* MobileHeroDesignPlayground-Bridging-Header.h */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.c.h; name = "MobileHeroDesignPlayground-Bridging-Header.h"; path = "MobileHeroDesignPlayground/MobileHeroDesignPlayground-Bridging-Header.h"; sourceTree = "<group>"; };
|
|
42
|
-
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
43
|
-
EF5740945E0E4E62BD4D1ABE /* be-vietnam-pro-light.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "be-vietnam-pro-light.ttf"; path = "../../assets/fonts/be-vietnam-pro-light.ttf"; sourceTree = "<group>"; };
|
|
44
|
-
FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-MobileHeroDesignPlayground/ExpoModulesProvider.swift"; sourceTree = "<group>"; };
|
|
45
|
-
/* End PBXFileReference section */
|
|
46
|
-
|
|
47
|
-
/* Begin PBXFrameworksBuildPhase section */
|
|
48
|
-
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
|
49
|
-
isa = PBXFrameworksBuildPhase;
|
|
50
|
-
buildActionMask = 2147483647;
|
|
51
|
-
files = (
|
|
52
|
-
);
|
|
53
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
54
|
-
};
|
|
55
|
-
/* End PBXFrameworksBuildPhase section */
|
|
56
|
-
|
|
57
|
-
/* Begin PBXGroup section */
|
|
58
|
-
13B07FAE1A68108700A75B9A /* MobileHeroDesignPlayground */ = {
|
|
59
|
-
isa = PBXGroup;
|
|
60
|
-
children = (
|
|
61
|
-
BB2F792B24A3F905000567C9 /* Supporting */,
|
|
62
|
-
008F07F21AC5B25A0029DE68 /* main.jsbundle */,
|
|
63
|
-
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
|
|
64
|
-
13B07FB01A68108700A75B9A /* AppDelegate.m */,
|
|
65
|
-
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
|
66
|
-
13B07FB61A68108700A75B9A /* Info.plist */,
|
|
67
|
-
13B07FB71A68108700A75B9A /* main.m */,
|
|
68
|
-
AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */,
|
|
69
|
-
B2F56576D7E14C1DB9FE539D /* noop-file.swift */,
|
|
70
|
-
DE5E9E761E114078A9DA4349 /* MobileHeroDesignPlayground-Bridging-Header.h */,
|
|
71
|
-
);
|
|
72
|
-
name = MobileHeroDesignPlayground;
|
|
73
|
-
sourceTree = "<group>";
|
|
74
|
-
};
|
|
75
|
-
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
|
|
76
|
-
isa = PBXGroup;
|
|
77
|
-
children = (
|
|
78
|
-
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
|
79
|
-
58EEBF8E8E6FB1BC6CAF49B5 /* libPods-MobileHeroDesignPlayground.a */,
|
|
80
|
-
);
|
|
81
|
-
name = Frameworks;
|
|
82
|
-
sourceTree = "<group>";
|
|
83
|
-
};
|
|
84
|
-
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
|
|
85
|
-
isa = PBXGroup;
|
|
86
|
-
children = (
|
|
87
|
-
4B0848E3AE024522B6BBC6F5 /* MobileHeroDesignPlayground.xcodeproj */,
|
|
88
|
-
);
|
|
89
|
-
name = Libraries;
|
|
90
|
-
sourceTree = "<group>";
|
|
91
|
-
};
|
|
92
|
-
83CBB9F61A601CBA00E9B192 = {
|
|
93
|
-
isa = PBXGroup;
|
|
94
|
-
children = (
|
|
95
|
-
13B07FAE1A68108700A75B9A /* MobileHeroDesignPlayground */,
|
|
96
|
-
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
|
97
|
-
83CBBA001A601CBA00E9B192 /* Products */,
|
|
98
|
-
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
|
99
|
-
D65327D7A22EEC0BE12398D9 /* Pods */,
|
|
100
|
-
D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */,
|
|
101
|
-
E24D20DB61724286BEF501AD /* Resources */,
|
|
102
|
-
);
|
|
103
|
-
indentWidth = 2;
|
|
104
|
-
sourceTree = "<group>";
|
|
105
|
-
tabWidth = 2;
|
|
106
|
-
usesTabs = 0;
|
|
107
|
-
};
|
|
108
|
-
83CBBA001A601CBA00E9B192 /* Products */ = {
|
|
109
|
-
isa = PBXGroup;
|
|
110
|
-
children = (
|
|
111
|
-
13B07F961A680F5B00A75B9A /* MobileHeroDesignPlayground.app */,
|
|
112
|
-
);
|
|
113
|
-
name = Products;
|
|
114
|
-
sourceTree = "<group>";
|
|
115
|
-
};
|
|
116
|
-
92DBD88DE9BF7D494EA9DA96 /* MobileHeroDesignPlayground */ = {
|
|
117
|
-
isa = PBXGroup;
|
|
118
|
-
children = (
|
|
119
|
-
FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */,
|
|
120
|
-
);
|
|
121
|
-
name = MobileHeroDesignPlayground;
|
|
122
|
-
sourceTree = "<group>";
|
|
123
|
-
};
|
|
124
|
-
BB2F792B24A3F905000567C9 /* Supporting */ = {
|
|
125
|
-
isa = PBXGroup;
|
|
126
|
-
children = (
|
|
127
|
-
BB2F792C24A3F905000567C9 /* Expo.plist */,
|
|
128
|
-
);
|
|
129
|
-
name = Supporting;
|
|
130
|
-
path = MobileHeroDesignPlayground/Supporting;
|
|
131
|
-
sourceTree = "<group>";
|
|
132
|
-
};
|
|
133
|
-
D65327D7A22EEC0BE12398D9 /* Pods */ = {
|
|
134
|
-
isa = PBXGroup;
|
|
135
|
-
children = (
|
|
136
|
-
6C2E3173556A471DD304B334 /* Pods-MobileHeroDesignPlayground.debug.xcconfig */,
|
|
137
|
-
7A4D352CD337FB3A3BF06240 /* Pods-MobileHeroDesignPlayground.release.xcconfig */,
|
|
138
|
-
);
|
|
139
|
-
path = Pods;
|
|
140
|
-
sourceTree = "<group>";
|
|
141
|
-
};
|
|
142
|
-
D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */ = {
|
|
143
|
-
isa = PBXGroup;
|
|
144
|
-
children = (
|
|
145
|
-
92DBD88DE9BF7D494EA9DA96 /* MobileHeroDesignPlayground */,
|
|
146
|
-
);
|
|
147
|
-
name = ExpoModulesProviders;
|
|
148
|
-
sourceTree = "<group>";
|
|
149
|
-
};
|
|
150
|
-
E24D20DB61724286BEF501AD /* Resources */ = {
|
|
151
|
-
isa = PBXGroup;
|
|
152
|
-
children = (
|
|
153
|
-
EF5740945E0E4E62BD4D1ABE /* be-vietnam-pro-light.ttf */,
|
|
154
|
-
4A26D551CEEF41248FB699AB /* be-vietnam-pro-regular.ttf */,
|
|
155
|
-
5E37DE72701E4059BA799B5E /* be-vietnam-pro-semibold.ttf */,
|
|
156
|
-
C1578E6D16D24FE8B2967E90 /* hero-icons.ttf */,
|
|
157
|
-
);
|
|
158
|
-
name = Resources;
|
|
159
|
-
sourceTree = "<group>";
|
|
160
|
-
};
|
|
161
|
-
E607AD9C28B66CCF005FDB5A /* Products */ = {
|
|
162
|
-
isa = PBXGroup;
|
|
163
|
-
children = (
|
|
164
|
-
);
|
|
165
|
-
name = Products;
|
|
166
|
-
sourceTree = "<group>";
|
|
167
|
-
};
|
|
168
|
-
/* End PBXGroup section */
|
|
169
|
-
|
|
170
|
-
/* Begin PBXNativeTarget section */
|
|
171
|
-
13B07F861A680F5B00A75B9A /* MobileHeroDesignPlayground */ = {
|
|
172
|
-
isa = PBXNativeTarget;
|
|
173
|
-
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "MobileHeroDesignPlayground" */;
|
|
174
|
-
buildPhases = (
|
|
175
|
-
08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */,
|
|
176
|
-
13B07F871A680F5B00A75B9A /* Sources */,
|
|
177
|
-
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
|
178
|
-
13B07F8E1A680F5B00A75B9A /* Resources */,
|
|
179
|
-
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
|
180
|
-
800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */,
|
|
181
|
-
);
|
|
182
|
-
buildRules = (
|
|
183
|
-
);
|
|
184
|
-
dependencies = (
|
|
185
|
-
);
|
|
186
|
-
name = MobileHeroDesignPlayground;
|
|
187
|
-
productName = MobileHeroDesignPlayground;
|
|
188
|
-
productReference = 13B07F961A680F5B00A75B9A /* MobileHeroDesignPlayground.app */;
|
|
189
|
-
productType = "com.apple.product-type.application";
|
|
190
|
-
};
|
|
191
|
-
/* End PBXNativeTarget section */
|
|
192
|
-
|
|
193
|
-
/* Begin PBXProject section */
|
|
194
|
-
83CBB9F71A601CBA00E9B192 /* Project object */ = {
|
|
195
|
-
isa = PBXProject;
|
|
196
|
-
attributes = {
|
|
197
|
-
LastUpgradeCheck = 1130;
|
|
198
|
-
TargetAttributes = {
|
|
199
|
-
13B07F861A680F5B00A75B9A = {
|
|
200
|
-
LastSwiftMigration = 1250;
|
|
201
|
-
};
|
|
202
|
-
};
|
|
203
|
-
};
|
|
204
|
-
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "MobileHeroDesignPlayground" */;
|
|
205
|
-
compatibilityVersion = "Xcode 3.2";
|
|
206
|
-
developmentRegion = en;
|
|
207
|
-
hasScannedForEncodings = 0;
|
|
208
|
-
knownRegions = (
|
|
209
|
-
en,
|
|
210
|
-
Base,
|
|
211
|
-
);
|
|
212
|
-
mainGroup = 83CBB9F61A601CBA00E9B192;
|
|
213
|
-
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
|
214
|
-
projectDirPath = "";
|
|
215
|
-
projectReferences = (
|
|
216
|
-
{
|
|
217
|
-
ProductGroup = E607AD9C28B66CCF005FDB5A /* Products */;
|
|
218
|
-
ProjectRef = 4B0848E3AE024522B6BBC6F5 /* MobileHeroDesignPlayground.xcodeproj */;
|
|
219
|
-
},
|
|
220
|
-
);
|
|
221
|
-
projectRoot = "";
|
|
222
|
-
targets = (
|
|
223
|
-
13B07F861A680F5B00A75B9A /* MobileHeroDesignPlayground */,
|
|
224
|
-
);
|
|
225
|
-
};
|
|
226
|
-
/* End PBXProject section */
|
|
227
|
-
|
|
228
|
-
/* Begin PBXResourcesBuildPhase section */
|
|
229
|
-
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
|
230
|
-
isa = PBXResourcesBuildPhase;
|
|
231
|
-
buildActionMask = 2147483647;
|
|
232
|
-
files = (
|
|
233
|
-
BB2F792D24A3F905000567C9 /* Expo.plist in Resources */,
|
|
234
|
-
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
|
|
235
|
-
3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */,
|
|
236
|
-
16B4C2D54D6B45DDB105B95E /* be-vietnam-pro-light.ttf in Resources */,
|
|
237
|
-
90C0D473828041BD9EEC3099 /* be-vietnam-pro-regular.ttf in Resources */,
|
|
238
|
-
80F6D4E5E039401C80ADE5E0 /* be-vietnam-pro-semibold.ttf in Resources */,
|
|
239
|
-
4FBCD585B19746B8BEAD3806 /* hero-icons.ttf in Resources */,
|
|
240
|
-
);
|
|
241
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
242
|
-
};
|
|
243
|
-
/* End PBXResourcesBuildPhase section */
|
|
244
|
-
|
|
245
|
-
/* Begin PBXShellScriptBuildPhase section */
|
|
246
|
-
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
|
|
247
|
-
isa = PBXShellScriptBuildPhase;
|
|
248
|
-
buildActionMask = 2147483647;
|
|
249
|
-
files = (
|
|
250
|
-
);
|
|
251
|
-
inputPaths = (
|
|
252
|
-
);
|
|
253
|
-
name = "Bundle React Native code and images";
|
|
254
|
-
outputPaths = (
|
|
255
|
-
);
|
|
256
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
257
|
-
shellPath = /bin/sh;
|
|
258
|
-
shellScript = "export NODE_BINARY=node\n\n# The project root by default is one level up from the ios directory\nexport PROJECT_ROOT=\"$PROJECT_DIR\"/..\n\n`node --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n";
|
|
259
|
-
};
|
|
260
|
-
08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */ = {
|
|
261
|
-
isa = PBXShellScriptBuildPhase;
|
|
262
|
-
buildActionMask = 2147483647;
|
|
263
|
-
files = (
|
|
264
|
-
);
|
|
265
|
-
inputFileListPaths = (
|
|
266
|
-
);
|
|
267
|
-
inputPaths = (
|
|
268
|
-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
269
|
-
"${PODS_ROOT}/Manifest.lock",
|
|
270
|
-
);
|
|
271
|
-
name = "[CP] Check Pods Manifest.lock";
|
|
272
|
-
outputFileListPaths = (
|
|
273
|
-
);
|
|
274
|
-
outputPaths = (
|
|
275
|
-
"$(DERIVED_FILE_DIR)/Pods-MobileHeroDesignPlayground-checkManifestLockResult.txt",
|
|
276
|
-
);
|
|
277
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
278
|
-
shellPath = /bin/sh;
|
|
279
|
-
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
280
|
-
showEnvVarsInLog = 0;
|
|
281
|
-
};
|
|
282
|
-
800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */ = {
|
|
283
|
-
isa = PBXShellScriptBuildPhase;
|
|
284
|
-
buildActionMask = 2147483647;
|
|
285
|
-
files = (
|
|
286
|
-
);
|
|
287
|
-
inputPaths = (
|
|
288
|
-
"${PODS_ROOT}/Target Support Files/Pods-MobileHeroDesignPlayground/Pods-MobileHeroDesignPlayground-resources.sh",
|
|
289
|
-
"${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle",
|
|
290
|
-
"${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
|
|
291
|
-
);
|
|
292
|
-
name = "[CP] Copy Pods Resources";
|
|
293
|
-
outputPaths = (
|
|
294
|
-
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle",
|
|
295
|
-
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
|
|
296
|
-
);
|
|
297
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
298
|
-
shellPath = /bin/sh;
|
|
299
|
-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MobileHeroDesignPlayground/Pods-MobileHeroDesignPlayground-resources.sh\"\n";
|
|
300
|
-
showEnvVarsInLog = 0;
|
|
301
|
-
};
|
|
302
|
-
/* End PBXShellScriptBuildPhase section */
|
|
303
|
-
|
|
304
|
-
/* Begin PBXSourcesBuildPhase section */
|
|
305
|
-
13B07F871A680F5B00A75B9A /* Sources */ = {
|
|
306
|
-
isa = PBXSourcesBuildPhase;
|
|
307
|
-
buildActionMask = 2147483647;
|
|
308
|
-
files = (
|
|
309
|
-
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
|
|
310
|
-
13B07FC11A68108700A75B9A /* main.m in Sources */,
|
|
311
|
-
B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */,
|
|
312
|
-
F6E015FA58E842B89B8A19B8 /* noop-file.swift in Sources */,
|
|
313
|
-
);
|
|
314
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
315
|
-
};
|
|
316
|
-
/* End PBXSourcesBuildPhase section */
|
|
317
|
-
|
|
318
|
-
/* Begin XCBuildConfiguration section */
|
|
319
|
-
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
320
|
-
isa = XCBuildConfiguration;
|
|
321
|
-
baseConfigurationReference = 6C2E3173556A471DD304B334 /* Pods-MobileHeroDesignPlayground.debug.xcconfig */;
|
|
322
|
-
buildSettings = {
|
|
323
|
-
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
324
|
-
CLANG_ENABLE_MODULES = YES;
|
|
325
|
-
CODE_SIGN_ENTITLEMENTS = MobileHeroDesignPlayground/MobileHeroDesignPlayground.entitlements;
|
|
326
|
-
CURRENT_PROJECT_VERSION = 1;
|
|
327
|
-
ENABLE_BITCODE = NO;
|
|
328
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
329
|
-
"$(inherited)",
|
|
330
|
-
"FB_SONARKIT_ENABLED=1",
|
|
331
|
-
);
|
|
332
|
-
HEADER_SEARCH_PATHS = (
|
|
333
|
-
"$(inherited)",
|
|
334
|
-
"$(SRCROOT)/MobileHeroDesignPlayground/**",
|
|
335
|
-
);
|
|
336
|
-
INFOPLIST_FILE = MobileHeroDesignPlayground/Info.plist;
|
|
337
|
-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
|
338
|
-
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
339
|
-
OTHER_LDFLAGS = (
|
|
340
|
-
"$(inherited)",
|
|
341
|
-
"-ObjC",
|
|
342
|
-
"-lc++",
|
|
343
|
-
);
|
|
344
|
-
PRODUCT_BUNDLE_IDENTIFIER = "com.thinkei.Mobile-Hero-Design-Playground";
|
|
345
|
-
PRODUCT_NAME = MobileHeroDesignPlayground;
|
|
346
|
-
SWIFT_OBJC_BRIDGING_HEADER = "MobileHeroDesignPlayground/MobileHeroDesignPlayground-Bridging-Header.h";
|
|
347
|
-
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
348
|
-
SWIFT_VERSION = 5.0;
|
|
349
|
-
TARGETED_DEVICE_FAMILY = 1;
|
|
350
|
-
VERSIONING_SYSTEM = "apple-generic";
|
|
351
|
-
};
|
|
352
|
-
name = Debug;
|
|
353
|
-
};
|
|
354
|
-
13B07F951A680F5B00A75B9A /* Release */ = {
|
|
355
|
-
isa = XCBuildConfiguration;
|
|
356
|
-
baseConfigurationReference = 7A4D352CD337FB3A3BF06240 /* Pods-MobileHeroDesignPlayground.release.xcconfig */;
|
|
357
|
-
buildSettings = {
|
|
358
|
-
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
359
|
-
CLANG_ENABLE_MODULES = YES;
|
|
360
|
-
CODE_SIGN_ENTITLEMENTS = MobileHeroDesignPlayground/MobileHeroDesignPlayground.entitlements;
|
|
361
|
-
CURRENT_PROJECT_VERSION = 1;
|
|
362
|
-
DEVELOPMENT_TEAM = AC43L36827;
|
|
363
|
-
HEADER_SEARCH_PATHS = (
|
|
364
|
-
"$(inherited)",
|
|
365
|
-
"$(SRCROOT)/MobileHeroDesignPlayground/**",
|
|
366
|
-
);
|
|
367
|
-
INFOPLIST_FILE = MobileHeroDesignPlayground/Info.plist;
|
|
368
|
-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
|
369
|
-
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
370
|
-
OTHER_LDFLAGS = (
|
|
371
|
-
"$(inherited)",
|
|
372
|
-
"-ObjC",
|
|
373
|
-
"-lc++",
|
|
374
|
-
);
|
|
375
|
-
PRODUCT_BUNDLE_IDENTIFIER = "com.thinkei.Mobile-Hero-Design-Playground";
|
|
376
|
-
PRODUCT_NAME = MobileHeroDesignPlayground;
|
|
377
|
-
SWIFT_OBJC_BRIDGING_HEADER = "MobileHeroDesignPlayground/MobileHeroDesignPlayground-Bridging-Header.h";
|
|
378
|
-
SWIFT_VERSION = 5.0;
|
|
379
|
-
TARGETED_DEVICE_FAMILY = 1;
|
|
380
|
-
VERSIONING_SYSTEM = "apple-generic";
|
|
381
|
-
};
|
|
382
|
-
name = Release;
|
|
383
|
-
};
|
|
384
|
-
83CBBA201A601CBA00E9B192 /* Debug */ = {
|
|
385
|
-
isa = XCBuildConfiguration;
|
|
386
|
-
buildSettings = {
|
|
387
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
388
|
-
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
389
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
390
|
-
CLANG_CXX_LIBRARY = "libc++";
|
|
391
|
-
CLANG_ENABLE_MODULES = YES;
|
|
392
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
|
393
|
-
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
394
|
-
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
395
|
-
CLANG_WARN_COMMA = YES;
|
|
396
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
397
|
-
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
398
|
-
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
399
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
|
400
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
401
|
-
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
402
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
|
403
|
-
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
404
|
-
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
405
|
-
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
406
|
-
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
407
|
-
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
408
|
-
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
409
|
-
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
410
|
-
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
411
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
412
|
-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
413
|
-
COPY_PHASE_STRIP = NO;
|
|
414
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
415
|
-
ENABLE_TESTABILITY = YES;
|
|
416
|
-
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
417
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
418
|
-
GCC_DYNAMIC_NO_PIC = NO;
|
|
419
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
|
420
|
-
GCC_OPTIMIZATION_LEVEL = 0;
|
|
421
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
422
|
-
"DEBUG=1",
|
|
423
|
-
"$(inherited)",
|
|
424
|
-
);
|
|
425
|
-
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
426
|
-
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
427
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
428
|
-
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
429
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
430
|
-
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
431
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
432
|
-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
|
433
|
-
LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
|
|
434
|
-
LIBRARY_SEARCH_PATHS = "\"$(inherited)\"";
|
|
435
|
-
MTL_ENABLE_DEBUG_INFO = YES;
|
|
436
|
-
ONLY_ACTIVE_ARCH = YES;
|
|
437
|
-
SDKROOT = iphoneos;
|
|
438
|
-
};
|
|
439
|
-
name = Debug;
|
|
440
|
-
};
|
|
441
|
-
83CBBA211A601CBA00E9B192 /* Release */ = {
|
|
442
|
-
isa = XCBuildConfiguration;
|
|
443
|
-
buildSettings = {
|
|
444
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
445
|
-
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
446
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
447
|
-
CLANG_CXX_LIBRARY = "libc++";
|
|
448
|
-
CLANG_ENABLE_MODULES = YES;
|
|
449
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
|
450
|
-
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
451
|
-
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
452
|
-
CLANG_WARN_COMMA = YES;
|
|
453
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
454
|
-
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
455
|
-
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
456
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
|
457
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
458
|
-
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
459
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
|
460
|
-
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
461
|
-
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
462
|
-
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
463
|
-
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
464
|
-
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
465
|
-
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
466
|
-
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
467
|
-
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
468
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
469
|
-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
470
|
-
COPY_PHASE_STRIP = YES;
|
|
471
|
-
ENABLE_NS_ASSERTIONS = NO;
|
|
472
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
473
|
-
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
474
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
475
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
|
476
|
-
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
477
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
478
|
-
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
479
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
480
|
-
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
481
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
482
|
-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
|
483
|
-
LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
|
|
484
|
-
LIBRARY_SEARCH_PATHS = "\"$(inherited)\"";
|
|
485
|
-
MTL_ENABLE_DEBUG_INFO = NO;
|
|
486
|
-
SDKROOT = iphoneos;
|
|
487
|
-
VALIDATE_PRODUCT = YES;
|
|
488
|
-
};
|
|
489
|
-
name = Release;
|
|
490
|
-
};
|
|
491
|
-
/* End XCBuildConfiguration section */
|
|
492
|
-
|
|
493
|
-
/* Begin XCConfigurationList section */
|
|
494
|
-
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "MobileHeroDesignPlayground" */ = {
|
|
495
|
-
isa = XCConfigurationList;
|
|
496
|
-
buildConfigurations = (
|
|
497
|
-
13B07F941A680F5B00A75B9A /* Debug */,
|
|
498
|
-
13B07F951A680F5B00A75B9A /* Release */,
|
|
499
|
-
);
|
|
500
|
-
defaultConfigurationIsVisible = 0;
|
|
501
|
-
defaultConfigurationName = Release;
|
|
502
|
-
};
|
|
503
|
-
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "MobileHeroDesignPlayground" */ = {
|
|
504
|
-
isa = XCConfigurationList;
|
|
505
|
-
buildConfigurations = (
|
|
506
|
-
83CBBA201A601CBA00E9B192 /* Debug */,
|
|
507
|
-
83CBBA211A601CBA00E9B192 /* Release */,
|
|
508
|
-
);
|
|
509
|
-
defaultConfigurationIsVisible = 0;
|
|
510
|
-
defaultConfigurationName = Release;
|
|
511
|
-
};
|
|
512
|
-
/* End XCConfigurationList section */
|
|
513
|
-
};
|
|
514
|
-
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
515
|
-
}
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<Scheme
|
|
3
|
-
LastUpgradeVersion = "1130"
|
|
4
|
-
version = "1.3">
|
|
5
|
-
<BuildAction
|
|
6
|
-
parallelizeBuildables = "YES"
|
|
7
|
-
buildImplicitDependencies = "YES">
|
|
8
|
-
<BuildActionEntries>
|
|
9
|
-
<BuildActionEntry
|
|
10
|
-
buildForTesting = "YES"
|
|
11
|
-
buildForRunning = "YES"
|
|
12
|
-
buildForProfiling = "YES"
|
|
13
|
-
buildForArchiving = "YES"
|
|
14
|
-
buildForAnalyzing = "YES">
|
|
15
|
-
<BuildableReference
|
|
16
|
-
BuildableIdentifier = "primary"
|
|
17
|
-
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
18
|
-
BuildableName = "MobileHeroDesignPlayground.app"
|
|
19
|
-
BlueprintName = "MobileHeroDesignPlayground"
|
|
20
|
-
ReferencedContainer = "container:MobileHeroDesignPlayground.xcodeproj">
|
|
21
|
-
</BuildableReference>
|
|
22
|
-
</BuildActionEntry>
|
|
23
|
-
</BuildActionEntries>
|
|
24
|
-
</BuildAction>
|
|
25
|
-
<TestAction
|
|
26
|
-
buildConfiguration = "Debug"
|
|
27
|
-
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
28
|
-
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
29
|
-
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
30
|
-
<Testables>
|
|
31
|
-
<TestableReference
|
|
32
|
-
skipped = "NO">
|
|
33
|
-
<BuildableReference
|
|
34
|
-
BuildableIdentifier = "primary"
|
|
35
|
-
BlueprintIdentifier = "00E356ED1AD99517003FC87E"
|
|
36
|
-
BuildableName = "MobileHeroDesignPlaygroundTests.xctest"
|
|
37
|
-
BlueprintName = "MobileHeroDesignPlaygroundTests"
|
|
38
|
-
ReferencedContainer = "container:MobileHeroDesignPlayground.xcodeproj">
|
|
39
|
-
</BuildableReference>
|
|
40
|
-
</TestableReference>
|
|
41
|
-
</Testables>
|
|
42
|
-
</TestAction>
|
|
43
|
-
<LaunchAction
|
|
44
|
-
buildConfiguration = "Release"
|
|
45
|
-
selectedDebuggerIdentifier = ""
|
|
46
|
-
selectedLauncherIdentifier = "Xcode.IDEFoundation.Launcher.PosixSpawn"
|
|
47
|
-
launchStyle = "0"
|
|
48
|
-
useCustomWorkingDirectory = "NO"
|
|
49
|
-
ignoresPersistentStateOnLaunch = "NO"
|
|
50
|
-
debugDocumentVersioning = "YES"
|
|
51
|
-
debugServiceExtension = "internal"
|
|
52
|
-
allowLocationSimulation = "YES">
|
|
53
|
-
<BuildableProductRunnable
|
|
54
|
-
runnableDebuggingMode = "0">
|
|
55
|
-
<BuildableReference
|
|
56
|
-
BuildableIdentifier = "primary"
|
|
57
|
-
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
58
|
-
BuildableName = "MobileHeroDesignPlayground.app"
|
|
59
|
-
BlueprintName = "MobileHeroDesignPlayground"
|
|
60
|
-
ReferencedContainer = "container:MobileHeroDesignPlayground.xcodeproj">
|
|
61
|
-
</BuildableReference>
|
|
62
|
-
</BuildableProductRunnable>
|
|
63
|
-
</LaunchAction>
|
|
64
|
-
<ProfileAction
|
|
65
|
-
buildConfiguration = "Release"
|
|
66
|
-
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
67
|
-
savedToolIdentifier = ""
|
|
68
|
-
useCustomWorkingDirectory = "NO"
|
|
69
|
-
debugDocumentVersioning = "YES">
|
|
70
|
-
<BuildableProductRunnable
|
|
71
|
-
runnableDebuggingMode = "0">
|
|
72
|
-
<BuildableReference
|
|
73
|
-
BuildableIdentifier = "primary"
|
|
74
|
-
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
75
|
-
BuildableName = "MobileHeroDesignPlayground.app"
|
|
76
|
-
BlueprintName = "MobileHeroDesignPlayground"
|
|
77
|
-
ReferencedContainer = "container:MobileHeroDesignPlayground.xcodeproj">
|
|
78
|
-
</BuildableReference>
|
|
79
|
-
</BuildableProductRunnable>
|
|
80
|
-
</ProfileAction>
|
|
81
|
-
<AnalyzeAction
|
|
82
|
-
buildConfiguration = "Debug">
|
|
83
|
-
</AnalyzeAction>
|
|
84
|
-
<ArchiveAction
|
|
85
|
-
buildConfiguration = "Release"
|
|
86
|
-
revealArchiveInOrganizer = "YES">
|
|
87
|
-
</ArchiveAction>
|
|
88
|
-
</Scheme>
|
package/playground/ios/Podfile
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking")
|
|
2
|
-
require File.join(File.dirname(`node --print "require.resolve('react-native/package.json')"`), "scripts/react_native_pods")
|
|
3
|
-
require File.join(File.dirname(`node --print "require.resolve('@react-native-community/cli-platform-ios/package.json')"`), "native_modules")
|
|
4
|
-
|
|
5
|
-
platform :ios, '12.0'
|
|
6
|
-
|
|
7
|
-
require 'json'
|
|
8
|
-
podfile_properties = JSON.parse(File.read('./Podfile.properties.json')) rescue {}
|
|
9
|
-
|
|
10
|
-
target 'MobileHeroDesignPlayground' do
|
|
11
|
-
use_expo_modules!
|
|
12
|
-
config = use_native_modules!
|
|
13
|
-
|
|
14
|
-
use_react_native!(
|
|
15
|
-
:path => config[:reactNativePath],
|
|
16
|
-
:hermes_enabled => podfile_properties['expo.jsEngine'] == 'hermes'
|
|
17
|
-
)
|
|
18
|
-
|
|
19
|
-
# Uncomment to opt-in to using Flipper
|
|
20
|
-
#
|
|
21
|
-
# if !ENV['CI']
|
|
22
|
-
# use_flipper!('Flipper' => '0.75.1', 'Flipper-Folly' => '2.5.3', 'Flipper-RSocket' => '1.3.1')
|
|
23
|
-
# end
|
|
24
|
-
|
|
25
|
-
post_install do |installer|
|
|
26
|
-
react_native_post_install(installer)
|
|
27
|
-
|
|
28
|
-
# Workaround `Cycle inside FBReactNativeSpec` error for react-native 0.64
|
|
29
|
-
# Reference: https://github.com/software-mansion/react-native-screens/issues/842#issuecomment-812543933
|
|
30
|
-
installer.pods_project.targets.each do |target|
|
|
31
|
-
if (target.name&.eql?('FBReactNativeSpec'))
|
|
32
|
-
target.build_phases.each do |build_phase|
|
|
33
|
-
if (build_phase.respond_to?(:name) && build_phase.name.eql?('[CP-User] Generate Specs'))
|
|
34
|
-
target.build_phases.move(build_phase, 0)
|
|
35
|
-
end
|
|
36
|
-
end
|
|
37
|
-
end
|
|
38
|
-
end
|
|
39
|
-
end
|
|
40
|
-
|
|
41
|
-
post_integrate do |installer|
|
|
42
|
-
begin
|
|
43
|
-
expo_patch_react_imports!(installer)
|
|
44
|
-
rescue => e
|
|
45
|
-
Pod::UI.warn e
|
|
46
|
-
end
|
|
47
|
-
end
|
|
48
|
-
|
|
49
|
-
end
|