-
Notifications
You must be signed in to change notification settings - Fork 8
Upgrade dependencies to the latest #120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Conversation
| ...hooksPlugin.configs.recommended.rules, | ||
| 'react/react-in-jsx-scope': 'off', | ||
| 'react-native/no-inline-styles': 'warn', | ||
| 'react-native/no-color-literals': 'warn', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is to enforce @IamLRB's UI tokens. All occurances of iniline styles and color literals will be trigger warnings.
All color literals will have to be defined in the tokens
be97444 to
a21f9fb
Compare
- Add bug report template with component selection - Add feature request template - Configure to prevent blank issues - Add links to documentation and discussions
…eria Add optional User Story, Details, and Acceptance Criteria sections to improve bug reproduction and testing capabilities.
- upgrade packages to the latest - add a pnpm lock file - update config files to use the es module syntax Signed-off-by: Jessie Ssebuliba <jessiessebuliba@gmail.com> Signed-off-by: Jessie Ssebuliba <jessiessebuliba@gmail.com>
… later has to be migrated to the UI tokens after review Signed-off-by: Jessie Ssebuliba <jessiessebuliba@gmail.com>
Signed-off-by: Jessie Ssebuliba <jessiessebuliba@gmail.com>
Signed-off-by: Jessie Ssebuliba <jessiessebuliba@gmail.com>
Signed-off-by: Jessie Ssebuliba <jessiessebuliba@gmail.com>
Signed-off-by: Jessie Ssebuliba <jessiessebuliba@gmail.com>
Signed-off-by: Jessie Ssebuliba <jessiessebuliba@gmail.com>
Signed-off-by: Jessie Ssebuliba <jessiessebuliba@gmail.com>
… failures Signed-off-by: Jessie Ssebuliba <jessiessebuliba@gmail.com>
- Adapted EmptyState.tsx to use type-safe icon names - Replaced generic string with keyof MaterialIcons.glyphMap - Ensures TypeScript validation with react-native-vector-icons v12+ Signed-off-by: Jessie Ssebuliba <jessiessebuliba@gmail.com>
Signed-off-by: Jessie Ssebuliba <jessiessebuliba@gmail.com>
Signed-off-by: Jessie Ssebuliba <jessiessebuliba@gmail.com>
Signed-off-by: Jessie Ssebuliba <jessiessebuliba@gmail.com>
| add(UserAppPackage()) | ||
| }, | ||
| ) | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These changes officially retires the legacy ReactNativeHost (The Bridge) in favor of the new ReactHost
Key Changes:
Bridgeless by Default: Enabled the modern Bridgeless runtime using getDefaultReactHost.
Switched to loadReactNative(this), which simplifies the initialization of native components and architecture flags.
Re-registered UserAppPackage within the new reactHost lazy initializer to ensure compatibility via the New Architecture Interop Layer.
Continuation for #68 since it was merging to the main