nx-react-native-cli 2.1.2 → 2.2.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.
Files changed (57) hide show
  1. package/README.md +2 -2
  2. package/lib/index.cjs +36 -36
  3. package/package.json +1 -1
  4. package/templates/apps/mobile/Gemfile +7 -1
  5. package/templates/apps/mobile/android/gradle/wrapper/gradle-wrapper.properties +1 -1
  6. package/templates/apps/mobile/android/gradle.properties +1 -1
  7. package/templates/apps/mobile/android/gradlew +0 -0
  8. package/templates/apps/mobile/android/gradlew.bat +0 -0
  9. package/templates/apps/mobile/fastlane/Fastfile +1 -1
  10. package/templates/apps/mobile/ios/AppsMobile/AppDelegate.mm +34 -14
  11. package/templates/apps/mobile/package.json +2 -2
  12. package/templates/apps/mobile/src/app/index.tsx +0 -3
  13. package/templates/apps/mobile/src/assets/images/.gitkeep +0 -0
  14. package/templates/apps/mobile/src/components/atoms/BottomSheet/bottom-sheet.component.tsx +4 -1
  15. package/templates/apps/mobile/src/components/atoms/Button/button.component.tsx +3 -3
  16. package/templates/apps/mobile/src/components/atoms/KeyboardAwareScrollView/keyboard-aware-scroll-view.component.tsx +2 -2
  17. package/templates/apps/mobile/src/components/atoms/ListLoadingItem/list-loading-item.component.tsx +19 -27
  18. package/templates/apps/mobile/src/components/atoms/TextInput/bottom-sheet-text-input.component.tsx +79 -0
  19. package/templates/apps/mobile/src/components/atoms/TextInput/constants.ts +3 -0
  20. package/templates/apps/mobile/src/components/atoms/TextInput/index.ts +2 -0
  21. package/templates/apps/mobile/src/components/atoms/TextInput/text-input-area.component.tsx +68 -0
  22. package/templates/apps/mobile/src/components/atoms/TextInput/text-input.component.tsx +2 -63
  23. package/templates/apps/mobile/src/components/atoms/TextInput/util.ts +12 -0
  24. package/templates/apps/mobile/src/components/molecules/ScreenContainer/screen-container.component.tsx +27 -6
  25. package/templates/apps/mobile/src/icons/index.ts +1 -30
  26. package/templates/apps/mobile/src/screens/LandingScreen/landing.screen.tsx +1 -29
  27. package/templates/apps/mobile/src/assets/fonts/InterBlack.ttf +0 -0
  28. package/templates/apps/mobile/src/assets/fonts/InterBlackItalic.ttf +0 -0
  29. package/templates/apps/mobile/src/assets/fonts/InterBold.ttf +0 -0
  30. package/templates/apps/mobile/src/assets/fonts/InterBoldItalic.ttf +0 -0
  31. package/templates/apps/mobile/src/assets/fonts/InterExtraBold.ttf +0 -0
  32. package/templates/apps/mobile/src/assets/fonts/InterExtraBoldItalic.ttf +0 -0
  33. package/templates/apps/mobile/src/assets/fonts/InterExtraLight.ttf +0 -0
  34. package/templates/apps/mobile/src/assets/fonts/InterExtraLightItalic.ttf +0 -0
  35. package/templates/apps/mobile/src/assets/fonts/InterItalic.ttf +0 -0
  36. package/templates/apps/mobile/src/assets/fonts/InterLight.ttf +0 -0
  37. package/templates/apps/mobile/src/assets/fonts/InterLightItalic.ttf +0 -0
  38. package/templates/apps/mobile/src/assets/fonts/InterMedium.ttf +0 -0
  39. package/templates/apps/mobile/src/assets/fonts/InterMediumItalic.ttf +0 -0
  40. package/templates/apps/mobile/src/assets/fonts/InterRegular.ttf +0 -0
  41. package/templates/apps/mobile/src/assets/fonts/InterSemiBold.ttf +0 -0
  42. package/templates/apps/mobile/src/assets/fonts/InterSemiBoldItalic.ttf +0 -0
  43. package/templates/apps/mobile/src/assets/fonts/InterThin.ttf +0 -0
  44. package/templates/apps/mobile/src/assets/fonts/InterThinItalic.ttf +0 -0
  45. package/templates/apps/mobile/src/icons/checkbox-active.svg +0 -4
  46. package/templates/apps/mobile/src/icons/checkbox-unactive.svg +0 -4
  47. package/templates/apps/mobile/src/icons/close.svg +0 -3
  48. package/templates/apps/mobile/src/icons/download.svg +0 -4
  49. package/templates/apps/mobile/src/icons/email.svg +0 -10
  50. package/templates/apps/mobile/src/icons/eye-slash.svg +0 -11
  51. package/templates/apps/mobile/src/icons/eye.svg +0 -4
  52. package/templates/apps/mobile/src/icons/home.svg +0 -3
  53. package/templates/apps/mobile/src/icons/pencil.svg +0 -3
  54. package/templates/apps/mobile/src/icons/phone.svg +0 -3
  55. package/templates/apps/mobile/src/icons/user-circle.svg +0 -3
  56. package/templates/apps/mobile/src/icons/user.svg +0 -4
  57. package/templates/apps/mobile/src/icons/warning.svg +0 -3
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  ## 📦 Introduction
7
7
 
8
- A comprehensive React Native mobile application starter kit built with Nx workspace. This package provides a carefully curated set of tools and libraries to streamline your mobile app development process with React Native 0.78.0 and the New Architecture.
8
+ A comprehensive React Native mobile application starter kit built with Nx workspace. This package provides a carefully curated set of tools and libraries to streamline your mobile app development process with React Native 0.79.2 and the New Architecture.
9
9
 
10
10
  <h2 id="🛠-usage">🛠 Usage</h2>
11
11
  <p>Generate a new Nx workspace with the React Native preset:</p>
@@ -16,7 +16,7 @@ A comprehensive React Native mobile application starter kit built with Nx worksp
16
16
 
17
17
  ### Core Technologies
18
18
  - **Yarn**: Fast, reliable, and secure dependency management
19
- - **React Native 0.78.0**: Latest version with New Architecture support
19
+ - **React Native 0.79.2**: Latest version with New Architecture support
20
20
  - **TypeScript**: Strongly typed JavaScript for better code quality
21
21
  - **Nx Workspace**: Powerful monorepo tooling for scalable development
22
22
  - **TailwindCSS via TWRNC**: Utility-first CSS framework for fast UI development