@hero-design/rn 7.3.2 → 7.6.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/assets/fonts/hero-icons.ttf +0 -0
- package/es/index.js +7093 -5663
- package/lib/assets/fonts/hero-icons.ttf +0 -0
- package/lib/index.js +7101 -5662
- package/package.json +11 -9
- package/playground/.detoxrc.json +49 -0
- package/playground/.prettierrc.json +8 -0
- package/playground/.turbo/turbo-type-check.log +7 -0
- package/playground/app.json +9 -0
- package/playground/babel.config.js +63 -0
- package/playground/e2e/config.json +9 -0
- package/playground/e2e/environment.js +23 -0
- package/playground/e2e/firstTest.e2e.js +16 -0
- package/{expoEntry.js → playground/expoEntry.js} +1 -1
- 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 +7 -0
- package/playground/ios/MobileHeroDesignPlayground/AppDelegate.h +9 -0
- package/playground/ios/MobileHeroDesignPlayground/AppDelegate.m +75 -0
- package/playground/ios/MobileHeroDesignPlayground/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
- package/playground/ios/MobileHeroDesignPlayground/Images.xcassets/Contents.json +6 -0
- package/playground/ios/MobileHeroDesignPlayground/Images.xcassets/SplashScreenBackground.imageset/Contents.json +21 -0
- package/playground/ios/MobileHeroDesignPlayground/Images.xcassets/SplashScreenBackground.imageset/image.png +0 -0
- package/playground/ios/MobileHeroDesignPlayground/Info.plist +85 -0
- package/playground/ios/MobileHeroDesignPlayground/MobileHeroDesignPlayground-Bridging-Header.h +3 -0
- package/playground/ios/MobileHeroDesignPlayground/MobileHeroDesignPlayground.entitlements +8 -0
- package/playground/ios/MobileHeroDesignPlayground/SplashScreen.storyboard +40 -0
- package/playground/ios/MobileHeroDesignPlayground/Supporting/Expo.plist +16 -0
- package/playground/ios/MobileHeroDesignPlayground/main.m +10 -0
- package/playground/ios/MobileHeroDesignPlayground/noop-file.swift +4 -0
- package/playground/ios/MobileHeroDesignPlayground.xcodeproj/project.pbxproj +515 -0
- package/playground/ios/MobileHeroDesignPlayground.xcodeproj/xcshareddata/xcschemes/MobileHeroDesignPlayground.xcscheme +88 -0
- package/playground/ios/MobileHeroDesignPlayground.xcworkspace/contents.xcworkspacedata +10 -0
- package/playground/ios/MobileHeroDesignPlayground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/playground/ios/Podfile +49 -0
- package/playground/ios/Podfile.lock +478 -0
- package/playground/ios/Podfile.properties.json +3 -0
- package/{metro.config.js → playground/metro.config.js} +10 -2
- package/playground/package.json +63 -0
- package/playground/src/Alert.tsx +80 -0
- package/playground/{index.tsx → src/App.tsx} +69 -29
- package/playground/{components → src}/Avatar.tsx +1 -1
- package/playground/{components → src}/Badge.tsx +1 -1
- package/playground/{components → src}/BottomNavigation.tsx +1 -1
- package/playground/src/BottomSheet.tsx +43 -0
- package/playground/{components → src}/Button.tsx +1 -1
- package/playground/{components → src}/Card.tsx +1 -1
- package/playground/{components → src}/Collapse.tsx +1 -1
- package/playground/src/ContentNavigator.tsx +58 -0
- package/playground/{components → src}/Divider.tsx +1 -1
- package/playground/{components → src}/Drawer.tsx +1 -1
- package/playground/{components → src}/FAB.tsx +1 -1
- package/playground/{components → src}/Icon.tsx +7 -3
- package/playground/{components → src}/IconButton.tsx +12 -1
- package/playground/src/MultipleThemes.tsx +34 -0
- package/playground/{components → src}/Progress.tsx +1 -1
- package/playground/src/Radio.tsx +25 -0
- package/playground/src/SectionHeading.tsx +68 -0
- package/playground/src/Select.tsx +32 -0
- package/playground/src/Spinner.tsx +19 -0
- package/playground/src/Switch.tsx +80 -0
- package/playground/{components → src}/Tabs.tsx +1 -1
- package/playground/{components → src}/Tag.tsx +1 -1
- package/playground/src/TextInput.tsx +14 -0
- package/playground/{components → src}/Typography.tsx +1 -1
- package/playground/src/emotion.d.ts +7 -0
- package/playground/tsconfig.json +21 -0
- package/src/components/Alert/StyledAlert.tsx +48 -0
- package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +686 -0
- package/src/components/Alert/__tests__/index.spec.tsx +83 -0
- package/src/components/Alert/index.tsx +109 -0
- package/src/components/BottomSheet/Footer.tsx +19 -0
- package/src/components/BottomSheet/Header.tsx +49 -0
- package/src/components/BottomSheet/StyledBottomSheet.tsx +75 -0
- package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +531 -0
- package/src/components/BottomSheet/__tests__/index.spec.tsx +107 -0
- package/src/components/BottomSheet/index.tsx +177 -0
- package/src/components/Button/IconButton.tsx +11 -1
- package/src/components/Collapse/StyledCollapse.tsx +11 -2
- package/src/components/Collapse/__tests__/__snapshots__/index.spec.tsx.snap +36 -31
- package/src/components/Collapse/__tests__/index.spec.tsx +1 -13
- package/src/components/Collapse/index.tsx +20 -50
- package/src/components/ContentNavigator/StyledContentNavigator.tsx +15 -0
- package/src/components/ContentNavigator/__tests__/StyledContentNavigator.spec.tsx +19 -0
- package/src/components/ContentNavigator/__tests__/__snapshots__/StyledContentNavigator.spec.tsx.snap +43 -0
- package/src/components/ContentNavigator/__tests__/__snapshots__/index.spec.tsx.snap +217 -0
- package/src/components/ContentNavigator/__tests__/index.spec.tsx +74 -0
- package/src/components/ContentNavigator/index.tsx +65 -0
- package/src/components/Icon/HeroIcon/index.tsx +13 -2
- package/src/components/Icon/HeroIcon/selection.json +1 -1
- package/src/components/Icon/IconList.ts +8 -0
- package/src/components/Icon/index.tsx +8 -1
- package/src/components/Radio/Radio.tsx +51 -0
- package/src/components/Radio/RadioGroup.tsx +74 -0
- package/src/components/Radio/StyledRadio.tsx +42 -0
- package/src/components/Radio/__tests__/Radio.spec.tsx +38 -0
- package/src/components/Radio/__tests__/RadioGroup.spec.tsx +36 -0
- package/src/components/Radio/__tests__/StyledRadio.spec.tsx +43 -0
- package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +160 -0
- package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +248 -0
- package/src/components/Radio/__tests__/__snapshots__/StyledRadio.spec.tsx.snap +124 -0
- package/src/components/Radio/index.tsx +5 -0
- package/src/components/Radio/types.ts +1 -0
- package/src/components/SectionHeading/StyledHeading.tsx +24 -0
- package/src/components/SectionHeading/__tests__/StyledHeading.spec.tsx +28 -0
- package/src/components/SectionHeading/__tests__/__snapshots__/StyledHeading.spec.tsx.snap +48 -0
- package/src/components/SectionHeading/__tests__/__snapshots__/index.spec.tsx.snap +208 -0
- package/src/components/SectionHeading/__tests__/index.spec.tsx +39 -0
- package/src/components/SectionHeading/index.tsx +93 -0
- package/src/components/Select/MultiSelect/Footer.tsx +15 -0
- package/src/components/Select/MultiSelect/OptionList.tsx +76 -0
- package/src/components/Select/MultiSelect/StyledMultiSelect.tsx +30 -0
- package/src/components/Select/MultiSelect/__tests__/StyledMultiSelect.spec.tsx +49 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/StyledMultiSelect.spec.tsx.snap +108 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +1630 -0
- package/src/components/Select/MultiSelect/__tests__/index.spec.tsx +94 -0
- package/src/components/Select/MultiSelect/index.tsx +103 -0
- package/src/components/Select/MultiSelect/types.ts +1 -0
- package/src/components/Select/index.tsx +5 -0
- package/src/components/Spinner/AnimatedSpinner.tsx +55 -0
- package/src/components/Spinner/StyledSpinner.tsx +59 -0
- package/src/components/Spinner/__tests__/AnimatedSpinner.spec.tsx +11 -0
- package/src/components/Spinner/__tests__/StyledSpinner.spec.tsx +56 -0
- package/src/components/Spinner/__tests__/__snapshots__/AnimatedSpinner.spec.tsx.snap +118 -0
- package/src/components/Spinner/__tests__/__snapshots__/StyledSpinner.spec.tsx.snap +235 -0
- package/src/components/Spinner/__tests__/__snapshots__/index.spec.tsx.snap +141 -0
- package/src/components/Spinner/__tests__/index.spec.tsx +12 -0
- package/src/components/Spinner/index.tsx +22 -0
- package/src/components/Switch/StyledSwitch.tsx +50 -0
- package/src/components/Switch/__tests__/StyledHeading.spec.tsx +42 -0
- package/src/components/Switch/__tests__/__snapshots__/StyledHeading.spec.tsx.snap +74 -0
- package/src/components/Switch/__tests__/__snapshots__/index.spec.tsx.snap +129 -0
- package/src/components/Switch/__tests__/index.spec.tsx +24 -0
- package/src/components/Switch/index.tsx +87 -0
- package/src/components/TextInput/StyledTextInput.tsx +30 -0
- package/src/components/TextInput/__tests__/StyledTextInput.spec.tsx +27 -0
- package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +67 -0
- package/src/components/TextInput/__tests__/index.spec.tsx +17 -0
- package/src/components/TextInput/index.tsx +74 -0
- package/src/index.ts +18 -0
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +174 -0
- package/src/theme/components/alert.ts +32 -0
- package/src/theme/components/bottomSheet.ts +34 -0
- package/src/theme/components/contentNavigator.ts +11 -0
- package/src/theme/components/icon.ts +1 -0
- package/src/theme/components/radio.ts +34 -0
- package/src/theme/components/sectionHeading.ts +18 -0
- package/src/theme/components/select.ts +23 -0
- package/src/theme/components/spinner.ts +21 -0
- package/src/theme/components/switch.ts +50 -0
- package/src/theme/components/textInput.ts +32 -0
- package/src/theme/global/borders.ts +6 -0
- package/src/theme/global/colors.ts +3 -0
- package/src/theme/index.ts +34 -7
- package/tsconfig.json +11 -3
- package/types/components/Alert/StyledAlert.d.ts +37 -0
- package/types/{src/components/Avatar → components/Alert}/__tests__/index.spec.d.ts +0 -0
- package/types/components/Alert/index.d.ts +42 -0
- package/types/{src/components → components}/Avatar/StyledAvatar.d.ts +0 -1
- package/types/{src/components → components}/Avatar/__tests__/StyledAvatar.spec.d.ts +0 -0
- package/types/{src/components/BottomNavigation → components/Avatar}/__tests__/index.spec.d.ts +0 -0
- package/types/{src/components → components}/Avatar/index.d.ts +0 -0
- package/types/{src/components → components}/Badge/Status.d.ts +0 -0
- package/types/{src/components → components}/Badge/StyledBadge.d.ts +0 -1
- package/types/{src/components → components}/Badge/__tests__/Badge.spec.d.ts +0 -0
- package/types/{src/components → components}/Badge/__tests__/Status.spec.d.ts +0 -0
- package/types/{src/components → components}/Badge/index.d.ts +0 -0
- package/types/{src/components → components}/BottomNavigation/StyledBottomNavigation.d.ts +0 -1
- package/types/{src/components/Button/LoadingIndicator → components/BottomNavigation}/__tests__/index.spec.d.ts +0 -0
- package/types/{src/components → components}/BottomNavigation/index.d.ts +0 -0
- package/types/components/BottomSheet/Footer.d.ts +6 -0
- package/types/components/BottomSheet/Header.d.ts +8 -0
- package/types/components/BottomSheet/StyledBottomSheet.d.ts +46 -0
- package/types/{src/components/Button → components/BottomSheet}/__tests__/index.spec.d.ts +0 -0
- package/types/components/BottomSheet/index.d.ts +55 -0
- package/types/{src/components → components}/Button/Button.d.ts +0 -0
- package/types/{src/components → components}/Button/IconButton.d.ts +5 -1
- package/types/{src/components → components}/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +0 -1
- package/types/{src/components → components}/Button/LoadingIndicator/__tests__/StyledLoadingIndicator.spec.d.ts +0 -0
- package/types/{src/components/Card → components/Button/LoadingIndicator}/__tests__/index.spec.d.ts +0 -0
- package/types/{src/components → components}/Button/LoadingIndicator/index.d.ts +0 -0
- package/types/{src/components → components}/Button/StyledButton.d.ts +0 -1
- package/types/{src/components → components}/Button/__tests__/Button.spec.d.ts +0 -0
- package/types/{src/components → components}/Button/__tests__/IconButton.spec.d.ts +0 -0
- package/types/{src/components → components}/Button/__tests__/StyledButton.spec.d.ts +0 -0
- package/types/{src/components → components}/Button/index.d.ts +0 -0
- package/types/{src/components → components}/Card/StyledCard.d.ts +0 -1
- package/types/{src/components → components}/Card/__tests__/StyledCard.spec.d.ts +0 -0
- package/types/{src/components/Collapse → components/Card}/__tests__/index.spec.d.ts +0 -0
- package/types/{src/components → components}/Card/index.d.ts +0 -0
- package/types/{src/components → components}/Collapse/StyledCollapse.d.ts +12 -2
- package/types/{src/components → components}/Collapse/__tests__/StyledCollapse.spec.d.ts +0 -0
- package/types/{src/components/Drawer → components/Collapse}/__tests__/index.spec.d.ts +0 -0
- package/types/{src/components → components}/Collapse/index.d.ts +1 -5
- package/types/components/ContentNavigator/StyledContentNavigator.d.ts +12 -0
- package/types/{src/components/Divider/__tests__/StyledDivider.spec.d.ts → components/ContentNavigator/__tests__/StyledContentNavigator.spec.d.ts} +0 -0
- package/types/{src/components/FAB → components/ContentNavigator}/__tests__/index.spec.d.ts +0 -0
- package/types/components/ContentNavigator/index.d.ts +33 -0
- package/types/{src/components → components}/Divider/StyledDivider.d.ts +0 -1
- package/types/{src/components/FAB/__tests__/AnimatedFABIcon.spec.d.ts → components/Divider/__tests__/StyledDivider.spec.d.ts} +0 -0
- package/types/{src/components → components}/Divider/index.d.ts +0 -0
- package/types/{src/components → components}/Drawer/StyledDrawer.d.ts +0 -1
- package/types/{src/components/Icon → components/Drawer}/__tests__/index.spec.d.ts +0 -0
- package/types/{src/components → components}/Drawer/index.d.ts +0 -0
- package/types/{src/components → components}/FAB/ActionGroup/ActionItem.d.ts +0 -0
- package/types/{src/components → components}/FAB/ActionGroup/StyledActionGroup.d.ts +0 -1
- package/types/{src/components → components}/FAB/ActionGroup/StyledActionItem.d.ts +0 -1
- package/types/{src/components → components}/FAB/ActionGroup/__tests__/index.spec.d.ts +0 -0
- package/types/{src/components → components}/FAB/ActionGroup/index.d.ts +0 -0
- package/types/{src/components → components}/FAB/AnimatedFABIcon.d.ts +0 -0
- package/types/{src/components → components}/FAB/FAB.d.ts +0 -0
- package/types/{src/components → components}/FAB/StyledFAB.d.ts +0 -1
- package/types/{src/components/FAB/__tests__/StyledFAB.spec.d.ts → components/FAB/__tests__/AnimatedFABIcon.spec.d.ts} +0 -0
- package/types/{src/components/Progress/__tests__/index.spec.d.ts → components/FAB/__tests__/StyledFAB.spec.d.ts} +0 -0
- package/types/{src/components/Tabs → components/FAB}/__tests__/index.spec.d.ts +0 -0
- package/types/{src/components → components}/FAB/index.d.ts +0 -0
- package/types/{src/components → components}/Icon/HeroIcon/index.d.ts +1 -2
- package/types/components/Icon/IconList.d.ts +2 -0
- package/types/{src/components/Typography/Text → components/Icon}/__tests__/index.spec.d.ts +0 -0
- package/types/{src/components → components}/Icon/index.d.ts +1 -1
- package/types/components/Icon/utils.d.ts +2 -0
- package/types/{src/components → components}/Progress/ProgressBar.d.ts +0 -0
- package/types/{src/components → components}/Progress/ProgressCircle.d.ts +0 -0
- package/types/{src/components → components}/Progress/StyledProgressBar.d.ts +0 -1
- package/types/{src/components → components}/Progress/StyledProgressCircle.d.ts +0 -1
- package/types/{src/theme → components/Progress}/__tests__/index.spec.d.ts +0 -0
- package/types/{src/components → components}/Progress/index.d.ts +0 -0
- package/types/{src/components → components}/Progress/types.d.ts +0 -0
- package/types/components/Radio/Radio.d.ts +26 -0
- package/types/components/Radio/RadioGroup.d.ts +32 -0
- package/types/components/Radio/StyledRadio.d.ts +30 -0
- package/types/{src/components/Tabs/__tests__/ScrollableTab.spec.d.ts → components/Radio/__tests__/Radio.spec.d.ts} +0 -0
- package/types/{src/components/Tabs/__tests__/ScrollableTabs.spec.d.ts → components/Radio/__tests__/RadioGroup.spec.d.ts} +0 -0
- package/types/{src/components/Tag/__tests__/Tag.spec.d.ts → components/Radio/__tests__/StyledRadio.spec.d.ts} +0 -0
- package/types/components/Radio/index.d.ts +4 -0
- package/types/components/Radio/types.d.ts +5 -0
- package/types/components/SectionHeading/StyledHeading.d.ts +20 -0
- package/types/{src/components/Typography/Text/__tests__/StyledText.spec.d.ts → components/SectionHeading/__tests__/StyledHeading.spec.d.ts} +0 -0
- package/types/{src/utils/__tests__/scale.spec.d.ts → components/SectionHeading/__tests__/index.spec.d.ts} +0 -0
- package/types/components/SectionHeading/index.d.ts +39 -0
- package/types/components/Select/MultiSelect/Footer.d.ts +5 -0
- package/types/components/Select/MultiSelect/OptionList.d.ts +3 -0
- package/types/components/Select/MultiSelect/StyledMultiSelect.d.ts +26 -0
- package/types/components/Select/MultiSelect/__tests__/StyledMultiSelect.spec.d.ts +1 -0
- package/types/components/Select/MultiSelect/__tests__/index.spec.d.ts +1 -0
- package/types/components/Select/MultiSelect/index.d.ts +39 -0
- package/types/components/Select/MultiSelect/types.d.ts +5 -0
- package/types/components/Select/index.d.ts +5 -0
- package/types/components/Spinner/AnimatedSpinner.d.ts +2 -0
- package/types/components/Spinner/StyledSpinner.d.ts +30 -0
- package/types/components/Spinner/__tests__/AnimatedSpinner.spec.d.ts +1 -0
- package/types/components/Spinner/__tests__/StyledSpinner.spec.d.ts +1 -0
- package/types/components/Spinner/__tests__/index.spec.d.ts +1 -0
- package/types/components/Spinner/index.d.ts +10 -0
- package/types/components/Switch/StyledSwitch.d.ts +36 -0
- package/types/components/Switch/__tests__/StyledHeading.spec.d.ts +1 -0
- package/types/components/Switch/__tests__/index.spec.d.ts +1 -0
- package/types/components/Switch/index.d.ts +30 -0
- package/types/{src/components → components}/Tabs/ActiveTabIndicator.d.ts +0 -0
- package/types/{src/components → components}/Tabs/ScrollableTabs.d.ts +0 -0
- package/types/{src/components → components}/Tabs/StyledScrollableTabs.d.ts +0 -1
- package/types/{src/components → components}/Tabs/StyledTabs.d.ts +0 -1
- package/types/components/Tabs/__tests__/ScrollableTabs.spec.d.ts +1 -0
- package/types/components/Tabs/__tests__/index.spec.d.ts +1 -0
- package/types/{src/components → components}/Tabs/index.d.ts +0 -0
- package/types/{src/components → components}/Tabs/utils.d.ts +0 -0
- package/types/{src/components → components}/Tag/StyledTag.d.ts +0 -1
- package/types/components/Tag/__tests__/Tag.spec.d.ts +1 -0
- package/types/{src/components → components}/Tag/index.d.ts +0 -0
- package/types/components/TextInput/StyledTextInput.d.ts +18 -0
- package/types/components/TextInput/__tests__/StyledTextInput.spec.d.ts +1 -0
- package/types/components/TextInput/__tests__/index.spec.d.ts +1 -0
- package/types/components/TextInput/index.d.ts +34 -0
- package/types/{src/components → components}/Typography/Text/StyledText.d.ts +0 -1
- package/types/components/Typography/Text/__tests__/StyledText.spec.d.ts +1 -0
- package/types/components/Typography/Text/__tests__/index.spec.d.ts +1 -0
- package/types/{src/components → components}/Typography/Text/index.d.ts +0 -0
- package/types/{src/components → components}/Typography/index.d.ts +0 -0
- package/types/{src/index.d.ts → index.d.ts} +10 -1
- package/types/{src/testHelpers → testHelpers}/renderWithTheme.d.ts +0 -0
- package/types/theme/__tests__/index.spec.d.ts +1 -0
- package/types/theme/components/alert.d.ts +23 -0
- package/types/{src/theme → theme}/components/avatar.d.ts +0 -0
- package/types/{src/theme → theme}/components/badge.d.ts +0 -0
- package/types/{src/theme → theme}/components/bottomNavigation.d.ts +0 -0
- package/types/theme/components/bottomSheet.d.ts +29 -0
- package/types/{src/theme → theme}/components/button.d.ts +0 -0
- package/types/{src/theme → theme}/components/card.d.ts +0 -0
- package/types/theme/components/contentNavigator.d.ts +7 -0
- package/types/{src/theme → theme}/components/divider.d.ts +0 -0
- package/types/{src/theme → theme}/components/drawer.d.ts +0 -0
- package/types/{src/theme → theme}/components/fab.d.ts +0 -0
- package/types/{src/theme → theme}/components/icon.d.ts +1 -0
- package/types/{src/theme → theme}/components/progress.d.ts +0 -0
- package/types/theme/components/radio.d.ts +25 -0
- package/types/theme/components/sectionHeading.d.ts +13 -0
- package/types/theme/components/select.d.ts +17 -0
- package/types/theme/components/spinner.d.ts +15 -0
- package/types/theme/components/switch.d.ts +32 -0
- package/types/{src/theme → theme}/components/tabs.d.ts +0 -0
- package/types/{src/theme → theme}/components/tag.d.ts +0 -0
- package/types/theme/components/textInput.d.ts +24 -0
- package/types/{src/theme → theme}/components/typography.d.ts +0 -0
- package/types/{src/theme → theme}/global/borders.d.ts +3 -0
- package/types/{src/theme → theme}/global/colors.d.ts +3 -0
- package/types/{src/theme → theme}/global/index.d.ts +3 -0
- package/types/{src/theme → theme}/global/scale.d.ts +0 -0
- package/types/{src/theme → theme}/global/space.d.ts +0 -0
- package/types/{src/theme → theme}/global/typography.d.ts +0 -0
- package/types/{src/theme → theme}/index.d.ts +23 -5
- package/types/{src/types.d.ts → types.d.ts} +0 -0
- package/types/utils/__tests__/scale.spec.d.ts +1 -0
- package/types/{src/utils → utils}/helpers.d.ts +0 -0
- package/types/{src/utils → utils}/hooks.d.ts +0 -0
- package/types/{src/utils → utils}/scale.d.ts +0 -0
- package/app.json +0 -8
- package/types/playground/components/Avatar.d.ts +0 -2
- package/types/playground/components/Badge.d.ts +0 -2
- package/types/playground/components/BottomNavigation.d.ts +0 -2
- package/types/playground/components/Button.d.ts +0 -2
- package/types/playground/components/Card.d.ts +0 -2
- package/types/playground/components/Collapse.d.ts +0 -2
- package/types/playground/components/Divider.d.ts +0 -2
- package/types/playground/components/Drawer.d.ts +0 -2
- package/types/playground/components/FAB.d.ts +0 -2
- package/types/playground/components/Icon.d.ts +0 -2
- package/types/playground/components/IconButton.d.ts +0 -2
- package/types/playground/components/Progress.d.ts +0 -2
- package/types/playground/components/Tabs.d.ts +0 -2
- package/types/playground/components/Tag.d.ts +0 -2
- package/types/playground/components/Typography.d.ts +0 -2
- package/types/playground/index.d.ts +0 -2
- package/types/src/components/Icon/IconList.d.ts +0 -2
- package/types/src/components/Icon/utils.d.ts +0 -2
- package/types/src/components/Tabs/ScrollableTab.d.ts +0 -3
- package/types/src/components/Tabs/StyledScrollableTab.d.ts +0 -61
|
@@ -0,0 +1,515 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
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>
|
|
@@ -0,0 +1,49 @@
|
|
|
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
|