jamespot-react-core 1.2.31 → 1.2.33
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/{199.a6f9afd0ce446f0d2b89.chunk.js → 199.03f2527ea54b5c4f17be.chunk.js} +99 -97
- package/build/199.03f2527ea54b5c4f17be.chunk.js.map +1 -0
- package/build/758.ccf07af0a14a905ce759.chunk.js +2 -0
- package/build/758.ccf07af0a14a905ce759.chunk.js.map +1 -0
- package/build/app.bundle.js +881 -848
- package/build/app.bundle.js.map +1 -1
- package/build/src/displayer/components/inputs/InputTaxonomy.d.ts +1 -0
- package/build/src/displayer/types.d.ts +1 -0
- package/build/src/redux/store.d.ts +11 -1
- package/build/src/registry/ext-component-list.d.ts +2 -1
- package/package.json +5 -5
- package/build/199.a6f9afd0ce446f0d2b89.chunk.js.map +0 -1
- package/build/201.566cb5eca92385626a48.chunk.js +0 -2
- package/build/201.566cb5eca92385626a48.chunk.js.map +0 -1
|
@@ -113,6 +113,7 @@ export declare const InputTaxonomy: <TFieldValues extends FieldValues>(widget: W
|
|
|
113
113
|
width?: string | undefined;
|
|
114
114
|
margin?: string | undefined;
|
|
115
115
|
readOnly?: boolean | undefined;
|
|
116
|
+
srOnly?: string | undefined;
|
|
116
117
|
} & {
|
|
117
118
|
displayModal?: boolean | undefined;
|
|
118
119
|
}) => React.JSX.Element;
|
|
@@ -53,6 +53,7 @@ export type DisplayInputComponentProps<TFieldValues extends FieldValues = FieldV
|
|
|
53
53
|
width?: string;
|
|
54
54
|
margin?: string;
|
|
55
55
|
readOnly?: boolean;
|
|
56
|
+
srOnly?: string;
|
|
56
57
|
};
|
|
57
58
|
export type DisplayElementComponent<TFieldValues extends FieldValues = FieldValues> = {
|
|
58
59
|
render: FunctionComponent<RenderAttributeProps>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { Reducer } from '@reduxjs/toolkit';
|
|
3
|
-
import { Application, Comment, ExtraBot, Hook, Model, Share, studio, TVDisplay, UserCurrent, WedocApp, Bookmark, MediaLibrary, MagicPad, jland, Faq, AssetReservation, Animations, AdminLogs, Widget, WidgetEditor, ContentReport } from 'jamespot-front-business';
|
|
3
|
+
import { Application, Comment, ExtraBot, Hook, Model, Share, studio, TVDisplay, UserCurrent, WedocApp, Bookmark, MediaLibrary, MagicPad, jland, Faq, AssetReservation, Animations, AdminLogs, Widget, WidgetEditor, ContentReport, TeamWork } from 'jamespot-front-business';
|
|
4
4
|
import { ApplicationType, HookListType, jUserList, Model as ModelType, NetworkType, TinyMCECommonOptions, TinyMCEExtendedOptions } from 'jamespot-user-api';
|
|
5
5
|
import { ArticleActionsType, ArticleSelectorType } from './slice/Article.slice';
|
|
6
6
|
import { GenericActionsType } from './slice/Generic.actions';
|
|
@@ -39,6 +39,7 @@ export type AsyncReducers = {
|
|
|
39
39
|
[MagicPad.slice.name]: typeof MagicPad.slice.reducer;
|
|
40
40
|
[MediaLibrary.slice.name]: typeof MediaLibrary.slice.reducer;
|
|
41
41
|
[Share.slice.name]: typeof Share.slice.reducer;
|
|
42
|
+
[TeamWork.slice.name]: typeof TeamWork.slice.reducer;
|
|
42
43
|
[TVDisplay.slice.name]: typeof TVDisplay.slice.reducer;
|
|
43
44
|
[WedocApp.slice.name]: typeof WedocApp.slice.reducer;
|
|
44
45
|
[Widget.slice.name]: typeof Widget.slice.reducer;
|
|
@@ -539,6 +540,9 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
|
|
|
539
540
|
nbEntities: number;
|
|
540
541
|
loading: "idle" | "pending";
|
|
541
542
|
};
|
|
543
|
+
teamWork: import("redux").CombinedState<{
|
|
544
|
+
teamWorkToDo: import("jamespot-front-business").TeamWorkSliceToDoState;
|
|
545
|
+
}>;
|
|
542
546
|
tvDisplay: import("redux").CombinedState<{
|
|
543
547
|
channelsList: {
|
|
544
548
|
loading: "idle" | "pending";
|
|
@@ -1484,6 +1488,9 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
|
|
|
1484
1488
|
nbEntities: number;
|
|
1485
1489
|
loading: "idle" | "pending";
|
|
1486
1490
|
};
|
|
1491
|
+
teamWork: import("redux").CombinedState<{
|
|
1492
|
+
teamWorkToDo: import("jamespot-front-business").TeamWorkSliceToDoState;
|
|
1493
|
+
}>;
|
|
1487
1494
|
tvDisplay: import("redux").CombinedState<{
|
|
1488
1495
|
channelsList: {
|
|
1489
1496
|
loading: "idle" | "pending";
|
|
@@ -2434,6 +2441,9 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
|
|
|
2434
2441
|
nbEntities: number;
|
|
2435
2442
|
loading: "idle" | "pending";
|
|
2436
2443
|
};
|
|
2444
|
+
teamWork: import("redux").CombinedState<{
|
|
2445
|
+
teamWorkToDo: import("jamespot-front-business").TeamWorkSliceToDoState;
|
|
2446
|
+
}>;
|
|
2437
2447
|
tvDisplay: import("redux").CombinedState<{
|
|
2438
2448
|
channelsList: {
|
|
2439
2449
|
loading: "idle" | "pending";
|
|
@@ -53,7 +53,7 @@ declare const _default: {
|
|
|
53
53
|
readonly DoubleClick: "BETA_JRCDoubleClick";
|
|
54
54
|
readonly DraggingPlaceholder: "JRCDraggingPlaceholder";
|
|
55
55
|
readonly DropDown: "JRCDropDown";
|
|
56
|
-
readonly
|
|
56
|
+
readonly Deprecated_Ellipsis: "Deprecated_JRCEllipsis";
|
|
57
57
|
readonly EmptySpace: "JRCEmptySpace";
|
|
58
58
|
readonly FadeStepper: "JRCFadeStepper";
|
|
59
59
|
readonly File: "JRCFile";
|
|
@@ -128,6 +128,7 @@ declare const _default: {
|
|
|
128
128
|
readonly SkeletonLine: "JRCSkeletonLine";
|
|
129
129
|
readonly SkeletonList: "JRCSkeletonList";
|
|
130
130
|
readonly SkeletonSquare: "JRCSkeletonSquare";
|
|
131
|
+
readonly SkipToContent: "SkipToContent";
|
|
131
132
|
readonly Stepper: "JRCStepper";
|
|
132
133
|
readonly StepperPage: "JRCStepperPage";
|
|
133
134
|
readonly StyledHref: "JRCStyledHref";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-core",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.33",
|
|
4
4
|
"description": "Jamespot React Core",
|
|
5
5
|
"main": "./build/app.bundle.js",
|
|
6
6
|
"types": "./build/src/App.d.ts",
|
|
@@ -56,10 +56,10 @@
|
|
|
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.2.
|
|
60
|
-
"jamespot-react-components": "^1.2.
|
|
61
|
-
"jamespot-user-api": "^1.2.
|
|
62
|
-
"marked": "^
|
|
59
|
+
"jamespot-front-business": "^1.2.33",
|
|
60
|
+
"jamespot-react-components": "^1.2.33",
|
|
61
|
+
"jamespot-user-api": "^1.2.33",
|
|
62
|
+
"marked": "^16.1.2",
|
|
63
63
|
"react": "^17.0.2",
|
|
64
64
|
"react-dom": "17.0.2",
|
|
65
65
|
"react-hook-form": "^7.25.0",
|