@gaddario98/react-core 1.0.11 → 1.0.15

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/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # react-base-core
2
+
3
+ ## Installation
4
+
5
+ ```bash
6
+ npm install @gaddario98/base
7
+ ```
8
+
9
+ ## Usage
10
+
11
+ [Add usage examples here]
12
+
13
+ ## License
14
+
15
+ MIT
package/dist/index.js ADDED
@@ -0,0 +1,62 @@
1
+ 'use strict';
2
+
3
+ var reactAuth = require('@gaddario98/react-auth');
4
+ var reactPages = require('@gaddario98/react-pages');
5
+ var reactForm = require('@gaddario98/react-form');
6
+ var reactLocalization = require('@gaddario98/react-localization');
7
+ var reactProviders = require('@gaddario98/react-providers');
8
+ var reactQueries = require('@gaddario98/react-queries');
9
+ var reactState = require('@gaddario98/react-state');
10
+ var utiles = require('@gaddario98/utiles');
11
+
12
+
13
+
14
+ Object.keys(reactAuth).forEach(function (k) {
15
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
16
+ enumerable: true,
17
+ get: function () { return reactAuth[k]; }
18
+ });
19
+ });
20
+ Object.keys(reactPages).forEach(function (k) {
21
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
22
+ enumerable: true,
23
+ get: function () { return reactPages[k]; }
24
+ });
25
+ });
26
+ Object.keys(reactForm).forEach(function (k) {
27
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
28
+ enumerable: true,
29
+ get: function () { return reactForm[k]; }
30
+ });
31
+ });
32
+ Object.keys(reactLocalization).forEach(function (k) {
33
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
34
+ enumerable: true,
35
+ get: function () { return reactLocalization[k]; }
36
+ });
37
+ });
38
+ Object.keys(reactProviders).forEach(function (k) {
39
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
40
+ enumerable: true,
41
+ get: function () { return reactProviders[k]; }
42
+ });
43
+ });
44
+ Object.keys(reactQueries).forEach(function (k) {
45
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
46
+ enumerable: true,
47
+ get: function () { return reactQueries[k]; }
48
+ });
49
+ });
50
+ Object.keys(reactState).forEach(function (k) {
51
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
52
+ enumerable: true,
53
+ get: function () { return reactState[k]; }
54
+ });
55
+ });
56
+ Object.keys(utiles).forEach(function (k) {
57
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
58
+ enumerable: true,
59
+ get: function () { return utiles[k]; }
60
+ });
61
+ });
62
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
package/package.json CHANGED
@@ -1,20 +1,22 @@
1
1
  {
2
2
  "name": "@gaddario98/react-core",
3
- "version": "1.0.11",
4
- "main": "dist/index.mjs",
3
+ "version": "1.0.15",
4
+ "type": "module",
5
+ "main": "dist/index.js",
5
6
  "module": "dist/index.mjs",
6
7
  "types": "dist/index.d.ts",
7
- "type": "module",
8
8
  "license": "MIT",
9
9
  "files": [
10
10
  "dist"
11
11
  ],
12
12
  "scripts": {
13
- "build": "rollup -c"
13
+ "build": "rollup -c",
14
+ "prepublishOnly": "yarn build"
14
15
  },
15
16
  "devDependencies": {
16
17
  "@rollup/plugin-babel": "^6.0.4",
17
18
  "@rollup/plugin-commonjs": "^28.0.3",
19
+ "@rollup/plugin-json": "^6.1.0",
18
20
  "@rollup/plugin-node-resolve": "^16.0.1",
19
21
  "@rollup/plugin-typescript": "^12.1.2",
20
22
  "@types/react": "^19.2.0",
@@ -27,33 +29,79 @@
27
29
  "rollup-plugin-peer-deps-external": "^2.2.4",
28
30
  "typescript": "5.8.3"
29
31
  },
32
+ "dependencies": {
33
+ "@gaddario98/react-auth": "^1.0.14",
34
+ "@gaddario98/react-form": "^1.0.18",
35
+ "@gaddario98/react-localization": "^1.0.15",
36
+ "@gaddario98/react-pages": "^1.0.19",
37
+ "@gaddario98/react-providers": "^1.0.15",
38
+ "@gaddario98/react-queries": "^1.0.19",
39
+ "@gaddario98/react-state": "^1.0.13",
40
+ "@gaddario98/utiles": "^1.0.13"
41
+ },
30
42
  "peerDependencies": {
31
- "@gaddario98/react-auth": "1.0.11",
32
- "@gaddario98/react-form": "1.0.15",
33
- "@gaddario98/react-localization": "1.0.12",
34
- "@gaddario98/react-pages": "1.0.16",
35
- "@gaddario98/react-providers": "1.0.12",
36
- "@gaddario98/react-queries": "1.0.16",
37
- "@gaddario98/react-state": "1.0.10",
38
- "@gaddario98/utiles": "1.0.10",
39
- "react": "^19.2.0",
40
- "react-dom": "^19.2.0"
43
+ "react": ">=18.0.0 <20.0.0"
41
44
  },
42
45
  "exports": {
43
- "./auth": "./dist/auth/index.mjs",
44
- "./form": "./dist/form/index.mjs",
45
- "./localization": "./dist/localization/index.mjs",
46
- "./pages": "./dist/pages/index.mjs",
47
- "./providers": "./dist/providers/index.mjs",
48
- "./queries": "./dist/queries/index.mjs",
49
- "./state": "./dist/state/index.mjs",
50
- "./utiles": "./dist/utiles/index.mjs",
51
- ".": "./dist/index.mjs"
46
+ "./auth": {
47
+ "types": "./dist/auth/index.d.ts",
48
+ "import": "./dist/auth/index.mjs",
49
+ "require": "./dist/auth/index.js",
50
+ "default": "./dist/auth/index.js"
51
+ },
52
+ "./form": {
53
+ "types": "./dist/form/index.d.ts",
54
+ "import": "./dist/form/index.mjs",
55
+ "require": "./dist/form/index.js",
56
+ "default": "./dist/form/index.js"
57
+ },
58
+ "./localization": {
59
+ "types": "./dist/localization/index.d.ts",
60
+ "import": "./dist/localization/index.mjs",
61
+ "require": "./dist/localization/index.js",
62
+ "default": "./dist/localization/index.js"
63
+ },
64
+ "./pages": {
65
+ "types": "./dist/pages/index.d.ts",
66
+ "import": "./dist/pages/index.mjs",
67
+ "require": "./dist/pages/index.js",
68
+ "default": "./dist/pages/index.js"
69
+ },
70
+ "./providers": {
71
+ "types": "./dist/providers/index.d.ts",
72
+ "import": "./dist/providers/index.mjs",
73
+ "require": "./dist/providers/index.js",
74
+ "default": "./dist/providers/index.js"
75
+ },
76
+ "./queries": {
77
+ "types": "./dist/queries/index.d.ts",
78
+ "import": "./dist/queries/index.mjs",
79
+ "require": "./dist/queries/index.js",
80
+ "default": "./dist/queries/index.js"
81
+ },
82
+ "./state": {
83
+ "types": "./dist/state/index.d.ts",
84
+ "import": "./dist/state/index.mjs",
85
+ "require": "./dist/state/index.js",
86
+ "default": "./dist/state/index.js"
87
+ },
88
+ "./utiles": {
89
+ "types": "./dist/utiles/index.d.ts",
90
+ "import": "./dist/utiles/index.mjs",
91
+ "require": "./dist/utiles/index.js",
92
+ "default": "./dist/utiles/index.js"
93
+ },
94
+ ".": {
95
+ "types": "./dist/index.d.ts",
96
+ "import": "./dist/index.mjs",
97
+ "require": "./dist/index.js",
98
+ "default": "./dist/index.js"
99
+ }
52
100
  },
53
101
  "sideEffects": false,
54
102
  "repository": {
55
103
  "type": "git",
56
- "url": "https://github.com/gaddario98/react-core"
104
+ "url": "git+https://github.com/gaddario98/react-core"
57
105
  },
58
106
  "keywords": [
59
107
  "react",