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