jamespot-react-core 1.1.56 → 1.1.59
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/81.bundle.js +1 -1
- package/build/81.bundle.js.map +1 -1
- package/build/app.bundle.js +399 -320
- package/build/app.bundle.js.map +1 -1
- package/build/utils/types.d.ts +8 -0
- package/package.json +3 -3
package/build/utils/types.d.ts
CHANGED
|
@@ -117,6 +117,13 @@ declare type WindowJNG = {
|
|
|
117
117
|
type?: string;
|
|
118
118
|
}) => void;
|
|
119
119
|
};
|
|
120
|
+
export declare type JType = {
|
|
121
|
+
cssClass: string;
|
|
122
|
+
cssColor: string;
|
|
123
|
+
label: string;
|
|
124
|
+
type: string;
|
|
125
|
+
mainType: string;
|
|
126
|
+
};
|
|
120
127
|
export interface WindowJ {
|
|
121
128
|
react: ReactCore;
|
|
122
129
|
revision: string;
|
|
@@ -131,6 +138,7 @@ export interface WindowJ {
|
|
|
131
138
|
models: Model<string>[];
|
|
132
139
|
debug: any;
|
|
133
140
|
urlBase: string;
|
|
141
|
+
types: JType[];
|
|
134
142
|
}
|
|
135
143
|
export interface Application {
|
|
136
144
|
name: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-core",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.59",
|
|
4
4
|
"description": "Jamespot React Core",
|
|
5
5
|
"main": "./build/app.bundle.js",
|
|
6
6
|
"types": "./build/App.d.ts",
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"history": "^5.3.0",
|
|
68
|
-
"jamespot-react-components": "^1.0.
|
|
69
|
-
"jamespot-user-api": "^1.0.
|
|
68
|
+
"jamespot-react-components": "^1.0.86",
|
|
69
|
+
"jamespot-user-api": "^1.0.51",
|
|
70
70
|
"pkg.json": "^2.0.8",
|
|
71
71
|
"react": "^17.0.2",
|
|
72
72
|
"react-dom": "^17.0.2",
|