@gaddario98/react-core 1.0.14 → 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/dist/index.js +62 -0
- package/dist/index.js.map +1 -0
- package/package.json +68 -23
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,16 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gaddario98/react-core",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"
|
|
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",
|
|
@@ -29,29 +30,73 @@
|
|
|
29
30
|
"typescript": "5.8.3"
|
|
30
31
|
},
|
|
31
32
|
"dependencies": {
|
|
32
|
-
"@gaddario98/react-auth": "^1.0.
|
|
33
|
-
"@gaddario98/react-form": "^1.0.
|
|
34
|
-
"@gaddario98/react-localization": "^1.0.
|
|
35
|
-
"@gaddario98/react-pages": "^1.0.
|
|
36
|
-
"@gaddario98/react-providers": "^1.0.
|
|
37
|
-
"@gaddario98/react-queries": "^1.0.
|
|
38
|
-
"@gaddario98/react-state": "^1.0.
|
|
39
|
-
"@gaddario98/utiles": "^1.0.
|
|
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"
|
|
40
41
|
},
|
|
41
42
|
"peerDependencies": {
|
|
42
|
-
"react": ">=18.0.0 <20.0.0"
|
|
43
|
-
"react-dom": ">=18.0.0 <20.0.0"
|
|
43
|
+
"react": ">=18.0.0 <20.0.0"
|
|
44
44
|
},
|
|
45
45
|
"exports": {
|
|
46
|
-
"./auth":
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
"./
|
|
53
|
-
|
|
54
|
-
|
|
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
|
+
}
|
|
55
100
|
},
|
|
56
101
|
"sideEffects": false,
|
|
57
102
|
"repository": {
|