jamespot-react-core 1.1.116 → 1.1.118
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 +235 -0
- package/build/562.bundle.js.map +1 -0
- package/build/app.bundle.js +541 -571
- package/build/app.bundle.js.map +1 -1
- package/build/assets/gif.605d1d151a01356b376d5c4ac2f40d19.png +0 -0
- package/build/socket.sharedworker.dd3721cc98a91b6cf80a.js +2 -0
- package/build/socket.sharedworker.dd3721cc98a91b6cf80a.js.map +1 -0
- package/build/src/components/Empty.d.ts +2 -1
- package/build/src/components/ExtensionProvider.component.d.ts +2 -2
- package/build/src/components/IfAppIsActivated.component.d.ts +1 -1
- package/build/src/components/RTProvider.component.d.ts +1 -1
- package/build/src/components/Toaster.d.ts +2 -1
- package/build/src/components/TwoColLayout.d.ts +5 -5
- package/build/src/components/editors/Editor.d.ts +2 -1
- package/build/src/components/editors/EditorPopup.d.ts +2 -1
- package/build/src/components/editors/EditorTabWidgets.d.ts +2 -1
- package/build/src/components/editors/EditorTabWrapper.d.ts +2 -1
- package/build/src/components/editors/EditorWrapper.d.ts +2 -1
- package/build/src/components/editors/EditorsPortal.d.ts +3 -2
- package/build/src/components/editors/style.d.ts +2 -2
- package/build/src/components/widgets/Widget.d.ts +3 -2
- package/build/src/components/widgets/WidgetLayer/WidgetLayer.d.ts +3 -3
- package/build/src/components/widgets/WidgetList/WidgetList.d.ts +5 -3
- package/build/src/components/widgets/WidgetState.d.ts +2 -1
- package/build/src/components/widgets/WidgetWrapperCore.d.ts +2 -1
- package/build/src/components/widgets/components/WidgetUploader.d.ts +15 -0
- package/build/src/components/widgets/utils.d.ts +0 -7
- package/build/src/components/widgets/wrapper/JRCWidgetArticleAttachmentWrapper.d.ts +10 -0
- package/build/src/components/widgets/wrapper/JRCWidgetArticleGalleryWrapper.d.ts +8 -0
- package/build/src/components/widgets/wrapper/JRCWidgetArticleImageWrapper.d.ts +8 -0
- package/build/src/components/widgets/wrapper/JRCWidgetArticleTitleWrapper.d.ts +11 -0
- package/build/src/displayer/DisplayForm.component.d.ts +2 -2
- package/build/src/displayer/components/DisplayRender.d.ts +8 -8
- package/build/src/displayer/components/inputs/Date.d.ts +3 -2
- package/build/src/displayer/components/inputs/DefaultInput.d.ts +2 -1
- package/build/src/displayer/components/inputs/InputEmail.d.ts +2 -1
- package/build/src/displayer/components/inputs/InputRichText.d.ts +2 -1
- package/build/src/displayer/components/inputs/InputSelect.d.ts +3 -2
- package/build/src/displayer/components/inputs/InputTaxonomy.d.ts +3 -2
- package/build/src/displayer/components/inputs/InputTextarea.d.ts +2 -1
- package/build/src/displayer/components/inputs/OrientedLink.d.ts +2 -1
- package/build/src/displayer/components/inputs/Radio.d.ts +3 -2
- package/build/src/displayer/displayer.utils.d.ts +1 -1
- package/build/src/displayer/types.d.ts +14 -14
- package/build/src/displayer/useDisplay.d.ts +2 -1
- package/build/src/hooks/useWindowDimension.d.ts +2 -2
- package/build/src/redux/slice/Generic.actions.d.ts +1 -1
- package/build/src/registry/ext-component-list.d.ts +3 -1
- package/build/src/registry/types.d.ts +9 -9
- package/build/src/utils/translation.d.ts +3 -3
- package/build/src/utils/types.d.ts +18 -14
- package/package.json +93 -94
- package/build/155.bundle.js +0 -198
- package/build/155.bundle.js.map +0 -1
- package/build/socket.sharedworker.9cc9b5b3f5d4700f41ee.js +0 -2
- package/build/socket.sharedworker.9cc9b5b3f5d4700f41ee.js.map +0 -1
- package/build/src/components/widgets/WidgetInplace/WidgetInplace.style.d.ts +0 -1
- package/build/src/components/widgets/WidgetInplace/WidgetInplaceUpload.d.ts +0 -14
- package/build/src/components/widgets/WidgetInplace/WidgetInplaceWrapper.d.ts +0 -6
- package/build/src/redux/slice/Article.slice.d.ts +0 -97
- package/build/src/redux/slice/User.slice.d.ts +0 -97
- package/build/src/redux/store.d.ts +0 -121
- package/pnpm-lock.yaml +0 -11173
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
export interface Article {
|
|
2
|
-
uri: string;
|
|
3
|
-
title: string;
|
|
4
|
-
type: 'article';
|
|
5
|
-
}
|
|
6
|
-
export declare const articleAdapter: import("@reduxjs/toolkit").EntityAdapter<Article>;
|
|
7
|
-
export declare const articleSlice: import("@reduxjs/toolkit").Slice<import("@reduxjs/toolkit").EntityState<Article>, {
|
|
8
|
-
addOne: {
|
|
9
|
-
<S extends import("@reduxjs/toolkit").EntityState<Article>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S, import("@reduxjs/toolkit").EntityState<Article>, S>, entity: Article): S;
|
|
10
|
-
<S_1 extends import("@reduxjs/toolkit").EntityState<Article>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_1, import("@reduxjs/toolkit").EntityState<Article>, S_1>, action: {
|
|
11
|
-
payload: Article;
|
|
12
|
-
type: string;
|
|
13
|
-
}): S_1;
|
|
14
|
-
};
|
|
15
|
-
addMany: {
|
|
16
|
-
<S_2 extends import("@reduxjs/toolkit").EntityState<Article>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_2, import("@reduxjs/toolkit").EntityState<Article>, S_2>, entities: readonly Article[] | Record<import("@reduxjs/toolkit").EntityId, Article>): S_2;
|
|
17
|
-
<S_3 extends import("@reduxjs/toolkit").EntityState<Article>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_3, import("@reduxjs/toolkit").EntityState<Article>, S_3>, entities: {
|
|
18
|
-
payload: readonly Article[] | Record<import("@reduxjs/toolkit").EntityId, Article>;
|
|
19
|
-
type: string;
|
|
20
|
-
}): S_3;
|
|
21
|
-
};
|
|
22
|
-
setAll: {
|
|
23
|
-
<S_4 extends import("@reduxjs/toolkit").EntityState<Article>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_4, import("@reduxjs/toolkit").EntityState<Article>, S_4>, entities: readonly Article[] | Record<import("@reduxjs/toolkit").EntityId, Article>): S_4;
|
|
24
|
-
<S_5 extends import("@reduxjs/toolkit").EntityState<Article>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_5, import("@reduxjs/toolkit").EntityState<Article>, S_5>, entities: {
|
|
25
|
-
payload: readonly Article[] | Record<import("@reduxjs/toolkit").EntityId, Article>;
|
|
26
|
-
type: string;
|
|
27
|
-
}): S_5;
|
|
28
|
-
};
|
|
29
|
-
}, "articles">;
|
|
30
|
-
export declare const articlesSelector: import("@reduxjs/toolkit").EntitySelectors<Article, import("redux").CombinedState<{
|
|
31
|
-
entities: import("redux").CombinedState<{
|
|
32
|
-
applications: import("@reduxjs/toolkit").EntityState<import("jamespot-user-api").ApplicationType>;
|
|
33
|
-
models: import("@reduxjs/toolkit").EntityState<import("jamespot-user-api").Model<string>>;
|
|
34
|
-
users: import("@reduxjs/toolkit").EntityState<import("./User.slice").User>;
|
|
35
|
-
articles: import("@reduxjs/toolkit").EntityState<Article>;
|
|
36
|
-
}>;
|
|
37
|
-
form: import("redux-form").FormStateMap;
|
|
38
|
-
toasts: import("@reduxjs/toolkit").EntityState<{
|
|
39
|
-
id: string;
|
|
40
|
-
label: string | {
|
|
41
|
-
id: string;
|
|
42
|
-
values: {
|
|
43
|
-
[x: string]: string | number | boolean | Date | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | ((children: string) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) | null | undefined;
|
|
44
|
-
};
|
|
45
|
-
};
|
|
46
|
-
description?: string | {
|
|
47
|
-
id: string;
|
|
48
|
-
values: {
|
|
49
|
-
[x: string]: string | number | boolean | Date | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | ((children: string) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) | null | undefined;
|
|
50
|
-
};
|
|
51
|
-
} | undefined;
|
|
52
|
-
timeout: number;
|
|
53
|
-
type: "error" | "success" | "warning";
|
|
54
|
-
}>;
|
|
55
|
-
userCurrent: import("jamespot-user-api").jUserList;
|
|
56
|
-
network: import("redux").CombinedState<{
|
|
57
|
-
statics: {
|
|
58
|
-
networkPublic?: {
|
|
59
|
-
uri: string;
|
|
60
|
-
title: string;
|
|
61
|
-
type: string;
|
|
62
|
-
mainType: string;
|
|
63
|
-
} | undefined;
|
|
64
|
-
networkMe?: {
|
|
65
|
-
uri: string;
|
|
66
|
-
title: string;
|
|
67
|
-
type: string;
|
|
68
|
-
mainType: string;
|
|
69
|
-
} | undefined;
|
|
70
|
-
};
|
|
71
|
-
}>;
|
|
72
|
-
}>>;
|
|
73
|
-
export declare type ArticleSelectorType = typeof articlesSelector;
|
|
74
|
-
export declare const articleActions: import("@reduxjs/toolkit").CaseReducerActions<{
|
|
75
|
-
addOne: {
|
|
76
|
-
<S extends import("@reduxjs/toolkit").EntityState<Article>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S, import("@reduxjs/toolkit").EntityState<Article>, S>, entity: Article): S;
|
|
77
|
-
<S_1 extends import("@reduxjs/toolkit").EntityState<Article>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_1, import("@reduxjs/toolkit").EntityState<Article>, S_1>, action: {
|
|
78
|
-
payload: Article;
|
|
79
|
-
type: string;
|
|
80
|
-
}): S_1;
|
|
81
|
-
};
|
|
82
|
-
addMany: {
|
|
83
|
-
<S_2 extends import("@reduxjs/toolkit").EntityState<Article>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_2, import("@reduxjs/toolkit").EntityState<Article>, S_2>, entities: readonly Article[] | Record<import("@reduxjs/toolkit").EntityId, Article>): S_2;
|
|
84
|
-
<S_3 extends import("@reduxjs/toolkit").EntityState<Article>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_3, import("@reduxjs/toolkit").EntityState<Article>, S_3>, entities: {
|
|
85
|
-
payload: readonly Article[] | Record<import("@reduxjs/toolkit").EntityId, Article>;
|
|
86
|
-
type: string;
|
|
87
|
-
}): S_3;
|
|
88
|
-
};
|
|
89
|
-
setAll: {
|
|
90
|
-
<S_4 extends import("@reduxjs/toolkit").EntityState<Article>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_4, import("@reduxjs/toolkit").EntityState<Article>, S_4>, entities: readonly Article[] | Record<import("@reduxjs/toolkit").EntityId, Article>): S_4;
|
|
91
|
-
<S_5 extends import("@reduxjs/toolkit").EntityState<Article>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_5, import("@reduxjs/toolkit").EntityState<Article>, S_5>, entities: {
|
|
92
|
-
payload: readonly Article[] | Record<import("@reduxjs/toolkit").EntityId, Article>;
|
|
93
|
-
type: string;
|
|
94
|
-
}): S_5;
|
|
95
|
-
};
|
|
96
|
-
}, "articles">;
|
|
97
|
-
export declare type ArticleActionsType = typeof articleActions;
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
export interface User {
|
|
2
|
-
uri: string;
|
|
3
|
-
title: string;
|
|
4
|
-
type: 'user';
|
|
5
|
-
}
|
|
6
|
-
export declare const userAdapter: import("@reduxjs/toolkit").EntityAdapter<User>;
|
|
7
|
-
export declare const userSlice: import("@reduxjs/toolkit").Slice<import("@reduxjs/toolkit").EntityState<User>, {
|
|
8
|
-
addOne: {
|
|
9
|
-
<S extends import("@reduxjs/toolkit").EntityState<User>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S, import("@reduxjs/toolkit").EntityState<User>, S>, entity: User): S;
|
|
10
|
-
<S_1 extends import("@reduxjs/toolkit").EntityState<User>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_1, import("@reduxjs/toolkit").EntityState<User>, S_1>, action: {
|
|
11
|
-
payload: User;
|
|
12
|
-
type: string;
|
|
13
|
-
}): S_1;
|
|
14
|
-
};
|
|
15
|
-
addMany: {
|
|
16
|
-
<S_2 extends import("@reduxjs/toolkit").EntityState<User>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_2, import("@reduxjs/toolkit").EntityState<User>, S_2>, entities: readonly User[] | Record<import("@reduxjs/toolkit").EntityId, User>): S_2;
|
|
17
|
-
<S_3 extends import("@reduxjs/toolkit").EntityState<User>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_3, import("@reduxjs/toolkit").EntityState<User>, S_3>, entities: {
|
|
18
|
-
payload: readonly User[] | Record<import("@reduxjs/toolkit").EntityId, User>;
|
|
19
|
-
type: string;
|
|
20
|
-
}): S_3;
|
|
21
|
-
};
|
|
22
|
-
setAll: {
|
|
23
|
-
<S_4 extends import("@reduxjs/toolkit").EntityState<User>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_4, import("@reduxjs/toolkit").EntityState<User>, S_4>, entities: readonly User[] | Record<import("@reduxjs/toolkit").EntityId, User>): S_4;
|
|
24
|
-
<S_5 extends import("@reduxjs/toolkit").EntityState<User>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_5, import("@reduxjs/toolkit").EntityState<User>, S_5>, entities: {
|
|
25
|
-
payload: readonly User[] | Record<import("@reduxjs/toolkit").EntityId, User>;
|
|
26
|
-
type: string;
|
|
27
|
-
}): S_5;
|
|
28
|
-
};
|
|
29
|
-
}, "users">;
|
|
30
|
-
export declare const usersSelector: import("@reduxjs/toolkit").EntitySelectors<User, import("redux").CombinedState<{
|
|
31
|
-
entities: import("redux").CombinedState<{
|
|
32
|
-
applications: import("@reduxjs/toolkit").EntityState<import("jamespot-user-api").ApplicationType>;
|
|
33
|
-
models: import("@reduxjs/toolkit").EntityState<import("jamespot-user-api").Model<string>>;
|
|
34
|
-
users: import("@reduxjs/toolkit").EntityState<User>;
|
|
35
|
-
articles: import("@reduxjs/toolkit").EntityState<import("./Article.slice").Article>;
|
|
36
|
-
}>;
|
|
37
|
-
form: import("redux-form").FormStateMap;
|
|
38
|
-
toasts: import("@reduxjs/toolkit").EntityState<{
|
|
39
|
-
id: string;
|
|
40
|
-
label: string | {
|
|
41
|
-
id: string;
|
|
42
|
-
values: {
|
|
43
|
-
[x: string]: string | number | boolean | Date | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | ((children: string) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) | null | undefined;
|
|
44
|
-
};
|
|
45
|
-
};
|
|
46
|
-
description?: string | {
|
|
47
|
-
id: string;
|
|
48
|
-
values: {
|
|
49
|
-
[x: string]: string | number | boolean | Date | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | ((children: string) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) | null | undefined;
|
|
50
|
-
};
|
|
51
|
-
} | undefined;
|
|
52
|
-
timeout: number;
|
|
53
|
-
type: "error" | "success" | "warning";
|
|
54
|
-
}>;
|
|
55
|
-
userCurrent: import("jamespot-user-api").jUserList;
|
|
56
|
-
network: import("redux").CombinedState<{
|
|
57
|
-
statics: {
|
|
58
|
-
networkPublic?: {
|
|
59
|
-
uri: string;
|
|
60
|
-
title: string;
|
|
61
|
-
type: string;
|
|
62
|
-
mainType: string;
|
|
63
|
-
} | undefined;
|
|
64
|
-
networkMe?: {
|
|
65
|
-
uri: string;
|
|
66
|
-
title: string;
|
|
67
|
-
type: string;
|
|
68
|
-
mainType: string;
|
|
69
|
-
} | undefined;
|
|
70
|
-
};
|
|
71
|
-
}>;
|
|
72
|
-
}>>;
|
|
73
|
-
export declare type UsersSelectorType = typeof usersSelector;
|
|
74
|
-
export declare const userActions: import("@reduxjs/toolkit").CaseReducerActions<{
|
|
75
|
-
addOne: {
|
|
76
|
-
<S extends import("@reduxjs/toolkit").EntityState<User>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S, import("@reduxjs/toolkit").EntityState<User>, S>, entity: User): S;
|
|
77
|
-
<S_1 extends import("@reduxjs/toolkit").EntityState<User>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_1, import("@reduxjs/toolkit").EntityState<User>, S_1>, action: {
|
|
78
|
-
payload: User;
|
|
79
|
-
type: string;
|
|
80
|
-
}): S_1;
|
|
81
|
-
};
|
|
82
|
-
addMany: {
|
|
83
|
-
<S_2 extends import("@reduxjs/toolkit").EntityState<User>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_2, import("@reduxjs/toolkit").EntityState<User>, S_2>, entities: readonly User[] | Record<import("@reduxjs/toolkit").EntityId, User>): S_2;
|
|
84
|
-
<S_3 extends import("@reduxjs/toolkit").EntityState<User>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_3, import("@reduxjs/toolkit").EntityState<User>, S_3>, entities: {
|
|
85
|
-
payload: readonly User[] | Record<import("@reduxjs/toolkit").EntityId, User>;
|
|
86
|
-
type: string;
|
|
87
|
-
}): S_3;
|
|
88
|
-
};
|
|
89
|
-
setAll: {
|
|
90
|
-
<S_4 extends import("@reduxjs/toolkit").EntityState<User>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_4, import("@reduxjs/toolkit").EntityState<User>, S_4>, entities: readonly User[] | Record<import("@reduxjs/toolkit").EntityId, User>): S_4;
|
|
91
|
-
<S_5 extends import("@reduxjs/toolkit").EntityState<User>>(state: import("@reduxjs/toolkit/dist/tsHelpers").IsAny<S_5, import("@reduxjs/toolkit").EntityState<User>, S_5>, entities: {
|
|
92
|
-
payload: readonly User[] | Record<import("@reduxjs/toolkit").EntityId, User>;
|
|
93
|
-
type: string;
|
|
94
|
-
}): S_5;
|
|
95
|
-
};
|
|
96
|
-
}, "users">;
|
|
97
|
-
export declare type UserActionsType = typeof userActions;
|
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
import { Reducer } from '@reduxjs/toolkit';
|
|
2
|
-
import { UsersSelectorType, UserActionsType } from './slice/User.slice';
|
|
3
|
-
import { ArticleSelectorType, ArticleActionsType } from './slice/Article.slice';
|
|
4
|
-
import { GenericActionsType } from './slice/Generic.actions';
|
|
5
|
-
import { Application, Model, UserCurrent } from 'jamespot-front-business';
|
|
6
|
-
import { TypedUseSelectorHook } from 'react-redux';
|
|
7
|
-
export interface JInjectStore extends ReturnType<typeof createStore> {
|
|
8
|
-
asyncReducers: AsyncReducers;
|
|
9
|
-
add: (key: string, asyncReducer: Reducer) => void;
|
|
10
|
-
selectors: {
|
|
11
|
-
article: ArticleSelectorType;
|
|
12
|
-
application: typeof Application.selectors;
|
|
13
|
-
model: typeof Model.selectors;
|
|
14
|
-
user: UsersSelectorType;
|
|
15
|
-
userCurrent: typeof UserCurrent.selectors;
|
|
16
|
-
};
|
|
17
|
-
actions: {
|
|
18
|
-
article: ArticleActionsType;
|
|
19
|
-
application: typeof Application.actions;
|
|
20
|
-
model: typeof Model.actions;
|
|
21
|
-
user: UserActionsType;
|
|
22
|
-
userCurrent: typeof UserCurrent.actions;
|
|
23
|
-
generic: GenericActionsType;
|
|
24
|
-
};
|
|
25
|
-
}
|
|
26
|
-
export interface AsyncReducers {
|
|
27
|
-
[key: string]: Reducer;
|
|
28
|
-
}
|
|
29
|
-
export declare function makeStore(initialState: AsyncReducers): JInjectStore;
|
|
30
|
-
declare function createStore(initialAsyncReducers: {}, initialState: any): import("@reduxjs/toolkit/dist/configureStore").ToolkitStore<import("redux").CombinedState<{
|
|
31
|
-
entities: import("redux").CombinedState<{
|
|
32
|
-
applications: import("@reduxjs/toolkit").EntityState<import("jamespot-user-api").ApplicationType>;
|
|
33
|
-
models: import("@reduxjs/toolkit").EntityState<import("jamespot-user-api").Model<string>>;
|
|
34
|
-
users: import("@reduxjs/toolkit").EntityState<import("./slice/User.slice").User>;
|
|
35
|
-
articles: import("@reduxjs/toolkit").EntityState<import("./slice/Article.slice").Article>;
|
|
36
|
-
}>;
|
|
37
|
-
form: import("redux-form").FormStateMap;
|
|
38
|
-
toasts: import("@reduxjs/toolkit").EntityState<{
|
|
39
|
-
id: string;
|
|
40
|
-
label: string | {
|
|
41
|
-
id: string;
|
|
42
|
-
values: {
|
|
43
|
-
[x: string]: string | number | boolean | Date | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | ((children: string) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) | null | undefined;
|
|
44
|
-
};
|
|
45
|
-
};
|
|
46
|
-
description?: string | {
|
|
47
|
-
id: string;
|
|
48
|
-
values: {
|
|
49
|
-
[x: string]: string | number | boolean | Date | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | ((children: string) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) | null | undefined;
|
|
50
|
-
};
|
|
51
|
-
} | undefined;
|
|
52
|
-
timeout: number;
|
|
53
|
-
type: "error" | "success" | "warning";
|
|
54
|
-
}>;
|
|
55
|
-
userCurrent: import("jamespot-user-api").jUserList;
|
|
56
|
-
network: import("redux").CombinedState<{
|
|
57
|
-
statics: {
|
|
58
|
-
networkPublic?: {
|
|
59
|
-
uri: string;
|
|
60
|
-
title: string;
|
|
61
|
-
type: string;
|
|
62
|
-
mainType: string;
|
|
63
|
-
} | undefined;
|
|
64
|
-
networkMe?: {
|
|
65
|
-
uri: string;
|
|
66
|
-
title: string;
|
|
67
|
-
type: string;
|
|
68
|
-
mainType: string;
|
|
69
|
-
} | undefined;
|
|
70
|
-
};
|
|
71
|
-
}>;
|
|
72
|
-
}>, import("redux").AnyAction, import("@reduxjs/toolkit").ThunkMiddleware<import("redux").EmptyObject & {
|
|
73
|
-
entities: import("redux").CombinedState<{
|
|
74
|
-
applications: import("@reduxjs/toolkit").EntityState<import("jamespot-user-api").ApplicationType>;
|
|
75
|
-
models: import("@reduxjs/toolkit").EntityState<import("jamespot-user-api").Model<string>>;
|
|
76
|
-
users: import("@reduxjs/toolkit").EntityState<import("./slice/User.slice").User>;
|
|
77
|
-
articles: import("@reduxjs/toolkit").EntityState<import("./slice/Article.slice").Article>;
|
|
78
|
-
}>;
|
|
79
|
-
form: import("redux-form").FormStateMap;
|
|
80
|
-
toasts: import("@reduxjs/toolkit").EntityState<{
|
|
81
|
-
id: string;
|
|
82
|
-
label: string | {
|
|
83
|
-
id: string;
|
|
84
|
-
values: {
|
|
85
|
-
[x: string]: string | number | boolean | Date | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | ((children: string) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) | null | undefined;
|
|
86
|
-
};
|
|
87
|
-
};
|
|
88
|
-
description?: string | {
|
|
89
|
-
id: string;
|
|
90
|
-
values: {
|
|
91
|
-
[x: string]: string | number | boolean | Date | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | ((children: string) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) | null | undefined;
|
|
92
|
-
};
|
|
93
|
-
} | undefined;
|
|
94
|
-
timeout: number;
|
|
95
|
-
type: "error" | "success" | "warning";
|
|
96
|
-
}>;
|
|
97
|
-
userCurrent: import("jamespot-user-api").jUserList;
|
|
98
|
-
network: import("redux").CombinedState<{
|
|
99
|
-
statics: {
|
|
100
|
-
networkPublic?: {
|
|
101
|
-
uri: string;
|
|
102
|
-
title: string;
|
|
103
|
-
type: string;
|
|
104
|
-
mainType: string;
|
|
105
|
-
} | undefined;
|
|
106
|
-
networkMe?: {
|
|
107
|
-
uri: string;
|
|
108
|
-
title: string;
|
|
109
|
-
type: string;
|
|
110
|
-
mainType: string;
|
|
111
|
-
} | undefined;
|
|
112
|
-
};
|
|
113
|
-
}>;
|
|
114
|
-
}, import("redux").AnyAction, {
|
|
115
|
-
jApi: import("jamespot-user-api").JamespotUserApi;
|
|
116
|
-
}>[]>;
|
|
117
|
-
export declare type AppDispatch = ReturnType<typeof createStore>['dispatch'];
|
|
118
|
-
export declare type RootState = ReturnType<ReturnType<typeof createStore>['getState']>;
|
|
119
|
-
export declare const useAppDispatch: () => import("redux").Dispatch<import("redux").AnyAction>;
|
|
120
|
-
export declare const useAppSelector: TypedUseSelectorHook<RootState>;
|
|
121
|
-
export {};
|