@gaddario98/react-native-core 1.0.0 → 1.0.9
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/dist/auth/index.d.ts +1 -0
- package/dist/config/index.d.ts +9 -0
- package/dist/form/index.d.ts +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.mjs +4193 -2
- package/dist/index.mjs.map +1 -1
- package/dist/localization/index.d.ts +1 -0
- package/dist/queries/index.d.ts +1 -0
- package/dist/utiles/index.d.ts +1 -0
- package/package.json +19 -6
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@gaddario98/react-native-utiles";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gaddario98/react-native-core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"main": "dist/index.mjs",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -14,11 +14,17 @@
|
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
16
|
"@gaddario98/expo": "*",
|
|
17
|
+
"@gaddario98/react-auth": "*",
|
|
18
|
+
"@gaddario98/react-form": "*",
|
|
19
|
+
"@gaddario98/react-localization": "*",
|
|
17
20
|
"@gaddario98/react-native-layouts": "*",
|
|
18
21
|
"@gaddario98/react-native-pages": "*",
|
|
19
22
|
"@gaddario98/react-native-providers": "*",
|
|
20
23
|
"@gaddario98/react-native-state": "*",
|
|
21
|
-
"@gaddario98/react-native-tabs": "*"
|
|
24
|
+
"@gaddario98/react-native-tabs": "*",
|
|
25
|
+
"@gaddario98/react-native-utiles": "*",
|
|
26
|
+
"@gaddario98/react-queries": "*",
|
|
27
|
+
"react-native": "*"
|
|
22
28
|
},
|
|
23
29
|
"devDependencies": {
|
|
24
30
|
"@rollup/plugin-commonjs": "^28.0.3",
|
|
@@ -32,21 +38,28 @@
|
|
|
32
38
|
"typescript": "^5.8.3"
|
|
33
39
|
},
|
|
34
40
|
"exports": {
|
|
41
|
+
"./auth": "./dist/auth/index.mjs",
|
|
42
|
+
"./config": "./dist/config/index.mjs",
|
|
35
43
|
"./expo": "./dist/expo/index.mjs",
|
|
44
|
+
"./form": "./dist/form/index.mjs",
|
|
36
45
|
"./layouts": "./dist/layouts/index.mjs",
|
|
46
|
+
"./localization": "./dist/localization/index.mjs",
|
|
37
47
|
"./pages": "./dist/pages/index.mjs",
|
|
38
|
-
"./providers": "./dist/
|
|
48
|
+
"./providers": "./dist/providers/index.mjs",
|
|
49
|
+
"./queries": "./dist/queries/index.mjs",
|
|
39
50
|
"./state": "./dist/state/index.mjs",
|
|
40
51
|
"./tabs": "./dist/tabs/index.mjs",
|
|
52
|
+
"./utiles": "./dist/utiles/index.mjs",
|
|
41
53
|
".": "./dist/index.mjs"
|
|
42
54
|
},
|
|
43
55
|
"repository": {
|
|
44
56
|
"type": "git",
|
|
45
|
-
"url": "https://github.com/gaddario98/react-native-
|
|
57
|
+
"url": "https://github.com/gaddario98/react-native-core"
|
|
46
58
|
},
|
|
47
59
|
"keywords": [
|
|
48
60
|
"react-native",
|
|
49
61
|
"tabs",
|
|
62
|
+
"utiles",
|
|
50
63
|
"expo",
|
|
51
64
|
"navigation",
|
|
52
65
|
"bottom-tabs",
|
|
@@ -58,7 +71,7 @@
|
|
|
58
71
|
],
|
|
59
72
|
"author": "Giosuè Addario",
|
|
60
73
|
"bugs": {
|
|
61
|
-
"url": "https://github.com/gaddario98/react-native-
|
|
74
|
+
"url": "https://github.com/gaddario98/react-native-core/issues"
|
|
62
75
|
},
|
|
63
|
-
"homepage": "https://github.com/gaddario98/react-native-
|
|
76
|
+
"homepage": "https://github.com/gaddario98/react-native-core#readme"
|
|
64
77
|
}
|