jamespot-react-core 1.1.108 → 1.1.110
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/build/app.bundle.js +560 -428
- package/build/app.bundle.js.map +1 -1
- package/build/assets/ai.0bd1828cb6ec10ad92d900c710079cac.png +0 -0
- package/build/assets/default.2ca3180f8cdd6f14c4184439f06173cb.png +0 -0
- package/build/assets/docx.d99aeeb833c328dc360bb2dc1d99126f.png +0 -0
- package/build/assets/mp3.c4f6cf8e048c8d1fd70ea5676f9e35bb.png +0 -0
- package/build/assets/mp4.c631e40ab77a5009bec629505396f88b.png +0 -0
- package/build/assets/pdf.25c19fbb11dacc87994bdce830d7e5ed.png +0 -0
- package/build/assets/pptx.fc266e95afba9abd862da4d909e1ad68.png +0 -0
- package/build/assets/psd.cca4c1ac52e6e24770486bf5bc6d6ff9.png +0 -0
- package/build/assets/svg.21a77099744d94b9214c52043ef39d95.png +0 -0
- package/build/assets/ttf.28668a6c059779e01fe7dc66dd70ef40.png +0 -0
- package/build/assets/txt.d0b32e515641b99e8e31165279361eb4.png +0 -0
- package/build/assets/xlsx.a3b00a8cd84f504b94d1cfc617b4080f.png +0 -0
- package/build/assets/zip.b8f8ab347fc92f763a2d44617a82b66e.png +0 -0
- package/build/src/registry/ext-component-list.d.ts +2 -0
- package/build/src/utils/router.d.ts +2 -2
- package/package.json +5 -4
- package/pnpm-lock.yaml +11173 -0
- package/script/traduction-react.php +17 -9
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -30,6 +30,8 @@ declare const _default: {
|
|
|
30
30
|
readonly Ellipsis: "JRCEllipsis";
|
|
31
31
|
readonly FadeStepper: "JRCFadeStepper";
|
|
32
32
|
readonly FileOpen: "JRCFileOpen";
|
|
33
|
+
readonly File: "JRCFile";
|
|
34
|
+
readonly FileAvatar: "JRCFileAvatar";
|
|
33
35
|
readonly FlexBox: "JRCFlexBox";
|
|
34
36
|
readonly DEPRECATEDFormCheckbox: "JRCFormCheckbox";
|
|
35
37
|
readonly DEPRECATEDFormColorField: "JRCFormColorField";
|
|
@@ -5,7 +5,7 @@ export interface ReactRouter {
|
|
|
5
5
|
history: BrowserHistory;
|
|
6
6
|
routes: RouteObject[];
|
|
7
7
|
routesNG: RouteObject[];
|
|
8
|
-
addRoute: (route: RouteObject, ng?: boolean) => void;
|
|
8
|
+
addRoute: (route: RouteObject, ng?: boolean, isPublic?: boolean) => void;
|
|
9
9
|
init: (idDiv: string) => void;
|
|
10
10
|
}
|
|
11
11
|
declare class Router implements ReactRouter {
|
|
@@ -13,7 +13,7 @@ declare class Router implements ReactRouter {
|
|
|
13
13
|
routes: RouteObject[];
|
|
14
14
|
routesNG: RouteObject[];
|
|
15
15
|
constructor(history: BrowserHistory);
|
|
16
|
-
addRoute: (route: RouteObject, ng?: boolean) => void;
|
|
16
|
+
addRoute: (route: RouteObject, ng?: boolean, isPublic?: boolean) => void;
|
|
17
17
|
init: (idDiv: string) => void;
|
|
18
18
|
}
|
|
19
19
|
declare const router: Router;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-core",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.110",
|
|
4
4
|
"description": "Jamespot React Core",
|
|
5
5
|
"main": "./build/app.bundle.js",
|
|
6
6
|
"types": "./build/src/App.d.ts",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"@babel/preset-env": "^7.12.7",
|
|
27
27
|
"@babel/preset-react": "^7.12.7",
|
|
28
28
|
"@types/jest": "^27.0.2",
|
|
29
|
+
"@types/node": "^20.3.1",
|
|
29
30
|
"@types/react": "^17.0.2",
|
|
30
31
|
"@types/react-dom": "^17.0.2",
|
|
31
32
|
"@types/react-redux": "^7.1.24",
|
|
@@ -65,9 +66,9 @@
|
|
|
65
66
|
"dependencies": {
|
|
66
67
|
"@reduxjs/toolkit": "^1.9.0",
|
|
67
68
|
"history": "^5.3.0",
|
|
68
|
-
"jamespot-front-business": "^1.1.
|
|
69
|
-
"jamespot-react-components": "^1.0.
|
|
70
|
-
"jamespot-user-api": "^1.0.
|
|
69
|
+
"jamespot-front-business": "^1.1.18",
|
|
70
|
+
"jamespot-react-components": "^1.0.139",
|
|
71
|
+
"jamespot-user-api": "^1.0.109",
|
|
71
72
|
"react": "^17.0.2",
|
|
72
73
|
"react-dom": "^17.0.2",
|
|
73
74
|
"react-hook-form": "^7.25.0",
|