@rownd/react-native 3.2.2 → 3.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 (26) hide show
  1. package/android/.gradle/7.4/checksums/checksums.lock +0 -0
  2. package/android/.gradle/7.4/checksums/md5-checksums.bin +0 -0
  3. package/android/.gradle/7.4/checksums/sha1-checksums.bin +0 -0
  4. package/android/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
  5. package/android/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
  6. package/android/.gradle/7.4/fileHashes/fileHashes.bin +0 -0
  7. package/android/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
  8. package/android/.gradle/7.4/fileHashes/resourceHashesCache.bin +0 -0
  9. package/android/.gradle/8.9/checksums/checksums.lock +0 -0
  10. package/android/.gradle/8.9/checksums/md5-checksums.bin +0 -0
  11. package/android/.gradle/8.9/checksums/sha1-checksums.bin +0 -0
  12. package/android/.gradle/8.9/dependencies-accessors/gc.properties +0 -0
  13. package/android/.gradle/8.9/fileChanges/last-build.bin +0 -0
  14. package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
  15. package/android/.gradle/8.9/gc.properties +0 -0
  16. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  17. package/android/.gradle/buildOutputCleanup/cache.properties +1 -1
  18. package/android/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  19. package/android/build.gradle +3 -3
  20. package/ios/ReactNative.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  21. package/ios/ReactNative.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  22. package/ios/ReactNative.xcodeproj/project.xcworkspace/xcuserdata/mhamann.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  23. package/ios/ReactNative.xcodeproj/xcuserdata/mhamann.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  24. package/lib/package.json +173 -0
  25. package/package.json +1 -1
  26. package/rownd-react-native.podspec +1 -1
File without changes
@@ -1,2 +1,2 @@
1
- #Tue Apr 23 12:16:16 EDT 2024
1
+ #Thu Jan 23 16:09:59 EST 2025
2
2
  gradle.version=7.4
@@ -54,8 +54,8 @@ android {
54
54
  }
55
55
 
56
56
  compileOptions {
57
- sourceCompatibility JavaVersion.VERSION_1_8
58
- targetCompatibility JavaVersion.VERSION_1_8
57
+ sourceCompatibility JavaVersion.VERSION_11
58
+ targetCompatibility JavaVersion.VERSION_11
59
59
  }
60
60
  }
61
61
 
@@ -136,7 +136,7 @@ dependencies {
136
136
  //noinspection GradleDynamicVersion
137
137
  implementation "com.facebook.react:react-native:+"
138
138
  implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
139
- implementation 'io.rownd:android:2.12.0'
139
+ implementation 'io.rownd:android:2.14.0'
140
140
  implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2"
141
141
  implementation 'androidx.compose.ui:ui-unit:1.3.0'
142
142
  implementation 'androidx.compose.ui:ui-graphics:1.3.0'
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "self:">
6
+ </FileRef>
7
+ </Workspace>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>IDEDidComputeMac32BitWarning</key>
6
+ <true/>
7
+ </dict>
8
+ </plist>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>SchemeUserState</key>
6
+ <dict>
7
+ <key>ReactNative.xcscheme_^#shared#^_</key>
8
+ <dict>
9
+ <key>orderHint</key>
10
+ <integer>0</integer>
11
+ </dict>
12
+ </dict>
13
+ </dict>
14
+ </plist>
@@ -0,0 +1,173 @@
1
+ {
2
+ "name": "@rownd/react-native",
3
+ "version": "0.2.5",
4
+ "description": "Rownd bindings for React Native",
5
+ "private": false,
6
+ "main": "lib/commonjs/index",
7
+ "module": "lib/module/index",
8
+ "types": "lib/typescript/src/index.d.ts",
9
+ "react-native": "src/index",
10
+ "source": "src/index",
11
+ "files": [
12
+ "src",
13
+ "lib",
14
+ "android",
15
+ "ios",
16
+ "cpp",
17
+ "package.json",
18
+ "react-native.podspec",
19
+ "!lib/typescript/example",
20
+ "!android/build",
21
+ "!ios/build",
22
+ "!**/__tests__",
23
+ "!**/__fixtures__",
24
+ "!**/__mocks__"
25
+ ],
26
+ "scripts": {
27
+ "test": "jest",
28
+ "typescript": "tsc --noEmit",
29
+ "lint": "eslint \"**/*.{js,ts,tsx}\"",
30
+ "prepare": "bob build && cp package.json lib/",
31
+ "release": "release-it",
32
+ "example": "yarn --cwd example",
33
+ "pods": "cd example && pod-install --quiet",
34
+ "bootstrap": "yarn example && yarn && yarn pods"
35
+ },
36
+ "keywords": [
37
+ "react-native",
38
+ "ios",
39
+ "android"
40
+ ],
41
+ "repository": "https://github.com/rownd/react-native",
42
+ "author": "Matt Hamann <mhamann@rownd.io> (https://github.com/rownd)",
43
+ "license": "MIT",
44
+ "bugs": {
45
+ "url": "https://github.com/rownd/react-native/issues"
46
+ },
47
+ "homepage": "https://github.com/rownd/react-native#readme",
48
+ "publishConfig": {
49
+ "registry": "https://registry.npmjs.org/",
50
+ "access": "public"
51
+ },
52
+ "devDependencies": {
53
+ "@commitlint/config-conventional": "^11.0.0",
54
+ "@react-native-community/eslint-config": "^2.0.0",
55
+ "@release-it/conventional-changelog": "^2.0.0",
56
+ "@types/date-fns": "^2.6.0",
57
+ "@types/debounce": "^1.2.1",
58
+ "@types/jest": "^26.0.0",
59
+ "@types/lodash-es": "^4.17.6",
60
+ "@types/phone": "^2.4.1",
61
+ "@types/react": "^17.0.2",
62
+ "@types/react-native": "^0.67.8",
63
+ "@types/react-native-base64": "^0.2.0",
64
+ "commitlint": "^11.0.0",
65
+ "eslint": "^7.2.0",
66
+ "eslint-config-prettier": "^7.0.0",
67
+ "eslint-plugin-prettier": "^3.1.3",
68
+ "husky": "^6.0.0",
69
+ "jest": "^26.0.1",
70
+ "pod-install": "^0.1.0",
71
+ "prettier": "^2.0.5",
72
+ "react": "^17.0.2",
73
+ "react-native": "^0.68.2",
74
+ "react-native-builder-bob": "^0.18.0",
75
+ "release-it": "^14.2.2",
76
+ "typescript": "^4.1.3"
77
+ },
78
+ "peerDependencies": {
79
+ "@gorhom/bottom-sheet": "*",
80
+ "@react-native-clipboard/clipboard": "*",
81
+ "react": "*",
82
+ "react-native": "*",
83
+ "react-native-device-info": "*",
84
+ "react-native-mmkv": "*",
85
+ "react-native-sha256": "*",
86
+ "react-native-svg": "*"
87
+ },
88
+ "jest": {
89
+ "preset": "react-native",
90
+ "modulePathIgnorePatterns": [
91
+ "<rootDir>/example/node_modules",
92
+ "<rootDir>/lib/"
93
+ ]
94
+ },
95
+ "commitlint": {
96
+ "extends": [
97
+ "@commitlint/config-conventional"
98
+ ]
99
+ },
100
+ "release-it": {
101
+ "git": {
102
+ "commitMessage": "chore: release ${version}",
103
+ "tagName": "v${version}"
104
+ },
105
+ "npm": {
106
+ "publish": true
107
+ },
108
+ "github": {
109
+ "release": true
110
+ },
111
+ "plugins": {
112
+ "@release-it/conventional-changelog": {
113
+ "preset": "angular"
114
+ }
115
+ }
116
+ },
117
+ "eslintConfig": {
118
+ "root": true,
119
+ "extends": [
120
+ "@react-native-community",
121
+ "prettier"
122
+ ],
123
+ "rules": {
124
+ "prettier/prettier": [
125
+ "error",
126
+ {
127
+ "quoteProps": "consistent",
128
+ "singleQuote": true,
129
+ "tabWidth": 2,
130
+ "trailingComma": "es5",
131
+ "useTabs": false
132
+ }
133
+ ]
134
+ }
135
+ },
136
+ "eslintIgnore": [
137
+ "node_modules/",
138
+ "lib/"
139
+ ],
140
+ "prettier": {
141
+ "quoteProps": "consistent",
142
+ "singleQuote": true,
143
+ "tabWidth": 2,
144
+ "trailingComma": "es5",
145
+ "useTabs": false
146
+ },
147
+ "react-native-builder-bob": {
148
+ "source": "src",
149
+ "output": "lib",
150
+ "targets": [
151
+ "commonjs",
152
+ "module",
153
+ [
154
+ "typescript",
155
+ {
156
+ "project": "tsconfig.build.json"
157
+ }
158
+ ]
159
+ ]
160
+ },
161
+ "dependencies": {
162
+ "@react-native-picker/picker": "^2.4.1",
163
+ "date-fns": "^2.28.0",
164
+ "debounce": "^1.2.1",
165
+ "eventemitter3": "^4.0.7",
166
+ "jwt-decode": "^3.1.2",
167
+ "ky": "^0.30.0",
168
+ "lodash-es": "^4.17.21",
169
+ "phone": "^3.1.20",
170
+ "react-native-base64": "^0.2.1",
171
+ "usehooks-ts": "^2.5.4"
172
+ }
173
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rownd/react-native",
3
- "version": "3.2.2",
3
+ "version": "3.3.0",
4
4
  "description": "test",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
17
17
  s.source_files = "ios/**/*.{h,m,mm,swift}"
18
18
 
19
19
  s.dependency "React-Core"
20
- s.dependency "Rownd", "~> 3.8.0"
20
+ s.dependency "Rownd", "~> 3.10.7"
21
21
 
22
22
  # Don't install the dependencies when we run `pod install` in the old architecture.
23
23
  if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then