@granite-js/react-native 1.0.2 → 1.0.4

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/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
  # @granite-js/react-native
2
2
 
3
+ ## 1.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - cc75aa4: fix: default header title should be empty string
8
+ - Updated dependencies [cc75aa4]
9
+ - @granite-js/native@1.0.4
10
+ - @granite-js/blur-view@1.0.4
11
+ - @granite-js/jest@1.0.4
12
+ - @granite-js/style-utils@1.0.4
13
+ - @granite-js/cli@1.0.4
14
+ - @granite-js/mpack@1.0.4
15
+ - @granite-js/plugin-core@1.0.4
16
+ - @granite-js/video@1.0.4
17
+
18
+ ## 1.0.3
19
+
20
+ ### Patch Changes
21
+
22
+ - 7694332: chore: RN 0.84-rc.5 -> RN 0.84 bump up
23
+ - Updated dependencies [23d1a4a]
24
+ - Updated dependencies [7694332]
25
+ - @granite-js/jest@1.0.3
26
+ - @granite-js/blur-view@1.0.3
27
+ - @granite-js/cli@1.0.3
28
+ - @granite-js/mpack@1.0.3
29
+ - @granite-js/native@1.0.3
30
+ - @granite-js/plugin-core@1.0.3
31
+ - @granite-js/style-utils@1.0.3
32
+ - @granite-js/video@1.0.3
33
+
3
34
  ## 1.0.2
4
35
 
5
36
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@granite-js/react-native",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "The Granite Framework",
5
5
  "bin": {
6
6
  "granite": "./bin/cli.js"
@@ -91,7 +91,7 @@
91
91
  "@babel/core": "7.28.5",
92
92
  "@babel/preset-env": "7.28.5",
93
93
  "@babel/preset-typescript": "7.28.5",
94
- "@granite-js/native": "1.0.2",
94
+ "@granite-js/native": "1.0.4",
95
95
  "@testing-library/dom": "^10.4.0",
96
96
  "@testing-library/react": "^16.1.0",
97
97
  "@types/babel__core": "^7",
@@ -106,27 +106,27 @@
106
106
  "jsdom": "^25.0.1",
107
107
  "react": "19.2.3",
108
108
  "react-dom": "19.2.3",
109
- "react-native": "0.84.0-rc.5",
109
+ "react-native": "0.84.0",
110
110
  "tsup": "^8.5.0",
111
111
  "typescript": "5.9.3",
112
112
  "vitest": "^4.0.12",
113
113
  "zod": "^4.1.12"
114
114
  },
115
115
  "peerDependencies": {
116
- "@granite-js/native": "1.0.2",
116
+ "@granite-js/native": "1.0.4",
117
117
  "@types/react": "*",
118
118
  "brick-module": "*",
119
119
  "react": "*",
120
120
  "react-native": "*"
121
121
  },
122
122
  "dependencies": {
123
- "@granite-js/blur-view": "1.0.2",
124
- "@granite-js/cli": "1.0.2",
125
- "@granite-js/jest": "1.0.2",
126
- "@granite-js/mpack": "1.0.2",
127
- "@granite-js/plugin-core": "1.0.2",
128
- "@granite-js/style-utils": "1.0.2",
129
- "@granite-js/video": "1.0.2",
123
+ "@granite-js/blur-view": "1.0.4",
124
+ "@granite-js/cli": "1.0.4",
125
+ "@granite-js/jest": "1.0.4",
126
+ "@granite-js/mpack": "1.0.4",
127
+ "@granite-js/plugin-core": "1.0.4",
128
+ "@granite-js/style-utils": "1.0.4",
129
+ "@granite-js/video": "1.0.4",
130
130
  "@standard-schema/spec": "^1.0.0",
131
131
  "es-toolkit": "^1.39.8",
132
132
  "react-native-url-polyfill": "3.0.0"
@@ -4,6 +4,7 @@ import { Platform } from 'react-native';
4
4
  export const DEFAULT_BACKGROUND_COLOR = '#ffffff';
5
5
  export const DEFAULT_HEADER_TINT_COLOR = '#191f28';
6
6
  export const BASE_STACK_NAVIGATOR_STYLE: NativeStackNavigationOptions = {
7
+ headerTitle: '',
7
8
  contentStyle: {
8
9
  backgroundColor: DEFAULT_BACKGROUND_COLOR,
9
10
  },