nx-react-native-cli 2.2.0 → 2.3.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 (33) hide show
  1. package/README.md +1 -2
  2. package/lib/index.cjs +2 -2
  3. package/package.json +11 -11
  4. package/templates/.eslintrc.json +2 -8
  5. package/templates/.nvmrc +1 -1
  6. package/templates/apps/mobile/Gemfile +1 -1
  7. package/templates/apps/mobile/android/build.gradle +4 -4
  8. package/templates/apps/mobile/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  9. package/templates/apps/mobile/android/gradle/wrapper/gradle-wrapper.properties +1 -1
  10. package/templates/apps/mobile/android/gradle.properties +4 -0
  11. package/templates/apps/mobile/android/gradlew +4 -4
  12. package/templates/apps/mobile/android/gradlew.bat +7 -2
  13. package/templates/apps/mobile/babel.config.json +1 -1
  14. package/templates/apps/mobile/package.json +3 -2
  15. package/templates/apps/mobile/src/app/index.tsx +13 -8
  16. package/templates/apps/mobile/src/components/atoms/KeyboardAccessory/index.ts +1 -0
  17. package/templates/apps/mobile/src/components/atoms/KeyboardAccessory/keyboard-accessory.component.tsx +25 -0
  18. package/templates/apps/mobile/src/components/atoms/KeyboardAwareScrollView/keyboard-aware-scroll-view.component.tsx +7 -8
  19. package/templates/apps/mobile/src/components/atoms/TextInput/bottom-sheet-text-input.component.tsx +49 -6
  20. package/templates/apps/mobile/src/components/atoms/TextInput/constants.ts +13 -7
  21. package/templates/apps/mobile/src/components/atoms/TextInput/text-input-area.component.tsx +12 -13
  22. package/templates/apps/mobile/src/components/atoms/TextInput/text-input.component.tsx +42 -4
  23. package/templates/apps/mobile/src/components/atoms/index.ts +1 -0
  24. package/templates/apps/mobile/src/components/molecules/ScreenContainer/screen-container.component.tsx +3 -3
  25. package/templates/apps/mobile/src/hooks/useDebounce.hook.ts +1 -1
  26. package/templates/apps/mobile/src/hooks/useThrottle.hook.ts +1 -1
  27. package/templates/apps/mobile/src/icons/cross.svg +4 -0
  28. package/templates/apps/mobile/src/icons/index.ts +3 -1
  29. package/templates/apps/mobile/src/icons/keyboard-hide.svg +1 -0
  30. package/templates/apps/mobile/src/stores/mmkvStorage.ts +3 -3
  31. package/templates/apps/mobile/src/tailwind/index.ts +4 -4
  32. package/templates/apps/mobile/tsconfig.app.json +2 -2
  33. package/templates/clean-generated-outputs.sh +22 -5
package/README.md CHANGED
@@ -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.79.2**: Latest version with New Architecture support
19
+ - **React Native 0.83.0**: 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
@@ -25,7 +25,6 @@ A comprehensive React Native mobile application starter kit built with Nx worksp
25
25
  - **React Native Reanimated**: Powerful animations for smooth user experiences
26
26
  - **React Native Gesture Handler**: Fluid gesture-based interactions
27
27
  - **React Native SVG**: SVG support for vector graphics
28
- - **Lottie**: Beautiful animations with minimal effort
29
28
  - **@shopify/react-native-skia**: High-performance 2D graphics
30
29
  - **@gorhom/bottom-sheet**: Customizable bottom sheet component
31
30