jamespot-react-core 1.1.118 → 1.1.120
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/562.bundle.js +4 -4
- package/build/562.bundle.js.map +1 -1
- package/build/app.bundle.js +417 -293
- package/build/app.bundle.js.map +1 -1
- package/build/assets/jamespot-216.084c33ac57c64ed8cbae80ae279351f9.png +0 -0
- package/build/assets/jamespot-blue-216.90c747d6f7f5e5300e42a88f1caaf1ed.png +0 -0
- package/build/src/components/TwoColLayout.d.ts +1 -0
- package/build/src/registry/ext-component-list.d.ts +2 -0
- package/build/src/utils/router.d.ts +6 -2
- package/package.json +4 -4
|
Binary file
|
|
@@ -77,6 +77,7 @@ declare const _default: {
|
|
|
77
77
|
readonly InputImage: "JRCInputImage";
|
|
78
78
|
readonly InputReorderCheckbox: "JRCInputReorderCheckbox";
|
|
79
79
|
readonly InputRichText: "JRCInputRichText";
|
|
80
|
+
readonly InputSearch: "JRCInputSearch";
|
|
80
81
|
readonly InputSelect: "JRCInputSelect";
|
|
81
82
|
readonly InputSelectHierarchicalTree: "JRCInputSelectHierarchicalTree";
|
|
82
83
|
readonly InputSelectList: "JRCInputSelectList";
|
|
@@ -92,6 +93,7 @@ declare const _default: {
|
|
|
92
93
|
readonly Menu: "JRCMenu";
|
|
93
94
|
readonly Modal: "JRCModal";
|
|
94
95
|
readonly ModalImg: "JRCModalImg";
|
|
96
|
+
readonly PageNotLogged: "JRCPageNotLogged";
|
|
95
97
|
readonly Pagination: "JRCPagination";
|
|
96
98
|
readonly Panel: "JRCPanel";
|
|
97
99
|
readonly Resources: "Resources";
|
|
@@ -5,7 +5,9 @@ export interface ReactRouter {
|
|
|
5
5
|
history: BrowserHistory;
|
|
6
6
|
routes: RouteObject[];
|
|
7
7
|
routesNG: RouteObject[];
|
|
8
|
-
addRoute: (route: RouteObject, ng?: boolean, isPublic?: boolean) =>
|
|
8
|
+
addRoute: (route: RouteObject, ng?: boolean, isPublic?: boolean) => {
|
|
9
|
+
route: string;
|
|
10
|
+
} | null;
|
|
9
11
|
init: (idDiv: string) => void;
|
|
10
12
|
}
|
|
11
13
|
declare class Router implements ReactRouter {
|
|
@@ -13,7 +15,9 @@ declare class Router implements ReactRouter {
|
|
|
13
15
|
routes: RouteObject[];
|
|
14
16
|
routesNG: RouteObject[];
|
|
15
17
|
constructor(history: BrowserHistory);
|
|
16
|
-
addRoute: (route: RouteObject, ng?: boolean, isPublic?: boolean) =>
|
|
18
|
+
addRoute: (route: RouteObject, ng?: boolean, isPublic?: boolean) => {
|
|
19
|
+
route: string;
|
|
20
|
+
} | null;
|
|
17
21
|
init: (idDiv: string) => void;
|
|
18
22
|
}
|
|
19
23
|
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.120",
|
|
4
4
|
"description": "Jamespot React Core",
|
|
5
5
|
"main": "./build/app.bundle.js",
|
|
6
6
|
"types": "./build/src/App.d.ts",
|
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@reduxjs/toolkit": "^1.9.0",
|
|
51
51
|
"history": "^5.3.0",
|
|
52
|
-
"jamespot-front-business": "^1.1.
|
|
53
|
-
"jamespot-react-components": "^1.0.
|
|
54
|
-
"jamespot-user-api": "^1.0.
|
|
52
|
+
"jamespot-front-business": "^1.1.26",
|
|
53
|
+
"jamespot-react-components": "^1.0.150",
|
|
54
|
+
"jamespot-user-api": "^1.0.123",
|
|
55
55
|
"react": "^17.0.2",
|
|
56
56
|
"react-dom": "^17.0.2",
|
|
57
57
|
"react-hook-form": "^7.25.0",
|