jamespot-react-core 1.3.3 → 1.3.5
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/{123.daa82f378b18a85134af.chunk.js → 889.f28c8909b84ea558e228.chunk.js} +63 -63
- package/build/889.f28c8909b84ea558e228.chunk.js.map +1 -0
- package/build/app.bundle.js +1053 -929
- package/build/app.bundle.js.map +1 -1
- package/build/src/components/widgets/wrapper/JRCWidgetColorWrapper.d.ts +8 -0
- package/build/src/components/widgets/wrapper/JRCWidgetWelcomeWrapper.d.ts +8 -0
- package/build/src/registry/ext-component-list.d.ts +4 -0
- package/package.json +4 -4
- package/build/123.daa82f378b18a85134af.chunk.js.map +0 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { WidgetColorType, WidgetDisplayMode } from 'jamespot-user-api';
|
|
2
|
+
type JRCWidgetColorWrapperProps = {
|
|
3
|
+
widget: WidgetColorType;
|
|
4
|
+
inplace: boolean;
|
|
5
|
+
mode?: WidgetDisplayMode;
|
|
6
|
+
};
|
|
7
|
+
export declare const JRCWidgetColorWrapper: ({ widget, mode }: JRCWidgetColorWrapperProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { WidgetWelcomeType, WidgetDisplayMode } from 'jamespot-user-api';
|
|
2
|
+
type JRCWidgetWelcomeWrapperProps = {
|
|
3
|
+
widget: WidgetWelcomeType;
|
|
4
|
+
inplace: boolean;
|
|
5
|
+
mode?: WidgetDisplayMode;
|
|
6
|
+
};
|
|
7
|
+
export declare const JRCWidgetWelcomeWrapper: ({ widget, mode }: JRCWidgetWelcomeWrapperProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -152,6 +152,8 @@ declare const mapping: {
|
|
|
152
152
|
WidgetCalendarCalDavEditor: "JRCWidgetCalendarCalDavEditor";
|
|
153
153
|
WidgetCheckList: "JRCWidgetCheckList";
|
|
154
154
|
WidgetCheckListEditor: "JRCWidgetCheckListEditor";
|
|
155
|
+
WidgetColor: "JRCWidgetColor";
|
|
156
|
+
WidgetColorEditor: "JRCWidgetColorEditor";
|
|
155
157
|
WidgetContactCardDav: "JRCWidgetContactCardDav";
|
|
156
158
|
WidgetContactCardDavEditor: "JRCWidgetContactCardDavEditor";
|
|
157
159
|
WidgetDatasourceTableEditor: "JRCWidgetDatasourceTableEditor";
|
|
@@ -175,5 +177,7 @@ declare const mapping: {
|
|
|
175
177
|
WidgetTableEditor: "JRCWidgetTableEditor";
|
|
176
178
|
WidgetUserProfile: "JRCWidgetUserProfile";
|
|
177
179
|
WidgetUserProfileEditor: "JRCWidgetUserProfileEditor";
|
|
180
|
+
WidgetWelcome: "JRCWidgetWelcome";
|
|
181
|
+
WidgetWelcomeEditor: "JRCWidgetWelcomeEditor";
|
|
178
182
|
};
|
|
179
183
|
export default mapping;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.5",
|
|
4
4
|
"description": "Jamespot React Core",
|
|
5
5
|
"main": "./build/app.bundle.js",
|
|
6
6
|
"types": "./build/src/App.d.ts",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"fork-ts-checker-webpack-plugin": "^9.1.0",
|
|
31
31
|
"history": "^5.3.0",
|
|
32
32
|
"husky": "^7.0.4",
|
|
33
|
-
"jamespot-front-business": "^1.3.
|
|
34
|
-
"jamespot-react-components": "^1.3.
|
|
35
|
-
"jamespot-user-api": "^1.3.
|
|
33
|
+
"jamespot-front-business": "^1.3.5",
|
|
34
|
+
"jamespot-react-components": "^1.3.5",
|
|
35
|
+
"jamespot-user-api": "^1.3.5",
|
|
36
36
|
"jest": "^30.2.0",
|
|
37
37
|
"jest-environment-jsdom": "^30.2.0",
|
|
38
38
|
"knip": "^5.67.1",
|