@gaddario98/react-native-core 1.0.32 → 1.0.33
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/LICENSE.txt +20 -20
- package/README.md +15 -15
- package/dist/config/index.js.map +1 -1
- package/dist/config/index.mjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +153 -153
package/LICENSE.txt
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025 gaddario98
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 gaddario98
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
# react-native-core
|
|
2
|
-
|
|
3
|
-
## Installation
|
|
4
|
-
|
|
5
|
-
```bash
|
|
6
|
-
npm install @gaddario98/native
|
|
7
|
-
```
|
|
8
|
-
|
|
9
|
-
## Usage
|
|
10
|
-
|
|
11
|
-
[Add usage examples here]
|
|
12
|
-
|
|
13
|
-
## License
|
|
14
|
-
|
|
15
|
-
MIT
|
|
1
|
+
# react-native-core
|
|
2
|
+
|
|
3
|
+
## Installation
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm install @gaddario98/native
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
|
|
11
|
+
[Add usage examples here]
|
|
12
|
+
|
|
13
|
+
## License
|
|
14
|
+
|
|
15
|
+
MIT
|
package/dist/config/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../config/index.tsx"],"sourcesContent":["import { setReactNativeStorage } from \"../state\";\
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../config/index.tsx"],"sourcesContent":["import { setReactNativeStorage } from \"../state\";\nimport { setEndpoints } from \"../queries\";\nimport { PageConfigProps, setReactNativePageConfig } from \"../pages\";\nimport {\n initializeI18n,\n setI18nInitializer,\n setTranslationAdapter,\n} from \"../localization\";\nimport { AppLinks, setAppLinks } from \"../utiles\";\nimport { KeyboardAvoidingView, Platform } from \"react-native\";\nimport { setDefaultFormContainer } from \"../form\";\n\nexport interface SetReactNativeConfigProps {\n pages: Partial<PageConfigProps>;\n endpoints: Record<string, string>;\n links: Partial<AppLinks>;\n localization?: {\n i18nInitializer: Parameters<typeof setI18nInitializer>[0];\n translationAdapter: Parameters<typeof setTranslationAdapter>[0];\n localResources?: Record<string, object>;\n };\n}\n\nexport const setReactNativeConfig = ({\n pages,\n endpoints,\n localization,\n links,\n}: SetReactNativeConfigProps) => {\n if (localization?.i18nInitializer) {\n setI18nInitializer(localization.i18nInitializer);\n }\n if (localization?.translationAdapter) {\n setTranslationAdapter(localization.translationAdapter);\n }\n if (localization?.localResources) {\n initializeI18n(localization.localResources);\n }\n setReactNativeStorage();\n setReactNativePageConfig(pages);\n setEndpoints(endpoints);\n setAppLinks(links);\n setDefaultFormContainer(({ children }) => {\n return (\n <KeyboardAvoidingView\n behavior={Platform.OS === \"ios\" ? \"padding\" : undefined}\n >\n {children}\n </KeyboardAvoidingView>\n );\n });\n};\n"],"names":["setReactNativeConfig","_ref","pages","endpoints","localization","links","i18nInitializer","setI18nInitializer","translationAdapter","setTranslationAdapter","localResources","initializeI18n","setReactNativeStorage","setReactNativePageConfig","setEndpoints","setAppLinks","setDefaultFormContainer","_ref2","children","_jsx","KeyboardAvoidingView","behavior","Platform","OS","undefined"],"mappings":"8aAuBaA,oBAAoB,GAAG,SAAvBA,oBAAoBA,CAAAC,IAAA,EAKD;AAAA,EAAA,IAJ9BC,KAAK,GAAAD,IAAA,CAALC,KAAK;IACLC,SAAS,GAAAF,IAAA,CAATE,SAAS;IACTC,YAAY,GAAAH,IAAA,CAAZG,YAAY;IACZC,KAAK,GAAAJ,IAAA,CAALI,KAAK;AAEL,EAAA,IAAID,YAAY,aAAZA,YAAY,KAAA,MAAA,GAAA,MAAA,GAAZA,YAAY,CAAEE,eAAe,EAAE;AACjCC,IAAAA,oCAAkB,CAACH,YAAY,CAACE,eAAe,CAAC;AAClD,EAAA;AACA,EAAA,IAAIF,YAAY,aAAZA,YAAY,KAAA,MAAA,GAAA,MAAA,GAAZA,YAAY,CAAEI,kBAAkB,EAAE;AACpCC,IAAAA,uCAAqB,CAACL,YAAY,CAACI,kBAAkB,CAAC;AACxD,EAAA;AACA,EAAA,IAAIJ,YAAY,aAAZA,YAAY,KAAA,MAAA,GAAA,MAAA,GAAZA,YAAY,CAAEM,cAAc,EAAE;AAChCC,IAAAA,gCAAc,CAACP,YAAY,CAACM,cAAc,CAAC;AAC7C,EAAA;AACAE,EAAAA,sCAAqB,EAAE;EACvBC,yCAAwB,CAACX,KAAK,CAAC;EAC/BY,yBAAY,CAACX,SAAS,CAAC;EACvBY,6BAAW,CAACV,KAAK,CAAC;EAClBW,iCAAuB,CAAC,UAAAC,KAAA,EAAiB;AAAA,IAAA,IAAdC,QAAQ,GAAAD,KAAA,CAARC,QAAQ;IACjC,OACEC,eAACC,gCAAoB,EAAA;MACnBC,QAAQ,EAAEC,oBAAQ,CAACC,EAAE,KAAK,KAAK,GAAG,SAAS,GAAGC,SAAS;AAAAN,MAAAA,QAAA,EAEtDA;AAAQ,KAAA,CACY;AAE3B,EAAA,CAAC,CAAC;AACJ"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../../config/index.tsx"],"sourcesContent":["import { setReactNativeStorage } from \"../state\";\
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../config/index.tsx"],"sourcesContent":["import { setReactNativeStorage } from \"../state\";\nimport { setEndpoints } from \"../queries\";\nimport { PageConfigProps, setReactNativePageConfig } from \"../pages\";\nimport {\n initializeI18n,\n setI18nInitializer,\n setTranslationAdapter,\n} from \"../localization\";\nimport { AppLinks, setAppLinks } from \"../utiles\";\nimport { KeyboardAvoidingView, Platform } from \"react-native\";\nimport { setDefaultFormContainer } from \"../form\";\n\nexport interface SetReactNativeConfigProps {\n pages: Partial<PageConfigProps>;\n endpoints: Record<string, string>;\n links: Partial<AppLinks>;\n localization?: {\n i18nInitializer: Parameters<typeof setI18nInitializer>[0];\n translationAdapter: Parameters<typeof setTranslationAdapter>[0];\n localResources?: Record<string, object>;\n };\n}\n\nexport const setReactNativeConfig = ({\n pages,\n endpoints,\n localization,\n links,\n}: SetReactNativeConfigProps) => {\n if (localization?.i18nInitializer) {\n setI18nInitializer(localization.i18nInitializer);\n }\n if (localization?.translationAdapter) {\n setTranslationAdapter(localization.translationAdapter);\n }\n if (localization?.localResources) {\n initializeI18n(localization.localResources);\n }\n setReactNativeStorage();\n setReactNativePageConfig(pages);\n setEndpoints(endpoints);\n setAppLinks(links);\n setDefaultFormContainer(({ children }) => {\n return (\n <KeyboardAvoidingView\n behavior={Platform.OS === \"ios\" ? \"padding\" : undefined}\n >\n {children}\n </KeyboardAvoidingView>\n );\n });\n};\n"],"names":["setReactNativeConfig","_ref","pages","endpoints","localization","links","i18nInitializer","setI18nInitializer","translationAdapter","setTranslationAdapter","localResources","initializeI18n","setReactNativeStorage","setReactNativePageConfig","setEndpoints","setAppLinks","setDefaultFormContainer","_ref2","children","_jsx","KeyboardAvoidingView","behavior","Platform","OS","undefined"],"mappings":"2fAuBaA,oBAAoB,GAAG,SAAvBA,oBAAoBA,CAAAC,IAAA,EAKD;AAAA,EAAA,IAJ9BC,KAAK,GAAAD,IAAA,CAALC,KAAK;IACLC,SAAS,GAAAF,IAAA,CAATE,SAAS;IACTC,YAAY,GAAAH,IAAA,CAAZG,YAAY;IACZC,KAAK,GAAAJ,IAAA,CAALI,KAAK;AAEL,EAAA,IAAID,YAAY,aAAZA,YAAY,KAAA,MAAA,GAAA,MAAA,GAAZA,YAAY,CAAEE,eAAe,EAAE;AACjCC,IAAAA,kBAAkB,CAACH,YAAY,CAACE,eAAe,CAAC;AAClD,EAAA;AACA,EAAA,IAAIF,YAAY,aAAZA,YAAY,KAAA,MAAA,GAAA,MAAA,GAAZA,YAAY,CAAEI,kBAAkB,EAAE;AACpCC,IAAAA,qBAAqB,CAACL,YAAY,CAACI,kBAAkB,CAAC;AACxD,EAAA;AACA,EAAA,IAAIJ,YAAY,aAAZA,YAAY,KAAA,MAAA,GAAA,MAAA,GAAZA,YAAY,CAAEM,cAAc,EAAE;AAChCC,IAAAA,cAAc,CAACP,YAAY,CAACM,cAAc,CAAC;AAC7C,EAAA;AACAE,EAAAA,qBAAqB,EAAE;EACvBC,wBAAwB,CAACX,KAAK,CAAC;EAC/BY,YAAY,CAACX,SAAS,CAAC;EACvBY,WAAW,CAACV,KAAK,CAAC;EAClBW,uBAAuB,CAAC,UAAAC,KAAA,EAAiB;AAAA,IAAA,IAAdC,QAAQ,GAAAD,KAAA,CAARC,QAAQ;IACjC,OACEC,IAACC,oBAAoB,EAAA;MACnBC,QAAQ,EAAEC,QAAQ,CAACC,EAAE,KAAK,KAAK,GAAG,SAAS,GAAGC,SAAS;AAAAN,MAAAA,QAAA,EAEtDA;AAAQ,KAAA,CACY;AAE3B,EAAA,CAAC,CAAC;AACJ"}
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../config/index.tsx"],"sourcesContent":["import { setReactNativeStorage } from \"../state\";\
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../config/index.tsx"],"sourcesContent":["import { setReactNativeStorage } from \"../state\";\nimport { setEndpoints } from \"../queries\";\nimport { PageConfigProps, setReactNativePageConfig } from \"../pages\";\nimport {\n initializeI18n,\n setI18nInitializer,\n setTranslationAdapter,\n} from \"../localization\";\nimport { AppLinks, setAppLinks } from \"../utiles\";\nimport { KeyboardAvoidingView, Platform } from \"react-native\";\nimport { setDefaultFormContainer } from \"../form\";\n\nexport interface SetReactNativeConfigProps {\n pages: Partial<PageConfigProps>;\n endpoints: Record<string, string>;\n links: Partial<AppLinks>;\n localization?: {\n i18nInitializer: Parameters<typeof setI18nInitializer>[0];\n translationAdapter: Parameters<typeof setTranslationAdapter>[0];\n localResources?: Record<string, object>;\n };\n}\n\nexport const setReactNativeConfig = ({\n pages,\n endpoints,\n localization,\n links,\n}: SetReactNativeConfigProps) => {\n if (localization?.i18nInitializer) {\n setI18nInitializer(localization.i18nInitializer);\n }\n if (localization?.translationAdapter) {\n setTranslationAdapter(localization.translationAdapter);\n }\n if (localization?.localResources) {\n initializeI18n(localization.localResources);\n }\n setReactNativeStorage();\n setReactNativePageConfig(pages);\n setEndpoints(endpoints);\n setAppLinks(links);\n setDefaultFormContainer(({ children }) => {\n return (\n <KeyboardAvoidingView\n behavior={Platform.OS === \"ios\" ? \"padding\" : undefined}\n >\n {children}\n </KeyboardAvoidingView>\n );\n });\n};\n"],"names":["setReactNativeConfig","_ref","pages","endpoints","localization","links","i18nInitializer","setI18nInitializer","translationAdapter","setTranslationAdapter","localResources","initializeI18n","setReactNativeStorage","setReactNativePageConfig","setEndpoints","setAppLinks","setDefaultFormContainer","_ref2","children","_jsx","KeyboardAvoidingView","behavior","Platform","OS","undefined"],"mappings":"srBAuBaA,oBAAoB,GAAG,SAAvBA,oBAAoBA,CAAAC,IAAA,EAKD;AAAA,EAAA,IAJ9BC,KAAK,GAAAD,IAAA,CAALC,KAAK;IACLC,SAAS,GAAAF,IAAA,CAATE,SAAS;IACTC,YAAY,GAAAH,IAAA,CAAZG,YAAY;IACZC,KAAK,GAAAJ,IAAA,CAALI,KAAK;AAEL,EAAA,IAAID,YAAY,aAAZA,YAAY,KAAA,MAAA,GAAA,MAAA,GAAZA,YAAY,CAAEE,eAAe,EAAE;AACjCC,IAAAA,oCAAkB,CAACH,YAAY,CAACE,eAAe,CAAC;AAClD,EAAA;AACA,EAAA,IAAIF,YAAY,aAAZA,YAAY,KAAA,MAAA,GAAA,MAAA,GAAZA,YAAY,CAAEI,kBAAkB,EAAE;AACpCC,IAAAA,uCAAqB,CAACL,YAAY,CAACI,kBAAkB,CAAC;AACxD,EAAA;AACA,EAAA,IAAIJ,YAAY,aAAZA,YAAY,KAAA,MAAA,GAAA,MAAA,GAAZA,YAAY,CAAEM,cAAc,EAAE;AAChCC,IAAAA,gCAAc,CAACP,YAAY,CAACM,cAAc,CAAC;AAC7C,EAAA;AACAE,EAAAA,sCAAqB,EAAE;EACvBC,yCAAwB,CAACX,KAAK,CAAC;EAC/BY,yBAAY,CAACX,SAAS,CAAC;EACvBY,6BAAW,CAACV,KAAK,CAAC;EAClBW,iCAAuB,CAAC,UAAAC,KAAA,EAAiB;AAAA,IAAA,IAAdC,QAAQ,GAAAD,KAAA,CAARC,QAAQ;IACjC,OACEC,eAACC,gCAAoB,EAAA;MACnBC,QAAQ,EAAEC,oBAAQ,CAACC,EAAE,KAAK,KAAK,GAAG,SAAS,GAAGC,SAAS;AAAAN,MAAAA,QAAA,EAEtDA;AAAQ,KAAA,CACY;AAE3B,EAAA,CAAC,CAAC;AACJ"}
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../config/index.tsx"],"sourcesContent":["import { setReactNativeStorage } from \"../state\";\
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../config/index.tsx"],"sourcesContent":["import { setReactNativeStorage } from \"../state\";\nimport { setEndpoints } from \"../queries\";\nimport { PageConfigProps, setReactNativePageConfig } from \"../pages\";\nimport {\n initializeI18n,\n setI18nInitializer,\n setTranslationAdapter,\n} from \"../localization\";\nimport { AppLinks, setAppLinks } from \"../utiles\";\nimport { KeyboardAvoidingView, Platform } from \"react-native\";\nimport { setDefaultFormContainer } from \"../form\";\n\nexport interface SetReactNativeConfigProps {\n pages: Partial<PageConfigProps>;\n endpoints: Record<string, string>;\n links: Partial<AppLinks>;\n localization?: {\n i18nInitializer: Parameters<typeof setI18nInitializer>[0];\n translationAdapter: Parameters<typeof setTranslationAdapter>[0];\n localResources?: Record<string, object>;\n };\n}\n\nexport const setReactNativeConfig = ({\n pages,\n endpoints,\n localization,\n links,\n}: SetReactNativeConfigProps) => {\n if (localization?.i18nInitializer) {\n setI18nInitializer(localization.i18nInitializer);\n }\n if (localization?.translationAdapter) {\n setTranslationAdapter(localization.translationAdapter);\n }\n if (localization?.localResources) {\n initializeI18n(localization.localResources);\n }\n setReactNativeStorage();\n setReactNativePageConfig(pages);\n setEndpoints(endpoints);\n setAppLinks(links);\n setDefaultFormContainer(({ children }) => {\n return (\n <KeyboardAvoidingView\n behavior={Platform.OS === \"ios\" ? \"padding\" : undefined}\n >\n {children}\n </KeyboardAvoidingView>\n );\n });\n};\n"],"names":["setReactNativeConfig","_ref","pages","endpoints","localization","links","i18nInitializer","setI18nInitializer","translationAdapter","setTranslationAdapter","localResources","initializeI18n","setReactNativeStorage","setReactNativePageConfig","setEndpoints","setAppLinks","setDefaultFormContainer","_ref2","children","_jsx","KeyboardAvoidingView","behavior","Platform","OS","undefined"],"mappings":"k8BAuBaA,oBAAoB,GAAG,SAAvBA,oBAAoBA,CAAAC,IAAA,EAKD;AAAA,EAAA,IAJ9BC,KAAK,GAAAD,IAAA,CAALC,KAAK;IACLC,SAAS,GAAAF,IAAA,CAATE,SAAS;IACTC,YAAY,GAAAH,IAAA,CAAZG,YAAY;IACZC,KAAK,GAAAJ,IAAA,CAALI,KAAK;AAEL,EAAA,IAAID,YAAY,aAAZA,YAAY,KAAA,MAAA,GAAA,MAAA,GAAZA,YAAY,CAAEE,eAAe,EAAE;AACjCC,IAAAA,kBAAkB,CAACH,YAAY,CAACE,eAAe,CAAC;AAClD,EAAA;AACA,EAAA,IAAIF,YAAY,aAAZA,YAAY,KAAA,MAAA,GAAA,MAAA,GAAZA,YAAY,CAAEI,kBAAkB,EAAE;AACpCC,IAAAA,qBAAqB,CAACL,YAAY,CAACI,kBAAkB,CAAC;AACxD,EAAA;AACA,EAAA,IAAIJ,YAAY,aAAZA,YAAY,KAAA,MAAA,GAAA,MAAA,GAAZA,YAAY,CAAEM,cAAc,EAAE;AAChCC,IAAAA,cAAc,CAACP,YAAY,CAACM,cAAc,CAAC;AAC7C,EAAA;AACAE,EAAAA,qBAAqB,EAAE;EACvBC,wBAAwB,CAACX,KAAK,CAAC;EAC/BY,YAAY,CAACX,SAAS,CAAC;EACvBY,WAAW,CAACV,KAAK,CAAC;EAClBW,uBAAuB,CAAC,UAAAC,KAAA,EAAiB;AAAA,IAAA,IAAdC,QAAQ,GAAAD,KAAA,CAARC,QAAQ;IACjC,OACEC,IAACC,oBAAoB,EAAA;MACnBC,QAAQ,EAAEC,QAAQ,CAACC,EAAE,KAAK,KAAK,GAAG,SAAS,GAAGC,SAAS;AAAAN,MAAAA,QAAA,EAEtDA;AAAQ,KAAA,CACY;AAE3B,EAAA,CAAC,CAAC;AACJ"}
|
package/package.json
CHANGED
|
@@ -1,153 +1,153 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@gaddario98/react-native-core",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"module": "dist/index.mjs",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"react-native": "dist/index.js",
|
|
9
|
-
"license": "MIT",
|
|
10
|
-
"files": [
|
|
11
|
-
"dist"
|
|
12
|
-
],
|
|
13
|
-
"scripts": {
|
|
14
|
-
"build": "rollup -c rollup.config.js && rollup -c rollup.dts.config.js",
|
|
15
|
-
"prepublishOnly": "yarn build"
|
|
16
|
-
},
|
|
17
|
-
"devDependencies": {
|
|
18
|
-
"@rollup/plugin-babel": "^6.0.4",
|
|
19
|
-
"@rollup/plugin-commonjs": "^28.0.3",
|
|
20
|
-
"@rollup/plugin-json": "^6.1.0",
|
|
21
|
-
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
22
|
-
"@rollup/plugin-typescript": "^12.1.2",
|
|
23
|
-
"@types/react": "^19.2.0",
|
|
24
|
-
"@types/react-dom": "^19.2.0",
|
|
25
|
-
"@types/rollup-plugin-peer-deps-external": "^2",
|
|
26
|
-
"babel-plugin-react-compiler": "1",
|
|
27
|
-
"react": "^19.2.0",
|
|
28
|
-
"react-dom": "^19.2.0",
|
|
29
|
-
"react-native": "^0.81.0",
|
|
30
|
-
"rollup": "^4.40.0",
|
|
31
|
-
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
32
|
-
"typescript": "^5.8.3"
|
|
33
|
-
},
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"@gaddario98/expo": "^1.0.17",
|
|
36
|
-
"@gaddario98/react-auth": "^1.0.16",
|
|
37
|
-
"@gaddario98/react-form": "^1.0.23",
|
|
38
|
-
"@gaddario98/react-localization": "^1.0.18",
|
|
39
|
-
"@gaddario98/react-native-layouts": "^1.0.22",
|
|
40
|
-
"@gaddario98/react-native-pages": "^1.0.
|
|
41
|
-
"@gaddario98/react-native-providers": "^1.0.20",
|
|
42
|
-
"@gaddario98/react-native-state": "^1.0.16",
|
|
43
|
-
"@gaddario98/react-native-tabs": "^1.0.25",
|
|
44
|
-
"@gaddario98/react-native-utiles": "^1.0.16",
|
|
45
|
-
"@gaddario98/react-queries": "^1.0.21"
|
|
46
|
-
},
|
|
47
|
-
"peerDependencies": {
|
|
48
|
-
"react": ">=18.0.0 <20.0.0",
|
|
49
|
-
"react-native": "^0.81.0"
|
|
50
|
-
},
|
|
51
|
-
"exports": {
|
|
52
|
-
".": {
|
|
53
|
-
"types": "./dist/index.d.ts",
|
|
54
|
-
"import": "./dist/index.mjs",
|
|
55
|
-
"require": "./dist/index.js",
|
|
56
|
-
"default": "./dist/index.js"
|
|
57
|
-
},
|
|
58
|
-
"./auth": {
|
|
59
|
-
"types": "./dist/auth/index.d.ts",
|
|
60
|
-
"import": "./dist/auth/index.mjs",
|
|
61
|
-
"require": "./dist/auth/index.js",
|
|
62
|
-
"default": "./dist/auth/index.js"
|
|
63
|
-
},
|
|
64
|
-
"./config": {
|
|
65
|
-
"types": "./dist/config/index.d.ts",
|
|
66
|
-
"import": "./dist/config/index.mjs",
|
|
67
|
-
"require": "./dist/config/index.js",
|
|
68
|
-
"default": "./dist/config/index.js"
|
|
69
|
-
},
|
|
70
|
-
"./expo": {
|
|
71
|
-
"types": "./dist/expo/index.d.ts",
|
|
72
|
-
"import": "./dist/expo/index.mjs",
|
|
73
|
-
"require": "./dist/expo/index.js",
|
|
74
|
-
"default": "./dist/expo/index.js"
|
|
75
|
-
},
|
|
76
|
-
"./form": {
|
|
77
|
-
"types": "./dist/form/index.d.ts",
|
|
78
|
-
"import": "./dist/form/index.mjs",
|
|
79
|
-
"require": "./dist/form/index.js",
|
|
80
|
-
"default": "./dist/form/index.js"
|
|
81
|
-
},
|
|
82
|
-
"./layouts": {
|
|
83
|
-
"types": "./dist/layouts/index.d.ts",
|
|
84
|
-
"import": "./dist/layouts/index.mjs",
|
|
85
|
-
"require": "./dist/layouts/index.js",
|
|
86
|
-
"default": "./dist/layouts/index.js"
|
|
87
|
-
},
|
|
88
|
-
"./localization": {
|
|
89
|
-
"types": "./dist/localization/index.d.ts",
|
|
90
|
-
"import": "./dist/localization/index.mjs",
|
|
91
|
-
"require": "./dist/localization/index.js",
|
|
92
|
-
"default": "./dist/localization/index.js"
|
|
93
|
-
},
|
|
94
|
-
"./pages": {
|
|
95
|
-
"types": "./dist/pages/index.d.ts",
|
|
96
|
-
"import": "./dist/pages/index.mjs",
|
|
97
|
-
"require": "./dist/pages/index.js",
|
|
98
|
-
"default": "./dist/pages/index.js"
|
|
99
|
-
},
|
|
100
|
-
"./providers": {
|
|
101
|
-
"types": "./dist/providers/index.d.ts",
|
|
102
|
-
"import": "./dist/providers/index.mjs",
|
|
103
|
-
"require": "./dist/providers/index.js",
|
|
104
|
-
"default": "./dist/providers/index.js"
|
|
105
|
-
},
|
|
106
|
-
"./queries": {
|
|
107
|
-
"types": "./dist/queries/index.d.ts",
|
|
108
|
-
"import": "./dist/queries/index.mjs",
|
|
109
|
-
"require": "./dist/queries/index.js",
|
|
110
|
-
"default": "./dist/queries/index.js"
|
|
111
|
-
},
|
|
112
|
-
"./state": {
|
|
113
|
-
"types": "./dist/state/index.d.ts",
|
|
114
|
-
"import": "./dist/state/index.mjs",
|
|
115
|
-
"require": "./dist/state/index.js",
|
|
116
|
-
"default": "./dist/state/index.js"
|
|
117
|
-
},
|
|
118
|
-
"./tabs": {
|
|
119
|
-
"types": "./dist/tabs/index.d.ts",
|
|
120
|
-
"import": "./dist/tabs/index.mjs",
|
|
121
|
-
"require": "./dist/tabs/index.js",
|
|
122
|
-
"default": "./dist/tabs/index.js"
|
|
123
|
-
},
|
|
124
|
-
"./utiles": {
|
|
125
|
-
"types": "./dist/utiles/index.d.ts",
|
|
126
|
-
"import": "./dist/utiles/index.mjs",
|
|
127
|
-
"require": "./dist/utiles/index.js",
|
|
128
|
-
"default": "./dist/utiles/index.js"
|
|
129
|
-
}
|
|
130
|
-
},
|
|
131
|
-
"repository": {
|
|
132
|
-
"type": "git",
|
|
133
|
-
"url": "git+https://github.com/gaddario98/react-native-core"
|
|
134
|
-
},
|
|
135
|
-
"keywords": [
|
|
136
|
-
"react-native",
|
|
137
|
-
"tabs",
|
|
138
|
-
"utiles",
|
|
139
|
-
"expo",
|
|
140
|
-
"navigation",
|
|
141
|
-
"bottom-tabs",
|
|
142
|
-
"state",
|
|
143
|
-
"pages",
|
|
144
|
-
"layouts",
|
|
145
|
-
"providers",
|
|
146
|
-
"gaddario98"
|
|
147
|
-
],
|
|
148
|
-
"author": "Giosuè Addario",
|
|
149
|
-
"bugs": {
|
|
150
|
-
"url": "https://github.com/gaddario98/react-native-core/issues"
|
|
151
|
-
},
|
|
152
|
-
"homepage": "https://github.com/gaddario98/react-native-core#readme"
|
|
153
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@gaddario98/react-native-core",
|
|
3
|
+
"version": "1.0.33",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"react-native": "dist/index.js",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "rollup -c rollup.config.js && rollup -c rollup.dts.config.js",
|
|
15
|
+
"prepublishOnly": "yarn build"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
19
|
+
"@rollup/plugin-commonjs": "^28.0.3",
|
|
20
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
21
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
22
|
+
"@rollup/plugin-typescript": "^12.1.2",
|
|
23
|
+
"@types/react": "^19.2.0",
|
|
24
|
+
"@types/react-dom": "^19.2.0",
|
|
25
|
+
"@types/rollup-plugin-peer-deps-external": "^2",
|
|
26
|
+
"babel-plugin-react-compiler": "1",
|
|
27
|
+
"react": "^19.2.0",
|
|
28
|
+
"react-dom": "^19.2.0",
|
|
29
|
+
"react-native": "^0.81.0",
|
|
30
|
+
"rollup": "^4.40.0",
|
|
31
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
32
|
+
"typescript": "^5.8.3"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@gaddario98/expo": "^1.0.17",
|
|
36
|
+
"@gaddario98/react-auth": "^1.0.16",
|
|
37
|
+
"@gaddario98/react-form": "^1.0.23",
|
|
38
|
+
"@gaddario98/react-localization": "^1.0.18",
|
|
39
|
+
"@gaddario98/react-native-layouts": "^1.0.22",
|
|
40
|
+
"@gaddario98/react-native-pages": "^1.0.26",
|
|
41
|
+
"@gaddario98/react-native-providers": "^1.0.20",
|
|
42
|
+
"@gaddario98/react-native-state": "^1.0.16",
|
|
43
|
+
"@gaddario98/react-native-tabs": "^1.0.25",
|
|
44
|
+
"@gaddario98/react-native-utiles": "^1.0.16",
|
|
45
|
+
"@gaddario98/react-queries": "^1.0.21"
|
|
46
|
+
},
|
|
47
|
+
"peerDependencies": {
|
|
48
|
+
"react": ">=18.0.0 <20.0.0",
|
|
49
|
+
"react-native": "^0.81.0"
|
|
50
|
+
},
|
|
51
|
+
"exports": {
|
|
52
|
+
".": {
|
|
53
|
+
"types": "./dist/index.d.ts",
|
|
54
|
+
"import": "./dist/index.mjs",
|
|
55
|
+
"require": "./dist/index.js",
|
|
56
|
+
"default": "./dist/index.js"
|
|
57
|
+
},
|
|
58
|
+
"./auth": {
|
|
59
|
+
"types": "./dist/auth/index.d.ts",
|
|
60
|
+
"import": "./dist/auth/index.mjs",
|
|
61
|
+
"require": "./dist/auth/index.js",
|
|
62
|
+
"default": "./dist/auth/index.js"
|
|
63
|
+
},
|
|
64
|
+
"./config": {
|
|
65
|
+
"types": "./dist/config/index.d.ts",
|
|
66
|
+
"import": "./dist/config/index.mjs",
|
|
67
|
+
"require": "./dist/config/index.js",
|
|
68
|
+
"default": "./dist/config/index.js"
|
|
69
|
+
},
|
|
70
|
+
"./expo": {
|
|
71
|
+
"types": "./dist/expo/index.d.ts",
|
|
72
|
+
"import": "./dist/expo/index.mjs",
|
|
73
|
+
"require": "./dist/expo/index.js",
|
|
74
|
+
"default": "./dist/expo/index.js"
|
|
75
|
+
},
|
|
76
|
+
"./form": {
|
|
77
|
+
"types": "./dist/form/index.d.ts",
|
|
78
|
+
"import": "./dist/form/index.mjs",
|
|
79
|
+
"require": "./dist/form/index.js",
|
|
80
|
+
"default": "./dist/form/index.js"
|
|
81
|
+
},
|
|
82
|
+
"./layouts": {
|
|
83
|
+
"types": "./dist/layouts/index.d.ts",
|
|
84
|
+
"import": "./dist/layouts/index.mjs",
|
|
85
|
+
"require": "./dist/layouts/index.js",
|
|
86
|
+
"default": "./dist/layouts/index.js"
|
|
87
|
+
},
|
|
88
|
+
"./localization": {
|
|
89
|
+
"types": "./dist/localization/index.d.ts",
|
|
90
|
+
"import": "./dist/localization/index.mjs",
|
|
91
|
+
"require": "./dist/localization/index.js",
|
|
92
|
+
"default": "./dist/localization/index.js"
|
|
93
|
+
},
|
|
94
|
+
"./pages": {
|
|
95
|
+
"types": "./dist/pages/index.d.ts",
|
|
96
|
+
"import": "./dist/pages/index.mjs",
|
|
97
|
+
"require": "./dist/pages/index.js",
|
|
98
|
+
"default": "./dist/pages/index.js"
|
|
99
|
+
},
|
|
100
|
+
"./providers": {
|
|
101
|
+
"types": "./dist/providers/index.d.ts",
|
|
102
|
+
"import": "./dist/providers/index.mjs",
|
|
103
|
+
"require": "./dist/providers/index.js",
|
|
104
|
+
"default": "./dist/providers/index.js"
|
|
105
|
+
},
|
|
106
|
+
"./queries": {
|
|
107
|
+
"types": "./dist/queries/index.d.ts",
|
|
108
|
+
"import": "./dist/queries/index.mjs",
|
|
109
|
+
"require": "./dist/queries/index.js",
|
|
110
|
+
"default": "./dist/queries/index.js"
|
|
111
|
+
},
|
|
112
|
+
"./state": {
|
|
113
|
+
"types": "./dist/state/index.d.ts",
|
|
114
|
+
"import": "./dist/state/index.mjs",
|
|
115
|
+
"require": "./dist/state/index.js",
|
|
116
|
+
"default": "./dist/state/index.js"
|
|
117
|
+
},
|
|
118
|
+
"./tabs": {
|
|
119
|
+
"types": "./dist/tabs/index.d.ts",
|
|
120
|
+
"import": "./dist/tabs/index.mjs",
|
|
121
|
+
"require": "./dist/tabs/index.js",
|
|
122
|
+
"default": "./dist/tabs/index.js"
|
|
123
|
+
},
|
|
124
|
+
"./utiles": {
|
|
125
|
+
"types": "./dist/utiles/index.d.ts",
|
|
126
|
+
"import": "./dist/utiles/index.mjs",
|
|
127
|
+
"require": "./dist/utiles/index.js",
|
|
128
|
+
"default": "./dist/utiles/index.js"
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"repository": {
|
|
132
|
+
"type": "git",
|
|
133
|
+
"url": "git+https://github.com/gaddario98/react-native-core"
|
|
134
|
+
},
|
|
135
|
+
"keywords": [
|
|
136
|
+
"react-native",
|
|
137
|
+
"tabs",
|
|
138
|
+
"utiles",
|
|
139
|
+
"expo",
|
|
140
|
+
"navigation",
|
|
141
|
+
"bottom-tabs",
|
|
142
|
+
"state",
|
|
143
|
+
"pages",
|
|
144
|
+
"layouts",
|
|
145
|
+
"providers",
|
|
146
|
+
"gaddario98"
|
|
147
|
+
],
|
|
148
|
+
"author": "Giosuè Addario",
|
|
149
|
+
"bugs": {
|
|
150
|
+
"url": "https://github.com/gaddario98/react-native-core/issues"
|
|
151
|
+
},
|
|
152
|
+
"homepage": "https://github.com/gaddario98/react-native-core#readme"
|
|
153
|
+
}
|