jamespot-react-core 1.1.184 → 1.1.186
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/435.5a7eed97dce6a229d701.chunk.js +654 -0
- package/build/435.5a7eed97dce6a229d701.chunk.js.map +1 -0
- package/build/app.bundle.js +844 -647
- package/build/app.bundle.js.map +1 -1
- package/build/src/ReactCore.d.ts +3 -3
- package/build/src/components/Empty.d.ts +1 -1
- package/build/src/components/ExtensionProvider.component.d.ts +2 -2
- package/build/src/components/RTProvider.component.d.ts +2 -2
- package/build/src/components/Toaster.d.ts +1 -1
- package/build/src/components/TwoColLayout.d.ts +1 -1
- package/build/src/components/editors/EditorTabDisplayLevel.d.ts +12 -0
- package/build/src/components/editors/EditorTabWidgetSelection.d.ts +4 -0
- package/build/src/components/editors/components/EditorInputColor.d.ts +8 -0
- package/build/src/components/editors/components/EditorInputNumber.d.ts +6 -0
- package/build/src/components/editors/components/EditorInputSelect.d.ts +16 -0
- package/build/src/components/editors/states/EditorIsInitialize.d.ts +2 -2
- package/build/src/components/editors/style.d.ts +1 -0
- package/build/src/components/widgets/Widget.d.ts +5 -4
- package/build/src/components/widgets/WidgetLayer/WidgetLayer.d.ts +2 -2
- package/build/src/components/widgets/WidgetWrapperCore.d.ts +2 -2
- package/build/src/components/widgets/WidgetWrapperCoreEditHover.d.ts +7 -0
- package/build/src/components/widgets/components/WidgetUploader.d.ts +2 -2
- package/build/src/components/widgets/utils.d.ts +3 -2
- package/build/src/components/widgets/wrapper/JRCWidgetCalendarCalDavWrapper.d.ts +9 -0
- package/build/src/components/widgets/wrapper/JRCWidgetContactCardDavWrapper.d.ts +9 -0
- package/build/src/components/widgets/wrapper/JRCWidgetDatasourceTableWrapper.d.ts +1 -1
- package/build/src/components/widgets/wrapper/JRCWidgetEmailsImapWrapper.d.ts +9 -0
- package/build/src/components/widgets/wrapper/JRCWidgetExcelDatasourceTableWrapper.d.ts +1 -1
- package/build/src/components/widgets/wrapper/JRCWidgetIconWrapper.d.ts +11 -0
- package/build/src/components/widgets/wrapper/WidgetCalendarCalDav/WidgetCalendarCalDavHeader.d.ts +8 -0
- package/build/src/components/widgets/wrapper/WidgetContactCardDav/WidgetContactCardDavHeader.d.ts +8 -0
- package/build/src/components/widgets/wrapper/WidgetEmailsImap/WidgetEmailsImapHeader.d.ts +13 -0
- package/build/src/components/widgets/wrapper/components/OfficeConfigurationPrompt.d.ts +24 -0
- package/build/src/components/widgets/wrapper/components/WidgetHeader.d.ts +13 -0
- package/build/src/components/widgets/wrapper/components/WidgetIntranetTitle.d.ts +13 -0
- package/build/src/components/widgets/wrapper/components/WidgetScroll.d.ts +9 -0
- package/build/src/components/widgets/wrapper/components/WidgetStylePadding.d.ts +8 -0
- package/build/src/components/widgets/wrapper/components/WidgetStyleWrapper.d.ts +14 -0
- package/build/src/components/widgets/wrapper/utils.d.ts +2 -2
- package/build/src/displayer/DisplayForm.component.d.ts +5 -5
- package/build/src/displayer/components/DisplayRender.d.ts +1 -1
- package/build/src/displayer/components/inputs/Date.d.ts +1 -1
- package/build/src/displayer/components/inputs/DefaultInput.d.ts +1 -1
- package/build/src/displayer/components/inputs/InputAudience.d.ts +1 -1
- package/build/src/displayer/components/inputs/InputCheckbox.d.ts +1 -1
- package/build/src/displayer/components/inputs/InputEmail.d.ts +1 -1
- package/build/src/displayer/components/inputs/InputRichText.d.ts +1 -1
- package/build/src/displayer/components/inputs/InputSelect.d.ts +1 -1
- package/build/src/displayer/components/inputs/InputTaxonomy.d.ts +1 -1
- package/build/src/displayer/components/inputs/InputTextarea.d.ts +1 -1
- package/build/src/displayer/components/inputs/OrientedLink.d.ts +1 -1
- package/build/src/displayer/types.d.ts +5 -5
- package/build/src/displayer/useDisplay.d.ts +1 -1
- package/build/src/initTinymce.d.ts +2 -0
- package/build/src/redux/store.d.ts +2923 -0
- package/build/src/registry/ReactCommonRegistry.d.ts +2 -2
- package/build/src/registry/ReactCoreRegistry.d.ts +2 -2
- package/build/src/registry/ext-component-list.d.ts +8 -0
- package/build/src/utils/types.d.ts +4 -4
- package/build/tsconfig.tsbuildinfo +1 -0
- package/package.json +10 -10
- package/build/724.4aadbecc6e0740c58434.chunk.js +0 -561
- package/build/724.4aadbecc6e0740c58434.chunk.js.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { ComponentType, LazyExoticComponent } from 'react';
|
|
2
2
|
import { JrComponentListKey, JrComponentListType, JrComponentTypes } from './types.common';
|
|
3
3
|
export interface RegistryComponents {
|
|
4
4
|
[key: string]: any;
|
|
@@ -7,7 +7,7 @@ export declare class ReactCommonRegistry {
|
|
|
7
7
|
list: RegistryComponents;
|
|
8
8
|
listLazy: RegistryComponents;
|
|
9
9
|
getComponent(name: string): any;
|
|
10
|
-
registerLazyComponent(name: string, promise:
|
|
10
|
+
registerLazyComponent(name: string, promise: LazyExoticComponent<ComponentType<any>>): void;
|
|
11
11
|
registerLib(componentList: Partial<JrComponentListType>, importPromise: any): void;
|
|
12
12
|
getLazyComponent<T extends JrComponentListKey>(name: T): JrComponentTypes[JrComponentListType[T]];
|
|
13
13
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { ComponentType, LazyExoticComponent } from 'react';
|
|
2
2
|
import { CoreComponentListKey, CoreComponentListType, CoreComponentTypes } from './types.core';
|
|
3
3
|
export interface RegistryComponents {
|
|
4
4
|
[key: string]: any;
|
|
@@ -7,7 +7,7 @@ export declare class ReactCoreRegistry {
|
|
|
7
7
|
list: RegistryComponents;
|
|
8
8
|
listLazy: RegistryComponents;
|
|
9
9
|
getComponent(name: string): any;
|
|
10
|
-
registerLazyComponent(name: string, promise:
|
|
10
|
+
registerLazyComponent(name: string, promise: LazyExoticComponent<ComponentType<any>>): void;
|
|
11
11
|
registerLib(componentList: Partial<CoreComponentListType>, importPromise: any): void;
|
|
12
12
|
getLazyComponent<T extends CoreComponentListKey>(name: T): CoreComponentTypes[CoreComponentListType[T]];
|
|
13
13
|
}
|
|
@@ -168,6 +168,14 @@ declare const _default: {
|
|
|
168
168
|
readonly WidgetCheckListEditor: "JRCWidgetCheckListEditor";
|
|
169
169
|
readonly WidgetQuickSurvey: "JRCWidgetQuickSurvey";
|
|
170
170
|
readonly WidgetQuickSurveyEditor: "JRCWidgetQuickSurveyEditor";
|
|
171
|
+
readonly WidgetContactCardDav: "JRCWidgetContactCardDav";
|
|
172
|
+
readonly WidgetContactCardDavEditor: "JRCWidgetContactCardDavEditor";
|
|
173
|
+
readonly WidgetEmailsImap: "JRCWidgetEmailsImap";
|
|
174
|
+
readonly WidgetEmailsImapLevel2: "JRCWidgetEmailsImapLevel2";
|
|
175
|
+
readonly WidgetIcon: "JRCWidgetIcon";
|
|
176
|
+
readonly WidgetEmailsImapEditor: "JRCWidgetEmailsImapEditor";
|
|
177
|
+
readonly WidgetCalendarCalDav: "JRCWidgetCalendarCalDav";
|
|
178
|
+
readonly WidgetCalendarCalDavEditor: "JRCWidgetCalendarCalDavEditor";
|
|
171
179
|
readonly JRCAvatar: "JRCAvatar";
|
|
172
180
|
readonly JRCCommentsBloc: "JRCCommentsBloc";
|
|
173
181
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ApplicationType, jUserList, Model, Readable, TinyMCECommonOptions, TinyMCEDynamicOptions, TinyMCEExtendedOptions } from 'jamespot-user-api';
|
|
2
|
-
import
|
|
2
|
+
import { MouseEvent } from 'react';
|
|
3
3
|
import { RouteObject } from 'react-router-dom';
|
|
4
4
|
import { TwoColLayoutRoute, TwoColLayoutRoutes } from '../components/types';
|
|
5
5
|
import { useDisplay, useDisplayList } from '../displayer/useDisplay';
|
|
@@ -26,9 +26,9 @@ export interface ReactCore {
|
|
|
26
26
|
reload: boolean;
|
|
27
27
|
notify?: boolean;
|
|
28
28
|
callback?: () => void;
|
|
29
|
-
event?:
|
|
29
|
+
event?: MouseEvent<HTMLElement>;
|
|
30
30
|
}) => void;
|
|
31
|
-
changeWindowLocation: (targetUrl: string, event:
|
|
31
|
+
changeWindowLocation: (targetUrl: string, event: MouseEvent<HTMLElement>, enableWindowOpen: boolean) => void;
|
|
32
32
|
useDisplay: typeof useDisplay;
|
|
33
33
|
useDisplayList: typeof useDisplayList;
|
|
34
34
|
tinymceCommonOptions?: TinyMCECommonOptions;
|
|
@@ -60,7 +60,7 @@ type WindowJNG = {
|
|
|
60
60
|
reload: boolean;
|
|
61
61
|
notify?: boolean;
|
|
62
62
|
callback?: () => void;
|
|
63
|
-
event?:
|
|
63
|
+
event?: MouseEvent<HTMLElement>;
|
|
64
64
|
}) => void;
|
|
65
65
|
scrollTop: () => void;
|
|
66
66
|
messengerOpenDiscussion: (options: {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":"4.9.5"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-core",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.186",
|
|
4
4
|
"description": "Jamespot React Core",
|
|
5
5
|
"main": "./build/app.bundle.js",
|
|
6
6
|
"types": "./build/src/App.d.ts",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"@types/react-router-dom": "^5.3.3",
|
|
17
17
|
"@types/react-test-renderer": "^17.0.1",
|
|
18
18
|
"@types/react-transition-group": "^4.4.1",
|
|
19
|
-
"@types/redux-form": "
|
|
19
|
+
"@types/redux-form": "8.3.11",
|
|
20
20
|
"@types/styled-components": "^5.1.4",
|
|
21
21
|
"@types/uuid": "^10.0.0",
|
|
22
22
|
"@typescript-eslint/eslint-plugin": "^5.4.0",
|
|
@@ -51,25 +51,25 @@
|
|
|
51
51
|
"worker-loader": "^3.0.8"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@reduxjs/toolkit": "
|
|
54
|
+
"@reduxjs/toolkit": "1.9.0",
|
|
55
55
|
"@testing-library/jest-dom": "^6.6.3",
|
|
56
56
|
"eslint-import-resolver-typescript": "^3.6.3",
|
|
57
57
|
"eslint-plugin-import": "^2.31.0",
|
|
58
58
|
"history": "^5.3.0",
|
|
59
|
-
"jamespot-front-business": "^1.1.
|
|
60
|
-
"jamespot-react-components": "^1.0.
|
|
61
|
-
"jamespot-user-api": "^1.0.
|
|
59
|
+
"jamespot-front-business": "^1.1.85",
|
|
60
|
+
"jamespot-react-components": "^1.0.235",
|
|
61
|
+
"jamespot-user-api": "^1.0.211",
|
|
62
62
|
"marked": "^15.0.3",
|
|
63
63
|
"react": "^17.0.2",
|
|
64
|
-
"react-dom": "
|
|
64
|
+
"react-dom": "17.0.2",
|
|
65
65
|
"react-hook-form": "^7.25.0",
|
|
66
66
|
"react-intl": "^5.8.6",
|
|
67
|
-
"react-redux": "
|
|
67
|
+
"react-redux": "7.2.9",
|
|
68
68
|
"react-router-dom": "^6.2.1",
|
|
69
69
|
"react-select": "^3.2.0",
|
|
70
70
|
"react-transition-group": "^4.4.1",
|
|
71
|
-
"redux": "
|
|
72
|
-
"redux-form": "
|
|
71
|
+
"redux": "4.2.0",
|
|
72
|
+
"redux-form": "8.3.10",
|
|
73
73
|
"redux-thunk": "^2.4.2",
|
|
74
74
|
"socket.io-client": "^4.2.0",
|
|
75
75
|
"styled-components": "^5.2.1",
|