@developer_tribe/react-native-comnyx 0.1.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.
- package/.editorconfig +15 -0
- package/.gitattributes +3 -0
- package/.github/ISSUE_TEMPLATE/bug_report.yml +68 -0
- package/.github/ISSUE_TEMPLATE/config.yml +8 -0
- package/.github/actions/setup/action.yml +36 -0
- package/.github/workflows/ci.yml +165 -0
- package/.gitignore +86 -0
- package/.idea/.gitignore +8 -0
- package/.idea/codeStyles/Project.xml +59 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/comnyx-rn.iml +12 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/prettier.xml +6 -0
- package/.idea/vcs.xml +6 -0
- package/.idea/workspace.xml +71 -0
- package/.nvmrc +1 -0
- package/.watchmanconfig +1 -0
- package/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs +541 -0
- package/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs +28 -0
- package/.yarn/releases/yarn-3.6.1.cjs +874 -0
- package/.yarnrc.yml +10 -0
- package/CODE_OF_CONDUCT.md +133 -0
- package/CONTRIBUTING.md +130 -0
- package/Comnyx.podspec +26 -0
- package/LICENSE +20 -0
- package/README.md +33 -0
- package/android/build.gradle +100 -0
- package/android/generated/java/com/comnyx/NativeComnyxSpec.java +37 -0
- package/android/generated/jni/CMakeLists.txt +36 -0
- package/android/generated/jni/RNComnyxSpec-generated.cpp +32 -0
- package/android/generated/jni/RNComnyxSpec.h +31 -0
- package/android/generated/jni/react/renderer/components/RNComnyxSpec/RNComnyxSpecJSI-generated.cpp +28 -0
- package/android/generated/jni/react/renderer/components/RNComnyxSpec/RNComnyxSpecJSI.h +71 -0
- package/android/gradle.properties +5 -0
- package/android/src/main/AndroidManifest.xml +3 -0
- package/android/src/main/AndroidManifestNew.xml +2 -0
- package/android/src/main/java/com/comnyx/ComnyxModule.kt +23 -0
- package/android/src/main/java/com/comnyx/ComnyxPackage.kt +33 -0
- package/babel.config.js +3 -0
- package/example/.bundle/config +2 -0
- package/example/.watchmanconfig +1 -0
- package/example/Gemfile +10 -0
- package/example/README.md +97 -0
- package/example/android/app/build.gradle +133 -0
- package/example/android/app/debug.keystore +0 -0
- package/example/android/app/proguard-rules.pro +10 -0
- package/example/android/app/src/debug/AndroidManifest.xml +9 -0
- package/example/android/app/src/main/AndroidManifest.xml +26 -0
- package/example/android/app/src/main/java/comnyx/example/MainActivity.kt +22 -0
- package/example/android/app/src/main/java/comnyx/example/MainApplication.kt +44 -0
- package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
- package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/values/strings.xml +3 -0
- package/example/android/app/src/main/res/values/styles.xml +9 -0
- package/example/android/build.gradle +21 -0
- package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/example/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/example/android/gradle.properties +39 -0
- package/example/android/gradlew +251 -0
- package/example/android/gradlew.bat +94 -0
- package/example/android/settings.gradle +6 -0
- package/example/app.json +4 -0
- package/example/babel.config.js +12 -0
- package/example/index.js +5 -0
- package/example/ios/.xcode.env +11 -0
- package/example/ios/ComnyxExample/AppDelegate.swift +30 -0
- package/example/ios/ComnyxExample/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/example/ios/ComnyxExample/Images.xcassets/Contents.json +6 -0
- package/example/ios/ComnyxExample/Info.plist +52 -0
- package/example/ios/ComnyxExample/LaunchScreen.storyboard +47 -0
- package/example/ios/ComnyxExample/PrivacyInfo.xcprivacy +37 -0
- package/example/ios/ComnyxExample.xcodeproj/project.pbxproj +505 -0
- package/example/ios/ComnyxExample.xcodeproj/xcshareddata/xcschemes/ComnyxExample.xcscheme +88 -0
- package/example/ios/Podfile +43 -0
- package/example/jest.config.js +3 -0
- package/example/metro.config.js +18 -0
- package/example/package.json +31 -0
- package/example/react-native.config.js +21 -0
- package/example/src/App.tsx +20 -0
- package/ios/Comnyx.h +6 -0
- package/ios/Comnyx.mm +18 -0
- package/ios/generated/RNComnyxSpec/RNComnyxSpec-generated.mm +39 -0
- package/ios/generated/RNComnyxSpec/RNComnyxSpec.h +63 -0
- package/ios/generated/RNComnyxSpecJSI-generated.cpp +28 -0
- package/ios/generated/RNComnyxSpecJSI.h +71 -0
- package/lefthook.yml +14 -0
- package/lib/commonjs/NativeComnyx.ts +8 -0
- package/lib/commonjs/index.js +12 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/module/NativeComnyx.ts +8 -0
- package/lib/module/index.js +7 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/typescript/commonjs/package.json +1 -0
- package/lib/typescript/commonjs/src/NativeComnyx.d.ts +7 -0
- package/lib/typescript/commonjs/src/NativeComnyx.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/index.test.d.ts +1 -0
- package/lib/typescript/commonjs/src/__tests__/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/index.d.ts +2 -0
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
- package/lib/typescript/module/package.json +1 -0
- package/lib/typescript/module/src/NativeComnyx.d.ts +7 -0
- package/lib/typescript/module/src/NativeComnyx.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/index.test.d.ts +1 -0
- package/lib/typescript/module/src/__tests__/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/index.d.ts +2 -0
- package/lib/typescript/module/src/index.d.ts.map +1 -0
- package/package.json +203 -0
- package/react-native.config.js +12 -0
- package/src/NativeComnyx.ts +8 -0
- package/src/__tests__/index.test.tsx +1 -0
- package/src/index.tsx +5 -0
- package/tsconfig.build.json +4 -0
- package/tsconfig.json +30 -0
- package/turbo.json +36 -0
- package/yarn.lock +9251 -0
package/.editorconfig
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# EditorConfig helps developers define and maintain consistent
|
|
2
|
+
# coding styles between different editors and IDEs
|
|
3
|
+
# editorconfig.org
|
|
4
|
+
|
|
5
|
+
root = true
|
|
6
|
+
|
|
7
|
+
[*]
|
|
8
|
+
|
|
9
|
+
indent_style = space
|
|
10
|
+
indent_size = 2
|
|
11
|
+
|
|
12
|
+
end_of_line = lf
|
|
13
|
+
charset = utf-8
|
|
14
|
+
trim_trailing_whitespace = true
|
|
15
|
+
insert_final_newline = true
|
package/.gitattributes
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
name: 🐛 Bug report
|
|
2
|
+
description: Report a reproducible bug or regression in this library.
|
|
3
|
+
labels: [bug]
|
|
4
|
+
body:
|
|
5
|
+
- type: markdown
|
|
6
|
+
attributes:
|
|
7
|
+
value: |
|
|
8
|
+
# Bug report
|
|
9
|
+
|
|
10
|
+
👋 Hi!
|
|
11
|
+
|
|
12
|
+
**Please fill the following carefully before opening a new issue ❗**
|
|
13
|
+
*(Your issue may be closed if it doesn't provide the required pieces of information)*
|
|
14
|
+
- type: checkboxes
|
|
15
|
+
attributes:
|
|
16
|
+
label: Before submitting a new issue
|
|
17
|
+
description: Please perform simple checks first.
|
|
18
|
+
options:
|
|
19
|
+
- label: I tested using the latest version of the library, as the bug might be already fixed.
|
|
20
|
+
required: true
|
|
21
|
+
- label: I tested using a [supported version](https://github.com/reactwg/react-native-releases/blob/main/docs/support.md) of react native.
|
|
22
|
+
required: true
|
|
23
|
+
- label: I checked for possible duplicate issues, with possible answers.
|
|
24
|
+
required: true
|
|
25
|
+
- type: textarea
|
|
26
|
+
id: summary
|
|
27
|
+
attributes:
|
|
28
|
+
label: Bug summary
|
|
29
|
+
description: |
|
|
30
|
+
Provide a clear and concise description of what the bug is.
|
|
31
|
+
If needed, you can also provide other samples: error messages / stack traces, screenshots, gifs, etc.
|
|
32
|
+
validations:
|
|
33
|
+
required: true
|
|
34
|
+
- type: input
|
|
35
|
+
id: library-version
|
|
36
|
+
attributes:
|
|
37
|
+
label: Library version
|
|
38
|
+
description: What version of the library are you using?
|
|
39
|
+
placeholder: "x.x.x"
|
|
40
|
+
validations:
|
|
41
|
+
required: true
|
|
42
|
+
- type: textarea
|
|
43
|
+
id: react-native-info
|
|
44
|
+
attributes:
|
|
45
|
+
label: Environment info
|
|
46
|
+
description: Run `react-native info` in your terminal and paste the results here.
|
|
47
|
+
render: shell
|
|
48
|
+
validations:
|
|
49
|
+
required: true
|
|
50
|
+
- type: textarea
|
|
51
|
+
id: steps-to-reproduce
|
|
52
|
+
attributes:
|
|
53
|
+
label: Steps to reproduce
|
|
54
|
+
description: |
|
|
55
|
+
You must provide a clear list of steps and code to reproduce the problem.
|
|
56
|
+
value: |
|
|
57
|
+
1. …
|
|
58
|
+
2. …
|
|
59
|
+
validations:
|
|
60
|
+
required: true
|
|
61
|
+
- type: input
|
|
62
|
+
id: reproducible-example
|
|
63
|
+
attributes:
|
|
64
|
+
label: Reproducible example repository
|
|
65
|
+
description: Please provide a link to a repository on GitHub with a reproducible example.
|
|
66
|
+
render: js
|
|
67
|
+
validations:
|
|
68
|
+
required: true
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
blank_issues_enabled: false
|
|
2
|
+
contact_links:
|
|
3
|
+
- name: Feature Request 💡
|
|
4
|
+
url: https://www.npmjs.com/discussions/new?category=ideas
|
|
5
|
+
about: If you have a feature request, please create a new discussion on GitHub.
|
|
6
|
+
- name: Discussions on GitHub 💬
|
|
7
|
+
url: https://www.npmjs.com/discussions
|
|
8
|
+
about: If this library works as promised but you need help, please ask questions there.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
name: Setup
|
|
2
|
+
description: Setup Node.js and install dependencies
|
|
3
|
+
|
|
4
|
+
runs:
|
|
5
|
+
using: composite
|
|
6
|
+
steps:
|
|
7
|
+
- name: Setup Node.js
|
|
8
|
+
uses: actions/setup-node@v4
|
|
9
|
+
with:
|
|
10
|
+
node-version-file: .nvmrc
|
|
11
|
+
|
|
12
|
+
- name: Restore dependencies
|
|
13
|
+
id: yarn-cache
|
|
14
|
+
uses: actions/cache/restore@v4
|
|
15
|
+
with:
|
|
16
|
+
path: |
|
|
17
|
+
**/node_modules
|
|
18
|
+
.yarn/install-state.gz
|
|
19
|
+
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
|
|
20
|
+
restore-keys: |
|
|
21
|
+
${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
|
|
22
|
+
${{ runner.os }}-yarn-
|
|
23
|
+
|
|
24
|
+
- name: Install dependencies
|
|
25
|
+
if: steps.yarn-cache.outputs.cache-hit != 'true'
|
|
26
|
+
run: yarn install --immutable
|
|
27
|
+
shell: bash
|
|
28
|
+
|
|
29
|
+
- name: Cache dependencies
|
|
30
|
+
if: steps.yarn-cache.outputs.cache-hit != 'true'
|
|
31
|
+
uses: actions/cache/save@v4
|
|
32
|
+
with:
|
|
33
|
+
path: |
|
|
34
|
+
**/node_modules
|
|
35
|
+
.yarn/install-state.gz
|
|
36
|
+
key: ${{ steps.yarn-cache.outputs.cache-primary-key }}
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches:
|
|
5
|
+
- main
|
|
6
|
+
pull_request:
|
|
7
|
+
branches:
|
|
8
|
+
- main
|
|
9
|
+
merge_group:
|
|
10
|
+
types:
|
|
11
|
+
- checks_requested
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
lint:
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
steps:
|
|
17
|
+
- name: Checkout
|
|
18
|
+
uses: actions/checkout@v4
|
|
19
|
+
|
|
20
|
+
- name: Setup
|
|
21
|
+
uses: ./.github/actions/setup
|
|
22
|
+
|
|
23
|
+
- name: Lint files
|
|
24
|
+
run: yarn lint
|
|
25
|
+
|
|
26
|
+
- name: Typecheck files
|
|
27
|
+
run: yarn typecheck
|
|
28
|
+
|
|
29
|
+
test:
|
|
30
|
+
runs-on: ubuntu-latest
|
|
31
|
+
steps:
|
|
32
|
+
- name: Checkout
|
|
33
|
+
uses: actions/checkout@v4
|
|
34
|
+
|
|
35
|
+
- name: Setup
|
|
36
|
+
uses: ./.github/actions/setup
|
|
37
|
+
|
|
38
|
+
- name: Run unit tests
|
|
39
|
+
run: yarn test --maxWorkers=2 --coverage
|
|
40
|
+
|
|
41
|
+
build-library:
|
|
42
|
+
runs-on: ubuntu-latest
|
|
43
|
+
steps:
|
|
44
|
+
- name: Checkout
|
|
45
|
+
uses: actions/checkout@v4
|
|
46
|
+
|
|
47
|
+
- name: Setup
|
|
48
|
+
uses: ./.github/actions/setup
|
|
49
|
+
|
|
50
|
+
- name: Build package
|
|
51
|
+
run: yarn prepare
|
|
52
|
+
|
|
53
|
+
build-android:
|
|
54
|
+
runs-on: ubuntu-latest
|
|
55
|
+
env:
|
|
56
|
+
TURBO_CACHE_DIR: .turbo/android
|
|
57
|
+
steps:
|
|
58
|
+
- name: Checkout
|
|
59
|
+
uses: actions/checkout@v4
|
|
60
|
+
|
|
61
|
+
- name: Setup
|
|
62
|
+
uses: ./.github/actions/setup
|
|
63
|
+
|
|
64
|
+
- name: Cache turborepo for Android
|
|
65
|
+
uses: actions/cache@v4
|
|
66
|
+
with:
|
|
67
|
+
path: ${{ env.TURBO_CACHE_DIR }}
|
|
68
|
+
key: ${{ runner.os }}-turborepo-android-${{ hashFiles('yarn.lock') }}
|
|
69
|
+
restore-keys: |
|
|
70
|
+
${{ runner.os }}-turborepo-android-
|
|
71
|
+
|
|
72
|
+
- name: Check turborepo cache for Android
|
|
73
|
+
run: |
|
|
74
|
+
TURBO_CACHE_STATUS=$(node -p "($(yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}" --dry=json)).tasks.find(t => t.task === 'build:android').cache.status")
|
|
75
|
+
|
|
76
|
+
if [[ $TURBO_CACHE_STATUS == "HIT" ]]; then
|
|
77
|
+
echo "turbo_cache_hit=1" >> $GITHUB_ENV
|
|
78
|
+
fi
|
|
79
|
+
|
|
80
|
+
- name: Install JDK
|
|
81
|
+
if: env.turbo_cache_hit != 1
|
|
82
|
+
uses: actions/setup-java@v4
|
|
83
|
+
with:
|
|
84
|
+
distribution: 'zulu'
|
|
85
|
+
java-version: '17'
|
|
86
|
+
|
|
87
|
+
- name: Finalize Android SDK
|
|
88
|
+
if: env.turbo_cache_hit != 1
|
|
89
|
+
run: |
|
|
90
|
+
/bin/bash -c "yes | $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager --licenses > /dev/null"
|
|
91
|
+
|
|
92
|
+
- name: Cache Gradle
|
|
93
|
+
if: env.turbo_cache_hit != 1
|
|
94
|
+
uses: actions/cache@v4
|
|
95
|
+
with:
|
|
96
|
+
path: |
|
|
97
|
+
~/.gradle/wrapper
|
|
98
|
+
~/.gradle/caches
|
|
99
|
+
key: ${{ runner.os }}-gradle-${{ hashFiles('example/android/gradle/wrapper/gradle-wrapper.properties') }}
|
|
100
|
+
restore-keys: |
|
|
101
|
+
${{ runner.os }}-gradle-
|
|
102
|
+
|
|
103
|
+
- name: Build example for Android
|
|
104
|
+
env:
|
|
105
|
+
JAVA_OPTS: "-XX:MaxHeapSize=6g"
|
|
106
|
+
run: |
|
|
107
|
+
yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}"
|
|
108
|
+
|
|
109
|
+
build-ios:
|
|
110
|
+
runs-on: macos-latest
|
|
111
|
+
env:
|
|
112
|
+
TURBO_CACHE_DIR: .turbo/ios
|
|
113
|
+
steps:
|
|
114
|
+
- name: Checkout
|
|
115
|
+
uses: actions/checkout@v4
|
|
116
|
+
|
|
117
|
+
- name: Setup
|
|
118
|
+
uses: ./.github/actions/setup
|
|
119
|
+
|
|
120
|
+
- name: Cache turborepo for iOS
|
|
121
|
+
uses: actions/cache@v4
|
|
122
|
+
with:
|
|
123
|
+
path: ${{ env.TURBO_CACHE_DIR }}
|
|
124
|
+
key: ${{ runner.os }}-turborepo-ios-${{ hashFiles('yarn.lock') }}
|
|
125
|
+
restore-keys: |
|
|
126
|
+
${{ runner.os }}-turborepo-ios-
|
|
127
|
+
|
|
128
|
+
- name: Check turborepo cache for iOS
|
|
129
|
+
run: |
|
|
130
|
+
TURBO_CACHE_STATUS=$(node -p "($(yarn turbo run build:ios --cache-dir="${{ env.TURBO_CACHE_DIR }}" --dry=json)).tasks.find(t => t.task === 'build:ios').cache.status")
|
|
131
|
+
|
|
132
|
+
if [[ $TURBO_CACHE_STATUS == "HIT" ]]; then
|
|
133
|
+
echo "turbo_cache_hit=1" >> $GITHUB_ENV
|
|
134
|
+
fi
|
|
135
|
+
|
|
136
|
+
- name: Restore cocoapods
|
|
137
|
+
if: env.turbo_cache_hit != 1
|
|
138
|
+
id: cocoapods-cache
|
|
139
|
+
uses: actions/cache/restore@v4
|
|
140
|
+
with:
|
|
141
|
+
path: |
|
|
142
|
+
**/ios/Pods
|
|
143
|
+
key: ${{ runner.os }}-cocoapods-${{ hashFiles('example/ios/Podfile.lock') }}
|
|
144
|
+
restore-keys: |
|
|
145
|
+
${{ runner.os }}-cocoapods-
|
|
146
|
+
|
|
147
|
+
- name: Install cocoapods
|
|
148
|
+
if: env.turbo_cache_hit != 1 && steps.cocoapods-cache.outputs.cache-hit != 'true'
|
|
149
|
+
run: |
|
|
150
|
+
cd example/ios
|
|
151
|
+
pod install
|
|
152
|
+
env:
|
|
153
|
+
NO_FLIPPER: 1
|
|
154
|
+
|
|
155
|
+
- name: Cache cocoapods
|
|
156
|
+
if: env.turbo_cache_hit != 1 && steps.cocoapods-cache.outputs.cache-hit != 'true'
|
|
157
|
+
uses: actions/cache/save@v4
|
|
158
|
+
with:
|
|
159
|
+
path: |
|
|
160
|
+
**/ios/Pods
|
|
161
|
+
key: ${{ steps.cocoapods-cache.outputs.cache-key }}
|
|
162
|
+
|
|
163
|
+
- name: Build example for iOS
|
|
164
|
+
run: |
|
|
165
|
+
yarn turbo run build:ios --cache-dir="${{ env.TURBO_CACHE_DIR }}"
|
package/.gitignore
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
# OSX
|
|
2
|
+
#
|
|
3
|
+
.DS_Store
|
|
4
|
+
|
|
5
|
+
# XDE
|
|
6
|
+
.expo/
|
|
7
|
+
|
|
8
|
+
# VSCode
|
|
9
|
+
.vscode/
|
|
10
|
+
jsconfig.json
|
|
11
|
+
|
|
12
|
+
# Xcode
|
|
13
|
+
#
|
|
14
|
+
build/
|
|
15
|
+
*.pbxuser
|
|
16
|
+
!default.pbxuser
|
|
17
|
+
*.mode1v3
|
|
18
|
+
!default.mode1v3
|
|
19
|
+
*.mode2v3
|
|
20
|
+
!default.mode2v3
|
|
21
|
+
*.perspectivev3
|
|
22
|
+
!default.perspectivev3
|
|
23
|
+
xcuserdata
|
|
24
|
+
*.xccheckout
|
|
25
|
+
*.moved-aside
|
|
26
|
+
DerivedData
|
|
27
|
+
*.hmap
|
|
28
|
+
*.ipa
|
|
29
|
+
*.xcuserstate
|
|
30
|
+
project.xcworkspace
|
|
31
|
+
**/.xcode.env.local
|
|
32
|
+
|
|
33
|
+
# Android/IJ
|
|
34
|
+
#
|
|
35
|
+
.classpath
|
|
36
|
+
.cxx
|
|
37
|
+
.gradle
|
|
38
|
+
.idea
|
|
39
|
+
.project
|
|
40
|
+
.settings
|
|
41
|
+
local.properties
|
|
42
|
+
android.iml
|
|
43
|
+
|
|
44
|
+
# Cocoapods
|
|
45
|
+
#
|
|
46
|
+
example/ios/Pods
|
|
47
|
+
|
|
48
|
+
# Ruby
|
|
49
|
+
example/vendor/
|
|
50
|
+
|
|
51
|
+
# node.js
|
|
52
|
+
#
|
|
53
|
+
node_modules/
|
|
54
|
+
npm-debug.log
|
|
55
|
+
yarn-debug.log
|
|
56
|
+
yarn-error.log
|
|
57
|
+
|
|
58
|
+
# BUCK
|
|
59
|
+
buck-out/
|
|
60
|
+
\.buckd/
|
|
61
|
+
android/app/libs
|
|
62
|
+
android/keystores/debug.keystore
|
|
63
|
+
|
|
64
|
+
# Yarn
|
|
65
|
+
.yarn/*
|
|
66
|
+
!.yarn/patches
|
|
67
|
+
!.yarn/plugins
|
|
68
|
+
!.yarn/releases
|
|
69
|
+
!.yarn/sdks
|
|
70
|
+
!.yarn/versions
|
|
71
|
+
|
|
72
|
+
# Expo
|
|
73
|
+
.expo/
|
|
74
|
+
|
|
75
|
+
# Turborepo
|
|
76
|
+
.turbo/
|
|
77
|
+
|
|
78
|
+
# generated by bob
|
|
79
|
+
lib/
|
|
80
|
+
|
|
81
|
+
# React Native Codegen
|
|
82
|
+
ios/generated
|
|
83
|
+
android/generated
|
|
84
|
+
|
|
85
|
+
# React Native Nitro Modules
|
|
86
|
+
nitrogen/
|
package/.idea/.gitignore
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
<component name="ProjectCodeStyleConfiguration">
|
|
2
|
+
<code_scheme name="Project" version="173">
|
|
3
|
+
<HTMLCodeStyleSettings>
|
|
4
|
+
<option name="HTML_SPACE_INSIDE_EMPTY_TAG" value="true" />
|
|
5
|
+
</HTMLCodeStyleSettings>
|
|
6
|
+
<JSCodeStyleSettings version="0">
|
|
7
|
+
<option name="FORCE_SEMICOLON_STYLE" value="true" />
|
|
8
|
+
<option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
|
|
9
|
+
<option name="USE_DOUBLE_QUOTES" value="false" />
|
|
10
|
+
<option name="FORCE_QUOTE_STYlE" value="true" />
|
|
11
|
+
<option name="ENFORCE_TRAILING_COMMA" value="WhenMultiline" />
|
|
12
|
+
<option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
|
|
13
|
+
<option name="SPACES_WITHIN_IMPORTS" value="true" />
|
|
14
|
+
</JSCodeStyleSettings>
|
|
15
|
+
<TypeScriptCodeStyleSettings version="0">
|
|
16
|
+
<option name="FORCE_SEMICOLON_STYLE" value="true" />
|
|
17
|
+
<option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
|
|
18
|
+
<option name="USE_DOUBLE_QUOTES" value="false" />
|
|
19
|
+
<option name="FORCE_QUOTE_STYlE" value="true" />
|
|
20
|
+
<option name="ENFORCE_TRAILING_COMMA" value="WhenMultiline" />
|
|
21
|
+
<option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
|
|
22
|
+
<option name="SPACES_WITHIN_IMPORTS" value="true" />
|
|
23
|
+
</TypeScriptCodeStyleSettings>
|
|
24
|
+
<VueCodeStyleSettings>
|
|
25
|
+
<option name="INTERPOLATION_NEW_LINE_AFTER_START_DELIMITER" value="false" />
|
|
26
|
+
<option name="INTERPOLATION_NEW_LINE_BEFORE_END_DELIMITER" value="false" />
|
|
27
|
+
</VueCodeStyleSettings>
|
|
28
|
+
<codeStyleSettings language="HTML">
|
|
29
|
+
<option name="SOFT_MARGINS" value="80" />
|
|
30
|
+
<indentOptions>
|
|
31
|
+
<option name="INDENT_SIZE" value="2" />
|
|
32
|
+
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
|
33
|
+
<option name="TAB_SIZE" value="2" />
|
|
34
|
+
</indentOptions>
|
|
35
|
+
</codeStyleSettings>
|
|
36
|
+
<codeStyleSettings language="JavaScript">
|
|
37
|
+
<option name="SOFT_MARGINS" value="80" />
|
|
38
|
+
<indentOptions>
|
|
39
|
+
<option name="INDENT_SIZE" value="2" />
|
|
40
|
+
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
|
41
|
+
<option name="TAB_SIZE" value="2" />
|
|
42
|
+
</indentOptions>
|
|
43
|
+
</codeStyleSettings>
|
|
44
|
+
<codeStyleSettings language="TypeScript">
|
|
45
|
+
<option name="SOFT_MARGINS" value="80" />
|
|
46
|
+
<indentOptions>
|
|
47
|
+
<option name="INDENT_SIZE" value="2" />
|
|
48
|
+
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
|
49
|
+
<option name="TAB_SIZE" value="2" />
|
|
50
|
+
</indentOptions>
|
|
51
|
+
</codeStyleSettings>
|
|
52
|
+
<codeStyleSettings language="Vue">
|
|
53
|
+
<option name="SOFT_MARGINS" value="80" />
|
|
54
|
+
<indentOptions>
|
|
55
|
+
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
|
56
|
+
</indentOptions>
|
|
57
|
+
</codeStyleSettings>
|
|
58
|
+
</code_scheme>
|
|
59
|
+
</component>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="WEB_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$">
|
|
5
|
+
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
|
6
|
+
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
|
7
|
+
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
|
8
|
+
</content>
|
|
9
|
+
<orderEntry type="inheritedJdk" />
|
|
10
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
11
|
+
</component>
|
|
12
|
+
</module>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectModuleManager">
|
|
4
|
+
<modules>
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/comnyx-rn.iml" filepath="$PROJECT_DIR$/.idea/comnyx-rn.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
package/.idea/vcs.xml
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="AutoImportSettings">
|
|
4
|
+
<option name="autoReloadType" value="SELECTIVE" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ChangeListManager">
|
|
7
|
+
<list default="true" id="5a186bb8-6a9c-42f5-ad64-f4315aa68449" name="Changes" comment="">
|
|
8
|
+
<change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
|
|
9
|
+
</list>
|
|
10
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
11
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
12
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
13
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
14
|
+
</component>
|
|
15
|
+
<component name="Git.Settings">
|
|
16
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
17
|
+
</component>
|
|
18
|
+
<component name="ProjectColorInfo"><![CDATA[{
|
|
19
|
+
"associatedIndex": 2
|
|
20
|
+
}]]></component>
|
|
21
|
+
<component name="ProjectId" id="2utqxwBVVsHKNPfFkBH6cWK2rnW" />
|
|
22
|
+
<component name="ProjectViewState">
|
|
23
|
+
<option name="hideEmptyMiddlePackages" value="true" />
|
|
24
|
+
<option name="showLibraryContents" value="true" />
|
|
25
|
+
</component>
|
|
26
|
+
<component name="PropertiesComponent"><![CDATA[{
|
|
27
|
+
"keyToString": {
|
|
28
|
+
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
29
|
+
"RunOnceActivity.git.unshallow": "true",
|
|
30
|
+
"git-widget-placeholder": "main",
|
|
31
|
+
"last_opened_file_path": "/Users/hasbisefademir/WebstormProjects/comnyx-rn",
|
|
32
|
+
"node.js.detected.package.eslint": "true",
|
|
33
|
+
"node.js.detected.package.tslint": "true",
|
|
34
|
+
"node.js.selected.package.eslint": "(autodetect)",
|
|
35
|
+
"node.js.selected.package.tslint": "(autodetect)",
|
|
36
|
+
"nodejs_package_manager_path": "npm",
|
|
37
|
+
"ts.external.directory.path": "/Users/hasbisefademir/WebstormProjects/comnyx-rn/node_modules/typescript/lib",
|
|
38
|
+
"vue.rearranger.settings.migration": "true"
|
|
39
|
+
}
|
|
40
|
+
}]]></component>
|
|
41
|
+
<component name="ReactDesignerToolWindowState">
|
|
42
|
+
<option name="myId2Visible">
|
|
43
|
+
<map>
|
|
44
|
+
<entry key="com.intellij.reactbuddy.reactComponents" value="false" />
|
|
45
|
+
<entry key="com.intellij.reactbuddy.reactInspector" value="false" />
|
|
46
|
+
</map>
|
|
47
|
+
</option>
|
|
48
|
+
</component>
|
|
49
|
+
<component name="SharedIndexes">
|
|
50
|
+
<attachedChunks>
|
|
51
|
+
<set>
|
|
52
|
+
<option value="bundled-js-predefined-d6986cc7102b-e768b9ed790e-JavaScript-WS-243.21565.180" />
|
|
53
|
+
</set>
|
|
54
|
+
</attachedChunks>
|
|
55
|
+
</component>
|
|
56
|
+
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
|
57
|
+
<component name="TaskManager">
|
|
58
|
+
<task active="true" id="Default" summary="Default task">
|
|
59
|
+
<changelist id="5a186bb8-6a9c-42f5-ad64-f4315aa68449" name="Changes" comment="" />
|
|
60
|
+
<created>1743078468184</created>
|
|
61
|
+
<option name="number" value="Default" />
|
|
62
|
+
<option name="presentableId" value="Default" />
|
|
63
|
+
<updated>1743078468184</updated>
|
|
64
|
+
<workItem from="1743078470457" duration="2312000" />
|
|
65
|
+
</task>
|
|
66
|
+
<servers />
|
|
67
|
+
</component>
|
|
68
|
+
<component name="TypeScriptGeneratedFilesManager">
|
|
69
|
+
<option name="version" value="3" />
|
|
70
|
+
</component>
|
|
71
|
+
</project>
|
package/.nvmrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
v20
|
package/.watchmanconfig
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|