jamespot-react-core 1.1.183 → 1.1.185

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.
Files changed (33) hide show
  1. package/build/724.843c4f66e67a00f149d5.chunk.js +561 -0
  2. package/build/724.843c4f66e67a00f149d5.chunk.js.map +1 -0
  3. package/build/app.bundle.js +653 -641
  4. package/build/app.bundle.js.map +1 -1
  5. package/build/socket.sharedworker.36b2317446c7c433029e.js.map +1 -1
  6. package/build/src/ReactCore.d.ts +10 -4
  7. package/build/src/components/widgets/wrapper/JRCWidgetDatasourceTableWrapper.d.ts +1 -1
  8. package/build/src/components/widgets/wrapper/JRCWidgetExcelDatasourceTableWrapper.d.ts +1 -1
  9. package/build/src/components/widgets/wrapper/utils.d.ts +2 -2
  10. package/build/src/displayer/DisplayForm.component.d.ts +1 -2
  11. package/build/src/displayer/types.d.ts +1 -0
  12. package/build/src/displayer/useDisplay.d.ts +1 -2
  13. package/build/src/initTinymce.d.ts +2 -0
  14. package/build/src/redux/store.d.ts +2644 -0
  15. package/build/src/registry/CommonRegistry.d.ts +2 -0
  16. package/build/src/registry/CoreRegistry.d.ts +2 -0
  17. package/build/src/registry/GlobalRegistry.d.ts +13 -0
  18. package/build/src/registry/ReactCommonRegistry.d.ts +13 -0
  19. package/build/src/registry/ReactCoreRegistry.d.ts +13 -0
  20. package/build/src/registry/index.d.ts +1 -0
  21. package/build/src/registry/types.common.d.ts +14 -0
  22. package/build/src/registry/types.core.d.ts +14 -0
  23. package/build/src/types.d.ts +2 -1
  24. package/build/src/utils/socket.d.ts +1 -1
  25. package/build/src/utils/types.d.ts +4 -50
  26. package/build/src/utils/types.socket.d.ts +48 -0
  27. package/build/tsconfig.tsbuildinfo +1 -0
  28. package/package.json +10 -10
  29. package/build/724.4e810912c9eacc41e4bb.chunk.js +0 -559
  30. package/build/724.4e810912c9eacc41e4bb.chunk.js.map +0 -1
  31. package/build/src/registry/ReactRegistry.d.ts +0 -13
  32. package/build/src/registry/Registry.d.ts +0 -2
  33. package/build/src/registry/types.d.ts +0 -31
@@ -0,0 +1,2644 @@
1
+ /// <reference types="react" />
2
+ import { Reducer } from '@reduxjs/toolkit';
3
+ import { Application, Comment, Hook, Model, Share, studio, TVDisplay, UserCurrent, WedocApp, Bookmark, MediaLibrary, MagicPad, jland, Faq, AssetReservation, Animations, AdminLogs, Widget, WidgetEditor } from 'jamespot-front-business';
4
+ import { ApplicationType, HookListType, jUserList, Model as ModelType, NetworkType, TinyMCECommonOptions, TinyMCEExtendedOptions } from 'jamespot-user-api';
5
+ import { ArticleActionsType, ArticleSelectorType } from './slice/Article.slice';
6
+ import { GenericActionsType } from './slice/Generic.actions';
7
+ import { UserActionsType, UsersSelectorType } from './slice/User.slice';
8
+ export interface JInjectStore extends ReturnType<typeof createStore> {
9
+ asyncReducers: AsyncReducers;
10
+ add: <T extends keyof Omit<AsyncReducers, 'extensions'>>(key: T, asyncReducer: AsyncReducers[T]) => void;
11
+ addExtensionStore: (key: string, asyncReducer: Reducer) => void;
12
+ selectors: {
13
+ article: ArticleSelectorType;
14
+ application: typeof Application.selectors;
15
+ model: typeof Model.selectors;
16
+ user: UsersSelectorType;
17
+ userCurrent: typeof UserCurrent.selectors;
18
+ hooks: typeof Hook.selectors;
19
+ };
20
+ actions: {
21
+ article: ArticleActionsType;
22
+ application: typeof Application.actions;
23
+ model: typeof Model.actions;
24
+ user: UserActionsType;
25
+ userCurrent: typeof UserCurrent.actions;
26
+ generic: GenericActionsType;
27
+ hooks: typeof Hook.actions;
28
+ };
29
+ }
30
+ export type AsyncReducers = {
31
+ [AdminLogs.slice.name]: typeof AdminLogs.slice.reducer;
32
+ [Animations.slice.name]: typeof Animations.slice.reducer;
33
+ [AssetReservation.slice.name]: typeof AssetReservation.slice.reducer;
34
+ [Bookmark.slice.name]: typeof Bookmark.slice.reducer;
35
+ [Comment.slice.name]: typeof Comment.slice.reducer;
36
+ [Faq.slice.name]: typeof Faq.slice.reducer;
37
+ [MagicPad.slice.name]: typeof MagicPad.slice.reducer;
38
+ [MediaLibrary.slice.name]: typeof MediaLibrary.slice.reducer;
39
+ [Share.slice.name]: typeof Share.slice.reducer;
40
+ [TVDisplay.slice.name]: typeof TVDisplay.slice.reducer;
41
+ [WedocApp.slice.name]: typeof WedocApp.slice.reducer;
42
+ [Widget.slice.name]: typeof Widget.slice.reducer;
43
+ [jland.slice.name]: typeof jland.slice.reducer;
44
+ [studio.slice.name]: typeof studio.slice.reducer;
45
+ [WidgetEditor.slice.name]: typeof WidgetEditor.slice.reducer;
46
+ } & {
47
+ extensions: {
48
+ [key: string]: Reducer;
49
+ };
50
+ };
51
+ declare const staticReducers: {
52
+ comment: Reducer<import("redux").CombinedState<{
53
+ commentList: import("jamespot-front-business").CommentListState;
54
+ }>, import("redux").AnyAction>;
55
+ entities: Reducer<import("redux").CombinedState<{
56
+ applications: import("@reduxjs/toolkit").EntityState<ApplicationType>;
57
+ models: import("@reduxjs/toolkit").EntityState<ModelType<string>>;
58
+ users: import("@reduxjs/toolkit").EntityState<import("./slice/User.slice").User>;
59
+ articles: import("@reduxjs/toolkit").EntityState<import("./slice/Article.slice").Article>;
60
+ }>, import("redux").AnyAction>;
61
+ form: Reducer<any, import("redux").AnyAction>;
62
+ hooks: Reducer<{}, import("redux").AnyAction>;
63
+ network: Reducer<import("redux").CombinedState<{
64
+ statics: {
65
+ networkPublic?: {
66
+ type: string;
67
+ mainType: string;
68
+ uri: string;
69
+ title: string;
70
+ } | undefined;
71
+ networkMe?: {
72
+ type: string;
73
+ mainType: string;
74
+ uri: string;
75
+ title: string;
76
+ } | undefined;
77
+ };
78
+ }>, import("redux").AnyAction>;
79
+ platform: Reducer<import("redux").CombinedState<{
80
+ config: {
81
+ userHighlightFields?: string[] | undefined;
82
+ userAccountStatus: 0 | 1;
83
+ };
84
+ }>, import("redux").AnyAction>;
85
+ toasts: Reducer<import("@reduxjs/toolkit").EntityState<{
86
+ id: string;
87
+ label: string | {
88
+ id: string;
89
+ values: {
90
+ [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;
91
+ };
92
+ };
93
+ description?: string | {
94
+ id: string;
95
+ values: {
96
+ [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;
97
+ };
98
+ } | undefined;
99
+ timeout: number;
100
+ type: "error" | "success" | "warning";
101
+ }>, import("redux").AnyAction>;
102
+ tinymce: Reducer<import("redux").CombinedState<{
103
+ options: {
104
+ common?: {
105
+ height: number;
106
+ language: string;
107
+ cache_suffix: string;
108
+ toolbar: string;
109
+ content_css: string;
110
+ quickbars_selection_toolbar: string;
111
+ plugins: string[];
112
+ text_patterns: {
113
+ start: string;
114
+ end?: string | undefined;
115
+ format?: string | undefined;
116
+ cmd?: string | undefined;
117
+ }[];
118
+ menubar: boolean;
119
+ branding: boolean;
120
+ skin: string;
121
+ convert_urls: boolean;
122
+ invalid_elements: string;
123
+ extended_valid_elements: string;
124
+ custom_elements: string;
125
+ inline_boundaries_selector: string;
126
+ toolbar_mode: "floating" | "sliding" | "scrolling" | "wrap";
127
+ promotion: boolean;
128
+ font_size_formats: string;
129
+ contextmenu: string | false;
130
+ paste_data_images: boolean;
131
+ browser_spellcheck: boolean;
132
+ quickbars_insert_toolbar: boolean;
133
+ license_key: "gpl";
134
+ sandbox_iframes?: boolean | undefined;
135
+ sandbox_iframes_exclusions?: string[] | undefined;
136
+ } | undefined;
137
+ extended?: {
138
+ commentsToolbar: string;
139
+ } | undefined;
140
+ };
141
+ }>, import("redux").AnyAction>;
142
+ userCurrent: Reducer<jUserList, import("redux").AnyAction>;
143
+ };
144
+ export declare function makeStore(jValues: {
145
+ tinymceCommonOptions: TinyMCECommonOptions;
146
+ tinymceExtendedOptions: TinyMCEExtendedOptions;
147
+ models: ModelType[];
148
+ applications: ApplicationType[];
149
+ networks: {
150
+ networkPublic: NetworkType;
151
+ networkMe: NetworkType;
152
+ };
153
+ platform: {
154
+ userAccountStatus: 0 | 1;
155
+ userHighlightFields: string[];
156
+ };
157
+ hooks: HookListType;
158
+ userCurrent: jUserList | undefined;
159
+ }): JInjectStore;
160
+ declare function createStore(initialAsyncReducers: AsyncReducers): import("@reduxjs/toolkit/dist/configureStore").ToolkitStore<import("redux").CombinedState<{
161
+ comment: import("redux").CombinedState<{
162
+ commentList: import("jamespot-front-business").CommentListState;
163
+ }>;
164
+ entities: import("redux").CombinedState<{
165
+ applications: import("@reduxjs/toolkit").EntityState<ApplicationType>;
166
+ models: import("@reduxjs/toolkit").EntityState<ModelType<string>>;
167
+ users: import("@reduxjs/toolkit").EntityState<import("./slice/User.slice").User>;
168
+ articles: import("@reduxjs/toolkit").EntityState<import("./slice/Article.slice").Article>;
169
+ }>;
170
+ form: any;
171
+ hooks: {};
172
+ network: import("redux").CombinedState<{
173
+ statics: {
174
+ networkPublic?: {
175
+ type: string;
176
+ mainType: string;
177
+ uri: string;
178
+ title: string;
179
+ } | undefined;
180
+ networkMe?: {
181
+ type: string;
182
+ mainType: string;
183
+ uri: string;
184
+ title: string;
185
+ } | undefined;
186
+ };
187
+ }>;
188
+ platform: import("redux").CombinedState<{
189
+ config: {
190
+ userHighlightFields?: string[] | undefined;
191
+ userAccountStatus: 0 | 1;
192
+ };
193
+ }>;
194
+ toasts: import("@reduxjs/toolkit").EntityState<{
195
+ id: string;
196
+ label: string | {
197
+ id: string;
198
+ values: {
199
+ [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;
200
+ };
201
+ };
202
+ description?: string | {
203
+ id: string;
204
+ values: {
205
+ [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;
206
+ };
207
+ } | undefined;
208
+ timeout: number;
209
+ type: "error" | "success" | "warning";
210
+ }>;
211
+ tinymce: import("redux").CombinedState<{
212
+ options: {
213
+ common?: {
214
+ height: number;
215
+ language: string;
216
+ cache_suffix: string;
217
+ toolbar: string;
218
+ content_css: string;
219
+ quickbars_selection_toolbar: string;
220
+ plugins: string[];
221
+ text_patterns: {
222
+ start: string;
223
+ end?: string | undefined;
224
+ format?: string | undefined;
225
+ cmd?: string | undefined;
226
+ }[];
227
+ menubar: boolean;
228
+ branding: boolean;
229
+ skin: string;
230
+ convert_urls: boolean;
231
+ invalid_elements: string;
232
+ extended_valid_elements: string;
233
+ custom_elements: string;
234
+ inline_boundaries_selector: string;
235
+ toolbar_mode: "floating" | "sliding" | "scrolling" | "wrap";
236
+ promotion: boolean;
237
+ font_size_formats: string;
238
+ contextmenu: string | false;
239
+ paste_data_images: boolean;
240
+ browser_spellcheck: boolean;
241
+ quickbars_insert_toolbar: boolean;
242
+ license_key: "gpl";
243
+ sandbox_iframes?: boolean | undefined;
244
+ sandbox_iframes_exclusions?: string[] | undefined;
245
+ } | undefined;
246
+ extended?: {
247
+ commentsToolbar: string;
248
+ } | undefined;
249
+ };
250
+ }>;
251
+ userCurrent: jUserList;
252
+ adminLogs: import("redux").CombinedState<{
253
+ logsNavigation: {
254
+ data: {
255
+ dateCreation: string;
256
+ url: string;
257
+ idUser: number;
258
+ level: number;
259
+ pseudo: string;
260
+ action: string;
261
+ ip: string;
262
+ extended?: string | undefined;
263
+ }[];
264
+ page: number;
265
+ filters: {
266
+ value: string | number | boolean | string[] | {
267
+ srcId: string | number;
268
+ srcType: string;
269
+ } | {
270
+ targetId: string | number;
271
+ targetType: string;
272
+ } | {
273
+ start: string;
274
+ end: string;
275
+ };
276
+ name: string;
277
+ operator?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | undefined;
278
+ method?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | "+" | "-" | undefined;
279
+ or?: boolean | undefined;
280
+ isNull?: boolean | undefined;
281
+ isNotNull?: boolean | undefined;
282
+ }[];
283
+ orders: {
284
+ sort: "ASC" | "DESC";
285
+ name: string;
286
+ }[];
287
+ limit: number;
288
+ nbResults: number;
289
+ } & {
290
+ loading: "idle" | "pending";
291
+ };
292
+ logsObjects: {
293
+ data: {
294
+ mainType: string;
295
+ dateCreation: string;
296
+ url: string;
297
+ action: string;
298
+ idObject: number;
299
+ typeObject: string;
300
+ mail?: string | undefined;
301
+ extended?: string | undefined;
302
+ }[];
303
+ page: number;
304
+ filters: {
305
+ value: string | number | boolean | string[] | {
306
+ srcId: string | number;
307
+ srcType: string;
308
+ } | {
309
+ targetId: string | number;
310
+ targetType: string;
311
+ } | {
312
+ start: string;
313
+ end: string;
314
+ };
315
+ name: string;
316
+ operator?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | undefined;
317
+ method?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | "+" | "-" | undefined;
318
+ or?: boolean | undefined;
319
+ isNull?: boolean | undefined;
320
+ isNotNull?: boolean | undefined;
321
+ }[];
322
+ orders: {
323
+ sort: "ASC" | "DESC";
324
+ name: string;
325
+ }[];
326
+ limit: number;
327
+ nbResults: number;
328
+ } & {
329
+ loading: "idle" | "pending";
330
+ };
331
+ logsSearch: {
332
+ data: {
333
+ type: string;
334
+ dateCreation: string;
335
+ msg: string;
336
+ }[];
337
+ page: number;
338
+ filters: {
339
+ value: string | number | boolean | string[] | {
340
+ srcId: string | number;
341
+ srcType: string;
342
+ } | {
343
+ targetId: string | number;
344
+ targetType: string;
345
+ } | {
346
+ start: string;
347
+ end: string;
348
+ };
349
+ name: string;
350
+ operator?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | undefined;
351
+ method?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | "+" | "-" | undefined;
352
+ or?: boolean | undefined;
353
+ isNull?: boolean | undefined;
354
+ isNotNull?: boolean | undefined;
355
+ }[];
356
+ orders: {
357
+ sort: "ASC" | "DESC";
358
+ name: string;
359
+ }[];
360
+ limit: number;
361
+ nbResults: number;
362
+ } & {
363
+ loading: "idle" | "pending";
364
+ };
365
+ }>;
366
+ animations: import("redux").CombinedState<{
367
+ animationsList: import("jamespot-front-business").AnimationSliceListState;
368
+ animationStats: import("jamespot-front-business").AnimationStatsSliceState;
369
+ animationStatsCurrent: import("jamespot-front-business").AnimationStatsCurrentSliceState;
370
+ }>;
371
+ assetReservation: import("redux").CombinedState<{
372
+ bookableAsset: import("jamespot-front-business").BookableAssetState;
373
+ configuration: import("jamespot-front-business").Configuration;
374
+ reservation: import("jamespot-front-business").ReservationState;
375
+ }>;
376
+ bookmark: import("redux").CombinedState<{
377
+ bookmarkList: import("jamespot-front-business").bookmarkListState;
378
+ bookmarkEdit: import("jamespot-front-business").bookmarkEditState;
379
+ }>;
380
+ faq: import("redux").CombinedState<{
381
+ config: {
382
+ loading: "idle" | "pending";
383
+ } & Partial<{
384
+ _web?: "" | "0" | "1" | undefined;
385
+ appImageText?: string | undefined;
386
+ appImage?: string | {
387
+ image: {
388
+ type: string;
389
+ id: string;
390
+ };
391
+ } | undefined;
392
+ _displayComment?: "" | "0" | "1" | undefined;
393
+ }> & {
394
+ access: {
395
+ createCategory: boolean;
396
+ };
397
+ };
398
+ categories: {
399
+ loading: "idle" | "pending";
400
+ } & {
401
+ categories: ({
402
+ type: "faq";
403
+ id: number;
404
+ mainType: string;
405
+ uri: string;
406
+ dateCreation: string;
407
+ dateModified: string;
408
+ title: string;
409
+ _url: string;
410
+ _user: import("jamespot-user-api").jObjectBase & {
411
+ title: string;
412
+ _url: string;
413
+ } & {
414
+ [key: string]: string | number | null;
415
+ level: 0 | 3 | 5 | 9;
416
+ dateCreation: string;
417
+ dateModified: string;
418
+ };
419
+ _right: import("jamespot-user-api").Rights;
420
+ _audience: (import("jamespot-user-api").jUserLittle | {
421
+ type: string;
422
+ id: number;
423
+ mainType: string;
424
+ uri: string;
425
+ dateCreation: string;
426
+ dateModified: string;
427
+ title: string;
428
+ _url: string;
429
+ privacy: import("jamespot-user-api").GroupPrivacy;
430
+ category: number;
431
+ } | {
432
+ type: "folder" | "rootFolder";
433
+ id: number;
434
+ mainType: string;
435
+ uri: string;
436
+ title: string;
437
+ _url: string;
438
+ dateCreation?: string | undefined;
439
+ dateModified?: string | null | undefined;
440
+ folderColor?: string | undefined;
441
+ })[];
442
+ description?: string | null | undefined;
443
+ image?: {
444
+ width: number;
445
+ height: number;
446
+ } | undefined;
447
+ articleWidgets?: import("jamespot-user-api").WidgetWrapperGeneric<({
448
+ layers?: string[] | undefined;
449
+ } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
450
+ layers?: string[] | undefined;
451
+ } & import("jamespot-user-api").WidgetArticleButtonType) | ({
452
+ layers?: string[] | undefined;
453
+ } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
454
+ layers?: string[] | undefined;
455
+ } & import("jamespot-user-api").WidgetArticleImageType) | ({
456
+ layers?: string[] | undefined;
457
+ } & import("jamespot-user-api").WidgetArticleTitleType) | ({
458
+ layers?: string[] | undefined;
459
+ } & import("jamespot-user-api").WidgetArticleTextType) | ({
460
+ layers?: string[] | undefined;
461
+ } & import("jamespot-user-api").WidgetArticleSliderType) | ({
462
+ layers?: string[] | undefined;
463
+ } & import("jamespot-user-api").WidgetType<{
464
+ widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
465
+ arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
466
+ css?: Record<string, string> | undefined;
467
+ edit?: boolean | undefined;
468
+ }>) | ({
469
+ layers?: string[] | undefined;
470
+ } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
471
+ layers?: string[] | undefined;
472
+ } & {
473
+ name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
474
+ uniqid: string;
475
+ content: {
476
+ uri?: string | undefined;
477
+ limit?: number | boolean | undefined;
478
+ tableColumnsData?: {
479
+ name?: string | undefined;
480
+ label?: string | undefined;
481
+ isVisible?: boolean | undefined;
482
+ textEllipsis?: boolean | undefined;
483
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
484
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
485
+ }[] | undefined;
486
+ tableHeadColor?: string | undefined;
487
+ tableHeadTextColor?: string | undefined;
488
+ tableHeadIconColor?: string | undefined;
489
+ tableRowColor?: string | undefined;
490
+ tableRowTextColor?: string | undefined;
491
+ tableBorderRadius?: number | undefined;
492
+ tableSizedColumns?: boolean | undefined;
493
+ tableSizedColumnsWidth?: number | undefined;
494
+ };
495
+ }) | ({
496
+ layers?: string[] | undefined;
497
+ } & import("jamespot-user-api").WidgetPresenceType) | ({
498
+ layers?: string[] | undefined;
499
+ } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
500
+ faqColor?: string | undefined;
501
+ } & {
502
+ _extend: {
503
+ itemsCount: number;
504
+ };
505
+ })[] | null;
506
+ };
507
+ }>;
508
+ magicPad: import("jamespot-front-business").MagicPadSliceRootState;
509
+ mediaLibrary: import("jamespot-front-business").MediaLibraryState;
510
+ share: {
511
+ entities: import("jamespot-user-api").jUserLittle[];
512
+ nbEntities: number;
513
+ loading: "idle" | "pending";
514
+ };
515
+ tvDisplay: import("redux").CombinedState<{
516
+ channelsList: {
517
+ loading: "idle" | "pending";
518
+ channels: import("jamespot-user-api").PagingResults<Readonly<import("jamespot-user-api").jObjectBase & {
519
+ title: string;
520
+ _url: string;
521
+ } & {
522
+ dateCreation: string;
523
+ dateModified: string;
524
+ } & {
525
+ description?: string | null | undefined;
526
+ _user: import("jamespot-user-api").jUserLittle;
527
+ _right: import("jamespot-user-api").Rights;
528
+ _audience: (import("jamespot-user-api").jUserLittle | {
529
+ type: string;
530
+ id: number;
531
+ mainType: string;
532
+ uri: string;
533
+ dateCreation: string;
534
+ dateModified: string;
535
+ title: string;
536
+ _url: string;
537
+ privacy: import("jamespot-user-api").GroupPrivacy;
538
+ category: number;
539
+ } | {
540
+ type: "folder" | "rootFolder";
541
+ id: number;
542
+ mainType: string;
543
+ uri: string;
544
+ title: string;
545
+ _url: string;
546
+ dateCreation?: string | undefined;
547
+ dateModified?: string | null | undefined;
548
+ folderColor?: string | undefined;
549
+ })[];
550
+ image?: {
551
+ width: number;
552
+ height: number;
553
+ } | undefined;
554
+ articleWidgets?: import("jamespot-user-api").WidgetWrapperGeneric<({
555
+ layers?: string[] | undefined;
556
+ } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
557
+ layers?: string[] | undefined;
558
+ } & import("jamespot-user-api").WidgetArticleButtonType) | ({
559
+ layers?: string[] | undefined;
560
+ } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
561
+ layers?: string[] | undefined;
562
+ } & import("jamespot-user-api").WidgetArticleImageType) | ({
563
+ layers?: string[] | undefined;
564
+ } & import("jamespot-user-api").WidgetArticleTitleType) | ({
565
+ layers?: string[] | undefined;
566
+ } & import("jamespot-user-api").WidgetArticleTextType) | ({
567
+ layers?: string[] | undefined;
568
+ } & import("jamespot-user-api").WidgetArticleSliderType) | ({
569
+ layers?: string[] | undefined;
570
+ } & import("jamespot-user-api").WidgetType<{
571
+ widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
572
+ arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
573
+ css?: Record<string, string> | undefined;
574
+ edit?: boolean | undefined;
575
+ }>) | ({
576
+ layers?: string[] | undefined;
577
+ } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
578
+ layers?: string[] | undefined;
579
+ } & {
580
+ name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
581
+ uniqid: string;
582
+ content: {
583
+ uri?: string | undefined;
584
+ limit?: number | boolean | undefined;
585
+ tableColumnsData?: {
586
+ name?: string | undefined;
587
+ label?: string | undefined;
588
+ isVisible?: boolean | undefined;
589
+ textEllipsis?: boolean | undefined;
590
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
591
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
592
+ }[] | undefined;
593
+ tableHeadColor?: string | undefined;
594
+ tableHeadTextColor?: string | undefined;
595
+ tableHeadIconColor?: string | undefined;
596
+ tableRowColor?: string | undefined;
597
+ tableRowTextColor?: string | undefined;
598
+ tableBorderRadius?: number | undefined;
599
+ tableSizedColumns?: boolean | undefined;
600
+ tableSizedColumnsWidth?: number | undefined;
601
+ };
602
+ }) | ({
603
+ layers?: string[] | undefined;
604
+ } & import("jamespot-user-api").WidgetPresenceType) | ({
605
+ layers?: string[] | undefined;
606
+ } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
607
+ } & {
608
+ type: string;
609
+ id: number;
610
+ mainType: string;
611
+ uri: string;
612
+ title: string;
613
+ _url: string;
614
+ _user: import("jamespot-user-api").jObjectBase & {
615
+ title: string;
616
+ _url: string;
617
+ } & {
618
+ [key: string]: string | number | null;
619
+ level: 0 | 3 | 5 | 9;
620
+ dateCreation: string;
621
+ dateModified: string;
622
+ };
623
+ _right: import("jamespot-user-api").Rights;
624
+ tvChannelType: "DYNAMIC";
625
+ tvChannelBackgroundColor: string | null;
626
+ tvChannelNumImages: 0;
627
+ tvChannelConfig: {
628
+ key: string;
629
+ backgroundType?: "image" | "color" | undefined;
630
+ globalShowComment?: boolean | undefined;
631
+ scaleImg?: boolean | undefined;
632
+ contents?: {
633
+ uri: string;
634
+ dateEnd?: string | undefined;
635
+ order?: number | undefined;
636
+ showComments?: boolean | undefined;
637
+ }[] | undefined;
638
+ };
639
+ dateCreation?: string | undefined;
640
+ dateModified?: string | null | undefined;
641
+ description?: string | null | undefined;
642
+ tvChannelGroupTarget?: {
643
+ type: string;
644
+ id: number;
645
+ mainType: string;
646
+ uri: string;
647
+ dateCreation: string;
648
+ dateModified: string;
649
+ title: string;
650
+ _url: string;
651
+ privacy: import("jamespot-user-api").GroupPrivacy;
652
+ category: number;
653
+ } | undefined;
654
+ }> | Readonly<import("jamespot-user-api").jObjectBase & {
655
+ title: string;
656
+ _url: string;
657
+ } & {
658
+ dateCreation: string;
659
+ dateModified: string;
660
+ } & {
661
+ description?: string | null | undefined;
662
+ _user: import("jamespot-user-api").jUserLittle;
663
+ _right: import("jamespot-user-api").Rights;
664
+ _audience: (import("jamespot-user-api").jUserLittle | {
665
+ type: string;
666
+ id: number;
667
+ mainType: string;
668
+ uri: string;
669
+ dateCreation: string;
670
+ dateModified: string;
671
+ title: string;
672
+ _url: string;
673
+ privacy: import("jamespot-user-api").GroupPrivacy;
674
+ category: number;
675
+ } | {
676
+ type: "folder" | "rootFolder";
677
+ id: number;
678
+ mainType: string;
679
+ uri: string;
680
+ title: string;
681
+ _url: string;
682
+ dateCreation?: string | undefined;
683
+ dateModified?: string | null | undefined;
684
+ folderColor?: string | undefined;
685
+ })[];
686
+ image?: {
687
+ width: number;
688
+ height: number;
689
+ } | undefined;
690
+ articleWidgets?: import("jamespot-user-api").WidgetWrapperGeneric<({
691
+ layers?: string[] | undefined;
692
+ } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
693
+ layers?: string[] | undefined;
694
+ } & import("jamespot-user-api").WidgetArticleButtonType) | ({
695
+ layers?: string[] | undefined;
696
+ } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
697
+ layers?: string[] | undefined;
698
+ } & import("jamespot-user-api").WidgetArticleImageType) | ({
699
+ layers?: string[] | undefined;
700
+ } & import("jamespot-user-api").WidgetArticleTitleType) | ({
701
+ layers?: string[] | undefined;
702
+ } & import("jamespot-user-api").WidgetArticleTextType) | ({
703
+ layers?: string[] | undefined;
704
+ } & import("jamespot-user-api").WidgetArticleSliderType) | ({
705
+ layers?: string[] | undefined;
706
+ } & import("jamespot-user-api").WidgetType<{
707
+ widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
708
+ arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
709
+ css?: Record<string, string> | undefined;
710
+ edit?: boolean | undefined;
711
+ }>) | ({
712
+ layers?: string[] | undefined;
713
+ } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
714
+ layers?: string[] | undefined;
715
+ } & {
716
+ name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
717
+ uniqid: string;
718
+ content: {
719
+ uri?: string | undefined;
720
+ limit?: number | boolean | undefined;
721
+ tableColumnsData?: {
722
+ name?: string | undefined;
723
+ label?: string | undefined;
724
+ isVisible?: boolean | undefined;
725
+ textEllipsis?: boolean | undefined;
726
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
727
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
728
+ }[] | undefined;
729
+ tableHeadColor?: string | undefined;
730
+ tableHeadTextColor?: string | undefined;
731
+ tableHeadIconColor?: string | undefined;
732
+ tableRowColor?: string | undefined;
733
+ tableRowTextColor?: string | undefined;
734
+ tableBorderRadius?: number | undefined;
735
+ tableSizedColumns?: boolean | undefined;
736
+ tableSizedColumnsWidth?: number | undefined;
737
+ };
738
+ }) | ({
739
+ layers?: string[] | undefined;
740
+ } & import("jamespot-user-api").WidgetPresenceType) | ({
741
+ layers?: string[] | undefined;
742
+ } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
743
+ } & {
744
+ type: string;
745
+ id: number;
746
+ mainType: string;
747
+ uri: string;
748
+ title: string;
749
+ _url: string;
750
+ _user: import("jamespot-user-api").jObjectBase & {
751
+ title: string;
752
+ _url: string;
753
+ } & {
754
+ [key: string]: string | number | null;
755
+ level: 0 | 3 | 5 | 9;
756
+ dateCreation: string;
757
+ dateModified: string;
758
+ };
759
+ _right: import("jamespot-user-api").Rights;
760
+ tvChannelType: "SLIDESHOW";
761
+ tvChannelBackgroundColor: string | null;
762
+ tvChannelNumImages: number;
763
+ tvChannelConfig: {
764
+ key: string;
765
+ backgroundType?: "image" | "color" | undefined;
766
+ globalShowComment?: boolean | undefined;
767
+ scaleImg?: boolean | undefined;
768
+ contents?: {
769
+ uri: string;
770
+ dateEnd?: string | undefined;
771
+ order?: number | undefined;
772
+ showComments?: boolean | undefined;
773
+ }[] | undefined;
774
+ };
775
+ dateCreation?: string | undefined;
776
+ dateModified?: string | null | undefined;
777
+ description?: string | null | undefined;
778
+ tvChannelGroupTarget?: {
779
+ type: string;
780
+ id: number;
781
+ mainType: string;
782
+ uri: string;
783
+ dateCreation: string;
784
+ dateModified: string;
785
+ title: string;
786
+ _url: string;
787
+ privacy: import("jamespot-user-api").GroupPrivacy;
788
+ category: number;
789
+ } | undefined;
790
+ }>> | undefined;
791
+ loadingChannelDeletion: "idle" | "pending";
792
+ };
793
+ }>;
794
+ wedoc: import("jamespot-front-business").WedocAppState;
795
+ widgets: {
796
+ layers: Record<string, {
797
+ title: string;
798
+ visible: boolean;
799
+ widgets: import("jamespot-user-api").WidgetWrapperGeneric<({
800
+ layers?: string[] | undefined;
801
+ } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
802
+ layers?: string[] | undefined;
803
+ } & import("jamespot-user-api").WidgetArticleButtonType) | ({
804
+ layers?: string[] | undefined;
805
+ } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
806
+ layers?: string[] | undefined;
807
+ } & import("jamespot-user-api").WidgetArticleImageType) | ({
808
+ layers?: string[] | undefined;
809
+ } & import("jamespot-user-api").WidgetArticleTitleType) | ({
810
+ layers?: string[] | undefined;
811
+ } & import("jamespot-user-api").WidgetArticleTextType) | ({
812
+ layers?: string[] | undefined;
813
+ } & import("jamespot-user-api").WidgetArticleSliderType) | ({
814
+ layers?: string[] | undefined;
815
+ } & import("jamespot-user-api").WidgetType<{
816
+ widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
817
+ arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
818
+ css?: Record<string, string> | undefined;
819
+ edit?: boolean | undefined;
820
+ }>) | ({
821
+ layers?: string[] | undefined;
822
+ } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
823
+ layers?: string[] | undefined;
824
+ } & {
825
+ name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
826
+ uniqid: string;
827
+ content: {
828
+ uri?: string | undefined;
829
+ limit?: number | boolean | undefined;
830
+ tableColumnsData?: {
831
+ name?: string | undefined;
832
+ label?: string | undefined;
833
+ isVisible?: boolean | undefined;
834
+ textEllipsis?: boolean | undefined;
835
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
836
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
837
+ }[] | undefined;
838
+ tableHeadColor?: string | undefined;
839
+ tableHeadTextColor?: string | undefined;
840
+ tableHeadIconColor?: string | undefined;
841
+ tableRowColor?: string | undefined;
842
+ tableRowTextColor?: string | undefined;
843
+ tableBorderRadius?: number | undefined;
844
+ tableSizedColumns?: boolean | undefined;
845
+ tableSizedColumnsWidth?: number | undefined;
846
+ };
847
+ }) | ({
848
+ layers?: string[] | undefined;
849
+ } & import("jamespot-user-api").WidgetPresenceType) | ({
850
+ layers?: string[] | undefined;
851
+ } & import("jamespot-user-api").WidgetQuickSurveyType)>[];
852
+ uniqid: string;
853
+ locked: boolean;
854
+ position?: {
855
+ x: number;
856
+ y: number;
857
+ } | undefined;
858
+ }>;
859
+ ids: Record<string, import("jamespot-user-api").WidgetWrapperGeneric<({
860
+ layers?: string[] | undefined;
861
+ } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
862
+ layers?: string[] | undefined;
863
+ } & import("jamespot-user-api").WidgetArticleButtonType) | ({
864
+ layers?: string[] | undefined;
865
+ } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
866
+ layers?: string[] | undefined;
867
+ } & import("jamespot-user-api").WidgetArticleImageType) | ({
868
+ layers?: string[] | undefined;
869
+ } & import("jamespot-user-api").WidgetArticleTitleType) | ({
870
+ layers?: string[] | undefined;
871
+ } & import("jamespot-user-api").WidgetArticleTextType) | ({
872
+ layers?: string[] | undefined;
873
+ } & import("jamespot-user-api").WidgetArticleSliderType) | ({
874
+ layers?: string[] | undefined;
875
+ } & import("jamespot-user-api").WidgetType<{
876
+ widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
877
+ arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
878
+ css?: Record<string, string> | undefined;
879
+ edit?: boolean | undefined;
880
+ }>) | ({
881
+ layers?: string[] | undefined;
882
+ } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
883
+ layers?: string[] | undefined;
884
+ } & {
885
+ name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
886
+ uniqid: string;
887
+ content: {
888
+ uri?: string | undefined;
889
+ limit?: number | boolean | undefined;
890
+ tableColumnsData?: {
891
+ name?: string | undefined;
892
+ label?: string | undefined;
893
+ isVisible?: boolean | undefined;
894
+ textEllipsis?: boolean | undefined;
895
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
896
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
897
+ }[] | undefined;
898
+ tableHeadColor?: string | undefined;
899
+ tableHeadTextColor?: string | undefined;
900
+ tableHeadIconColor?: string | undefined;
901
+ tableRowColor?: string | undefined;
902
+ tableRowTextColor?: string | undefined;
903
+ tableBorderRadius?: number | undefined;
904
+ tableSizedColumns?: boolean | undefined;
905
+ tableSizedColumnsWidth?: number | undefined;
906
+ };
907
+ }) | ({
908
+ layers?: string[] | undefined;
909
+ } & import("jamespot-user-api").WidgetPresenceType) | ({
910
+ layers?: string[] | undefined;
911
+ } & import("jamespot-user-api").WidgetQuickSurveyType)>>;
912
+ states: Record<string, {
913
+ busy?: boolean | undefined;
914
+ loading?: boolean | undefined;
915
+ initialized?: boolean | undefined;
916
+ mounted?: boolean | undefined;
917
+ hover?: boolean | undefined;
918
+ empty?: boolean | undefined;
919
+ locked?: boolean | undefined;
920
+ }>;
921
+ editableMap: Record<string, {
922
+ uniqid: string;
923
+ index: number;
924
+ }>;
925
+ currentEditableIndex: number;
926
+ widgetObject: Record<string, {
927
+ type?: string | undefined;
928
+ id?: number | undefined;
929
+ mainType?: string | undefined;
930
+ uri?: string | undefined;
931
+ dateCreation?: string | undefined;
932
+ dateModified?: string | null | undefined;
933
+ title?: string | undefined;
934
+ _url?: string | undefined;
935
+ }>;
936
+ widgetObjectRights: Record<string, import("jamespot-user-api").Rights>;
937
+ widgetAuthor: Record<string, {
938
+ type?: string | undefined;
939
+ id?: number | undefined;
940
+ mainType?: string | undefined;
941
+ uri?: string | undefined;
942
+ dateCreation?: string | undefined;
943
+ dateModified?: string | undefined;
944
+ title?: string | undefined;
945
+ _url?: string | undefined;
946
+ level?: 0 | 3 | 5 | 9 | undefined;
947
+ }>;
948
+ flushedWidgets: string[];
949
+ rtObjectStack: {
950
+ object: import("jamespot-user-api").jObjectBase & {
951
+ title: string;
952
+ _url: string;
953
+ };
954
+ uniqid: string;
955
+ fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
956
+ }[];
957
+ token?: string | undefined;
958
+ modal?: {
959
+ title?: string | undefined;
960
+ view?: any;
961
+ } | undefined;
962
+ currentEditableWidgetId?: string | undefined;
963
+ };
964
+ jland: import("redux").CombinedState<{
965
+ jLandMapList: {
966
+ maps: import("jamespot-front-business").JLandMapFront[];
967
+ availableLicenses: Record<string, number>;
968
+ loading: "idle" | "pending";
969
+ loadingAvailableLicenses: "idle" | "pending";
970
+ loadingLicenseOperation: {
971
+ [key: number]: "idle" | "pending" | undefined;
972
+ };
973
+ loadingMapDeletion: "idle" | "pending";
974
+ };
975
+ mapCreate: import("jamespot-front-business").MapCreateState;
976
+ }>;
977
+ studio: import("redux").CombinedState<{
978
+ studioAppsList: import("jamespot-front-business").StudioAppsListState;
979
+ currentStudioApp: import("jamespot-front-business").CurrentStudioAppState;
980
+ }>;
981
+ editors: import("jamespot-front-business").EditorsState;
982
+ extensions: import("redux").CombinedState<{
983
+ [x: string]: any;
984
+ }>;
985
+ }>, import("redux").AnyAction, import("@reduxjs/toolkit").MiddlewareArray<[import("@reduxjs/toolkit").ThunkMiddleware<import("redux").CombinedState<{
986
+ comment: import("redux").CombinedState<{
987
+ commentList: import("jamespot-front-business").CommentListState;
988
+ }>;
989
+ entities: import("redux").CombinedState<{
990
+ applications: import("@reduxjs/toolkit").EntityState<ApplicationType>;
991
+ models: import("@reduxjs/toolkit").EntityState<ModelType<string>>;
992
+ users: import("@reduxjs/toolkit").EntityState<import("./slice/User.slice").User>;
993
+ articles: import("@reduxjs/toolkit").EntityState<import("./slice/Article.slice").Article>;
994
+ }>;
995
+ form: any;
996
+ hooks: {};
997
+ network: import("redux").CombinedState<{
998
+ statics: {
999
+ networkPublic?: {
1000
+ type: string;
1001
+ mainType: string;
1002
+ uri: string;
1003
+ title: string;
1004
+ } | undefined;
1005
+ networkMe?: {
1006
+ type: string;
1007
+ mainType: string;
1008
+ uri: string;
1009
+ title: string;
1010
+ } | undefined;
1011
+ };
1012
+ }>;
1013
+ platform: import("redux").CombinedState<{
1014
+ config: {
1015
+ userHighlightFields?: string[] | undefined;
1016
+ userAccountStatus: 0 | 1;
1017
+ };
1018
+ }>;
1019
+ toasts: import("@reduxjs/toolkit").EntityState<{
1020
+ id: string;
1021
+ label: string | {
1022
+ id: string;
1023
+ values: {
1024
+ [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;
1025
+ };
1026
+ };
1027
+ description?: string | {
1028
+ id: string;
1029
+ values: {
1030
+ [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;
1031
+ };
1032
+ } | undefined;
1033
+ timeout: number;
1034
+ type: "error" | "success" | "warning";
1035
+ }>;
1036
+ tinymce: import("redux").CombinedState<{
1037
+ options: {
1038
+ common?: {
1039
+ height: number;
1040
+ language: string;
1041
+ cache_suffix: string;
1042
+ toolbar: string;
1043
+ content_css: string;
1044
+ quickbars_selection_toolbar: string;
1045
+ plugins: string[];
1046
+ text_patterns: {
1047
+ start: string;
1048
+ end?: string | undefined;
1049
+ format?: string | undefined;
1050
+ cmd?: string | undefined;
1051
+ }[];
1052
+ menubar: boolean;
1053
+ branding: boolean;
1054
+ skin: string;
1055
+ convert_urls: boolean;
1056
+ invalid_elements: string;
1057
+ extended_valid_elements: string;
1058
+ custom_elements: string;
1059
+ inline_boundaries_selector: string;
1060
+ toolbar_mode: "floating" | "sliding" | "scrolling" | "wrap";
1061
+ promotion: boolean;
1062
+ font_size_formats: string;
1063
+ contextmenu: string | false;
1064
+ paste_data_images: boolean;
1065
+ browser_spellcheck: boolean;
1066
+ quickbars_insert_toolbar: boolean;
1067
+ license_key: "gpl";
1068
+ sandbox_iframes?: boolean | undefined;
1069
+ sandbox_iframes_exclusions?: string[] | undefined;
1070
+ } | undefined;
1071
+ extended?: {
1072
+ commentsToolbar: string;
1073
+ } | undefined;
1074
+ };
1075
+ }>;
1076
+ userCurrent: jUserList;
1077
+ adminLogs: import("redux").CombinedState<{
1078
+ logsNavigation: {
1079
+ data: {
1080
+ dateCreation: string;
1081
+ url: string;
1082
+ idUser: number;
1083
+ level: number;
1084
+ pseudo: string;
1085
+ action: string;
1086
+ ip: string;
1087
+ extended?: string | undefined;
1088
+ }[];
1089
+ page: number;
1090
+ filters: {
1091
+ value: string | number | boolean | string[] | {
1092
+ srcId: string | number;
1093
+ srcType: string;
1094
+ } | {
1095
+ targetId: string | number;
1096
+ targetType: string;
1097
+ } | {
1098
+ start: string;
1099
+ end: string;
1100
+ };
1101
+ name: string;
1102
+ operator?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | undefined;
1103
+ method?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | "+" | "-" | undefined;
1104
+ or?: boolean | undefined;
1105
+ isNull?: boolean | undefined;
1106
+ isNotNull?: boolean | undefined;
1107
+ }[];
1108
+ orders: {
1109
+ sort: "ASC" | "DESC";
1110
+ name: string;
1111
+ }[];
1112
+ limit: number;
1113
+ nbResults: number;
1114
+ } & {
1115
+ loading: "idle" | "pending";
1116
+ };
1117
+ logsObjects: {
1118
+ data: {
1119
+ mainType: string;
1120
+ dateCreation: string;
1121
+ url: string;
1122
+ action: string;
1123
+ idObject: number;
1124
+ typeObject: string;
1125
+ mail?: string | undefined;
1126
+ extended?: string | undefined;
1127
+ }[];
1128
+ page: number;
1129
+ filters: {
1130
+ value: string | number | boolean | string[] | {
1131
+ srcId: string | number;
1132
+ srcType: string;
1133
+ } | {
1134
+ targetId: string | number;
1135
+ targetType: string;
1136
+ } | {
1137
+ start: string;
1138
+ end: string;
1139
+ };
1140
+ name: string;
1141
+ operator?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | undefined;
1142
+ method?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | "+" | "-" | undefined;
1143
+ or?: boolean | undefined;
1144
+ isNull?: boolean | undefined;
1145
+ isNotNull?: boolean | undefined;
1146
+ }[];
1147
+ orders: {
1148
+ sort: "ASC" | "DESC";
1149
+ name: string;
1150
+ }[];
1151
+ limit: number;
1152
+ nbResults: number;
1153
+ } & {
1154
+ loading: "idle" | "pending";
1155
+ };
1156
+ logsSearch: {
1157
+ data: {
1158
+ type: string;
1159
+ dateCreation: string;
1160
+ msg: string;
1161
+ }[];
1162
+ page: number;
1163
+ filters: {
1164
+ value: string | number | boolean | string[] | {
1165
+ srcId: string | number;
1166
+ srcType: string;
1167
+ } | {
1168
+ targetId: string | number;
1169
+ targetType: string;
1170
+ } | {
1171
+ start: string;
1172
+ end: string;
1173
+ };
1174
+ name: string;
1175
+ operator?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | undefined;
1176
+ method?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | "+" | "-" | undefined;
1177
+ or?: boolean | undefined;
1178
+ isNull?: boolean | undefined;
1179
+ isNotNull?: boolean | undefined;
1180
+ }[];
1181
+ orders: {
1182
+ sort: "ASC" | "DESC";
1183
+ name: string;
1184
+ }[];
1185
+ limit: number;
1186
+ nbResults: number;
1187
+ } & {
1188
+ loading: "idle" | "pending";
1189
+ };
1190
+ }>;
1191
+ animations: import("redux").CombinedState<{
1192
+ animationsList: import("jamespot-front-business").AnimationSliceListState;
1193
+ animationStats: import("jamespot-front-business").AnimationStatsSliceState;
1194
+ animationStatsCurrent: import("jamespot-front-business").AnimationStatsCurrentSliceState;
1195
+ }>;
1196
+ assetReservation: import("redux").CombinedState<{
1197
+ bookableAsset: import("jamespot-front-business").BookableAssetState;
1198
+ configuration: import("jamespot-front-business").Configuration;
1199
+ reservation: import("jamespot-front-business").ReservationState;
1200
+ }>;
1201
+ bookmark: import("redux").CombinedState<{
1202
+ bookmarkList: import("jamespot-front-business").bookmarkListState;
1203
+ bookmarkEdit: import("jamespot-front-business").bookmarkEditState;
1204
+ }>;
1205
+ faq: import("redux").CombinedState<{
1206
+ config: {
1207
+ loading: "idle" | "pending";
1208
+ } & Partial<{
1209
+ _web?: "" | "0" | "1" | undefined;
1210
+ appImageText?: string | undefined;
1211
+ appImage?: string | {
1212
+ image: {
1213
+ type: string;
1214
+ id: string;
1215
+ };
1216
+ } | undefined;
1217
+ _displayComment?: "" | "0" | "1" | undefined;
1218
+ }> & {
1219
+ access: {
1220
+ createCategory: boolean;
1221
+ };
1222
+ };
1223
+ categories: {
1224
+ loading: "idle" | "pending";
1225
+ } & {
1226
+ categories: ({
1227
+ type: "faq";
1228
+ id: number;
1229
+ mainType: string;
1230
+ uri: string;
1231
+ dateCreation: string;
1232
+ dateModified: string;
1233
+ title: string;
1234
+ _url: string;
1235
+ _user: import("jamespot-user-api").jObjectBase & {
1236
+ title: string;
1237
+ _url: string;
1238
+ } & {
1239
+ [key: string]: string | number | null;
1240
+ level: 0 | 3 | 5 | 9;
1241
+ dateCreation: string;
1242
+ dateModified: string;
1243
+ };
1244
+ _right: import("jamespot-user-api").Rights;
1245
+ _audience: (import("jamespot-user-api").jUserLittle | {
1246
+ type: string;
1247
+ id: number;
1248
+ mainType: string;
1249
+ uri: string;
1250
+ dateCreation: string;
1251
+ dateModified: string;
1252
+ title: string;
1253
+ _url: string;
1254
+ privacy: import("jamespot-user-api").GroupPrivacy;
1255
+ category: number;
1256
+ } | {
1257
+ type: "folder" | "rootFolder";
1258
+ id: number;
1259
+ mainType: string;
1260
+ uri: string;
1261
+ title: string;
1262
+ _url: string;
1263
+ dateCreation?: string | undefined;
1264
+ dateModified?: string | null | undefined;
1265
+ folderColor?: string | undefined;
1266
+ })[];
1267
+ description?: string | null | undefined;
1268
+ image?: {
1269
+ width: number;
1270
+ height: number;
1271
+ } | undefined;
1272
+ articleWidgets?: import("jamespot-user-api").WidgetWrapperGeneric<({
1273
+ layers?: string[] | undefined;
1274
+ } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
1275
+ layers?: string[] | undefined;
1276
+ } & import("jamespot-user-api").WidgetArticleButtonType) | ({
1277
+ layers?: string[] | undefined;
1278
+ } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
1279
+ layers?: string[] | undefined;
1280
+ } & import("jamespot-user-api").WidgetArticleImageType) | ({
1281
+ layers?: string[] | undefined;
1282
+ } & import("jamespot-user-api").WidgetArticleTitleType) | ({
1283
+ layers?: string[] | undefined;
1284
+ } & import("jamespot-user-api").WidgetArticleTextType) | ({
1285
+ layers?: string[] | undefined;
1286
+ } & import("jamespot-user-api").WidgetArticleSliderType) | ({
1287
+ layers?: string[] | undefined;
1288
+ } & import("jamespot-user-api").WidgetType<{
1289
+ widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
1290
+ arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
1291
+ css?: Record<string, string> | undefined;
1292
+ edit?: boolean | undefined;
1293
+ }>) | ({
1294
+ layers?: string[] | undefined;
1295
+ } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
1296
+ layers?: string[] | undefined;
1297
+ } & {
1298
+ name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
1299
+ uniqid: string;
1300
+ content: {
1301
+ uri?: string | undefined;
1302
+ limit?: number | boolean | undefined;
1303
+ tableColumnsData?: {
1304
+ name?: string | undefined;
1305
+ label?: string | undefined;
1306
+ isVisible?: boolean | undefined;
1307
+ textEllipsis?: boolean | undefined;
1308
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
1309
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
1310
+ }[] | undefined;
1311
+ tableHeadColor?: string | undefined;
1312
+ tableHeadTextColor?: string | undefined;
1313
+ tableHeadIconColor?: string | undefined;
1314
+ tableRowColor?: string | undefined;
1315
+ tableRowTextColor?: string | undefined;
1316
+ tableBorderRadius?: number | undefined;
1317
+ tableSizedColumns?: boolean | undefined;
1318
+ tableSizedColumnsWidth?: number | undefined;
1319
+ };
1320
+ }) | ({
1321
+ layers?: string[] | undefined;
1322
+ } & import("jamespot-user-api").WidgetPresenceType) | ({
1323
+ layers?: string[] | undefined;
1324
+ } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
1325
+ faqColor?: string | undefined;
1326
+ } & {
1327
+ _extend: {
1328
+ itemsCount: number;
1329
+ };
1330
+ })[] | null;
1331
+ };
1332
+ }>;
1333
+ magicPad: import("jamespot-front-business").MagicPadSliceRootState;
1334
+ mediaLibrary: import("jamespot-front-business").MediaLibraryState;
1335
+ share: {
1336
+ entities: import("jamespot-user-api").jUserLittle[];
1337
+ nbEntities: number;
1338
+ loading: "idle" | "pending";
1339
+ };
1340
+ tvDisplay: import("redux").CombinedState<{
1341
+ channelsList: {
1342
+ loading: "idle" | "pending";
1343
+ channels: import("jamespot-user-api").PagingResults<Readonly<import("jamespot-user-api").jObjectBase & {
1344
+ title: string;
1345
+ _url: string;
1346
+ } & {
1347
+ dateCreation: string;
1348
+ dateModified: string;
1349
+ } & {
1350
+ description?: string | null | undefined;
1351
+ _user: import("jamespot-user-api").jUserLittle;
1352
+ _right: import("jamespot-user-api").Rights;
1353
+ _audience: (import("jamespot-user-api").jUserLittle | {
1354
+ type: string;
1355
+ id: number;
1356
+ mainType: string;
1357
+ uri: string;
1358
+ dateCreation: string;
1359
+ dateModified: string;
1360
+ title: string;
1361
+ _url: string;
1362
+ privacy: import("jamespot-user-api").GroupPrivacy;
1363
+ category: number;
1364
+ } | {
1365
+ type: "folder" | "rootFolder";
1366
+ id: number;
1367
+ mainType: string;
1368
+ uri: string;
1369
+ title: string;
1370
+ _url: string;
1371
+ dateCreation?: string | undefined;
1372
+ dateModified?: string | null | undefined;
1373
+ folderColor?: string | undefined;
1374
+ })[];
1375
+ image?: {
1376
+ width: number;
1377
+ height: number;
1378
+ } | undefined;
1379
+ articleWidgets?: import("jamespot-user-api").WidgetWrapperGeneric<({
1380
+ layers?: string[] | undefined;
1381
+ } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
1382
+ layers?: string[] | undefined;
1383
+ } & import("jamespot-user-api").WidgetArticleButtonType) | ({
1384
+ layers?: string[] | undefined;
1385
+ } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
1386
+ layers?: string[] | undefined;
1387
+ } & import("jamespot-user-api").WidgetArticleImageType) | ({
1388
+ layers?: string[] | undefined;
1389
+ } & import("jamespot-user-api").WidgetArticleTitleType) | ({
1390
+ layers?: string[] | undefined;
1391
+ } & import("jamespot-user-api").WidgetArticleTextType) | ({
1392
+ layers?: string[] | undefined;
1393
+ } & import("jamespot-user-api").WidgetArticleSliderType) | ({
1394
+ layers?: string[] | undefined;
1395
+ } & import("jamespot-user-api").WidgetType<{
1396
+ widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
1397
+ arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
1398
+ css?: Record<string, string> | undefined;
1399
+ edit?: boolean | undefined;
1400
+ }>) | ({
1401
+ layers?: string[] | undefined;
1402
+ } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
1403
+ layers?: string[] | undefined;
1404
+ } & {
1405
+ name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
1406
+ uniqid: string;
1407
+ content: {
1408
+ uri?: string | undefined;
1409
+ limit?: number | boolean | undefined;
1410
+ tableColumnsData?: {
1411
+ name?: string | undefined;
1412
+ label?: string | undefined;
1413
+ isVisible?: boolean | undefined;
1414
+ textEllipsis?: boolean | undefined;
1415
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
1416
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
1417
+ }[] | undefined;
1418
+ tableHeadColor?: string | undefined;
1419
+ tableHeadTextColor?: string | undefined;
1420
+ tableHeadIconColor?: string | undefined;
1421
+ tableRowColor?: string | undefined;
1422
+ tableRowTextColor?: string | undefined;
1423
+ tableBorderRadius?: number | undefined;
1424
+ tableSizedColumns?: boolean | undefined;
1425
+ tableSizedColumnsWidth?: number | undefined;
1426
+ };
1427
+ }) | ({
1428
+ layers?: string[] | undefined;
1429
+ } & import("jamespot-user-api").WidgetPresenceType) | ({
1430
+ layers?: string[] | undefined;
1431
+ } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
1432
+ } & {
1433
+ type: string;
1434
+ id: number;
1435
+ mainType: string;
1436
+ uri: string;
1437
+ title: string;
1438
+ _url: string;
1439
+ _user: import("jamespot-user-api").jObjectBase & {
1440
+ title: string;
1441
+ _url: string;
1442
+ } & {
1443
+ [key: string]: string | number | null;
1444
+ level: 0 | 3 | 5 | 9;
1445
+ dateCreation: string;
1446
+ dateModified: string;
1447
+ };
1448
+ _right: import("jamespot-user-api").Rights;
1449
+ tvChannelType: "DYNAMIC";
1450
+ tvChannelBackgroundColor: string | null;
1451
+ tvChannelNumImages: 0;
1452
+ tvChannelConfig: {
1453
+ key: string;
1454
+ backgroundType?: "image" | "color" | undefined;
1455
+ globalShowComment?: boolean | undefined;
1456
+ scaleImg?: boolean | undefined;
1457
+ contents?: {
1458
+ uri: string;
1459
+ dateEnd?: string | undefined;
1460
+ order?: number | undefined;
1461
+ showComments?: boolean | undefined;
1462
+ }[] | undefined;
1463
+ };
1464
+ dateCreation?: string | undefined;
1465
+ dateModified?: string | null | undefined;
1466
+ description?: string | null | undefined;
1467
+ tvChannelGroupTarget?: {
1468
+ type: string;
1469
+ id: number;
1470
+ mainType: string;
1471
+ uri: string;
1472
+ dateCreation: string;
1473
+ dateModified: string;
1474
+ title: string;
1475
+ _url: string;
1476
+ privacy: import("jamespot-user-api").GroupPrivacy;
1477
+ category: number;
1478
+ } | undefined;
1479
+ }> | Readonly<import("jamespot-user-api").jObjectBase & {
1480
+ title: string;
1481
+ _url: string;
1482
+ } & {
1483
+ dateCreation: string;
1484
+ dateModified: string;
1485
+ } & {
1486
+ description?: string | null | undefined;
1487
+ _user: import("jamespot-user-api").jUserLittle;
1488
+ _right: import("jamespot-user-api").Rights;
1489
+ _audience: (import("jamespot-user-api").jUserLittle | {
1490
+ type: string;
1491
+ id: number;
1492
+ mainType: string;
1493
+ uri: string;
1494
+ dateCreation: string;
1495
+ dateModified: string;
1496
+ title: string;
1497
+ _url: string;
1498
+ privacy: import("jamespot-user-api").GroupPrivacy;
1499
+ category: number;
1500
+ } | {
1501
+ type: "folder" | "rootFolder";
1502
+ id: number;
1503
+ mainType: string;
1504
+ uri: string;
1505
+ title: string;
1506
+ _url: string;
1507
+ dateCreation?: string | undefined;
1508
+ dateModified?: string | null | undefined;
1509
+ folderColor?: string | undefined;
1510
+ })[];
1511
+ image?: {
1512
+ width: number;
1513
+ height: number;
1514
+ } | undefined;
1515
+ articleWidgets?: import("jamespot-user-api").WidgetWrapperGeneric<({
1516
+ layers?: string[] | undefined;
1517
+ } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
1518
+ layers?: string[] | undefined;
1519
+ } & import("jamespot-user-api").WidgetArticleButtonType) | ({
1520
+ layers?: string[] | undefined;
1521
+ } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
1522
+ layers?: string[] | undefined;
1523
+ } & import("jamespot-user-api").WidgetArticleImageType) | ({
1524
+ layers?: string[] | undefined;
1525
+ } & import("jamespot-user-api").WidgetArticleTitleType) | ({
1526
+ layers?: string[] | undefined;
1527
+ } & import("jamespot-user-api").WidgetArticleTextType) | ({
1528
+ layers?: string[] | undefined;
1529
+ } & import("jamespot-user-api").WidgetArticleSliderType) | ({
1530
+ layers?: string[] | undefined;
1531
+ } & import("jamespot-user-api").WidgetType<{
1532
+ widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
1533
+ arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
1534
+ css?: Record<string, string> | undefined;
1535
+ edit?: boolean | undefined;
1536
+ }>) | ({
1537
+ layers?: string[] | undefined;
1538
+ } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
1539
+ layers?: string[] | undefined;
1540
+ } & {
1541
+ name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
1542
+ uniqid: string;
1543
+ content: {
1544
+ uri?: string | undefined;
1545
+ limit?: number | boolean | undefined;
1546
+ tableColumnsData?: {
1547
+ name?: string | undefined;
1548
+ label?: string | undefined;
1549
+ isVisible?: boolean | undefined;
1550
+ textEllipsis?: boolean | undefined;
1551
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
1552
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
1553
+ }[] | undefined;
1554
+ tableHeadColor?: string | undefined;
1555
+ tableHeadTextColor?: string | undefined;
1556
+ tableHeadIconColor?: string | undefined;
1557
+ tableRowColor?: string | undefined;
1558
+ tableRowTextColor?: string | undefined;
1559
+ tableBorderRadius?: number | undefined;
1560
+ tableSizedColumns?: boolean | undefined;
1561
+ tableSizedColumnsWidth?: number | undefined;
1562
+ };
1563
+ }) | ({
1564
+ layers?: string[] | undefined;
1565
+ } & import("jamespot-user-api").WidgetPresenceType) | ({
1566
+ layers?: string[] | undefined;
1567
+ } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
1568
+ } & {
1569
+ type: string;
1570
+ id: number;
1571
+ mainType: string;
1572
+ uri: string;
1573
+ title: string;
1574
+ _url: string;
1575
+ _user: import("jamespot-user-api").jObjectBase & {
1576
+ title: string;
1577
+ _url: string;
1578
+ } & {
1579
+ [key: string]: string | number | null;
1580
+ level: 0 | 3 | 5 | 9;
1581
+ dateCreation: string;
1582
+ dateModified: string;
1583
+ };
1584
+ _right: import("jamespot-user-api").Rights;
1585
+ tvChannelType: "SLIDESHOW";
1586
+ tvChannelBackgroundColor: string | null;
1587
+ tvChannelNumImages: number;
1588
+ tvChannelConfig: {
1589
+ key: string;
1590
+ backgroundType?: "image" | "color" | undefined;
1591
+ globalShowComment?: boolean | undefined;
1592
+ scaleImg?: boolean | undefined;
1593
+ contents?: {
1594
+ uri: string;
1595
+ dateEnd?: string | undefined;
1596
+ order?: number | undefined;
1597
+ showComments?: boolean | undefined;
1598
+ }[] | undefined;
1599
+ };
1600
+ dateCreation?: string | undefined;
1601
+ dateModified?: string | null | undefined;
1602
+ description?: string | null | undefined;
1603
+ tvChannelGroupTarget?: {
1604
+ type: string;
1605
+ id: number;
1606
+ mainType: string;
1607
+ uri: string;
1608
+ dateCreation: string;
1609
+ dateModified: string;
1610
+ title: string;
1611
+ _url: string;
1612
+ privacy: import("jamespot-user-api").GroupPrivacy;
1613
+ category: number;
1614
+ } | undefined;
1615
+ }>> | undefined;
1616
+ loadingChannelDeletion: "idle" | "pending";
1617
+ };
1618
+ }>;
1619
+ wedoc: import("jamespot-front-business").WedocAppState;
1620
+ widgets: {
1621
+ layers: Record<string, {
1622
+ title: string;
1623
+ visible: boolean;
1624
+ widgets: import("jamespot-user-api").WidgetWrapperGeneric<({
1625
+ layers?: string[] | undefined;
1626
+ } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
1627
+ layers?: string[] | undefined;
1628
+ } & import("jamespot-user-api").WidgetArticleButtonType) | ({
1629
+ layers?: string[] | undefined;
1630
+ } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
1631
+ layers?: string[] | undefined;
1632
+ } & import("jamespot-user-api").WidgetArticleImageType) | ({
1633
+ layers?: string[] | undefined;
1634
+ } & import("jamespot-user-api").WidgetArticleTitleType) | ({
1635
+ layers?: string[] | undefined;
1636
+ } & import("jamespot-user-api").WidgetArticleTextType) | ({
1637
+ layers?: string[] | undefined;
1638
+ } & import("jamespot-user-api").WidgetArticleSliderType) | ({
1639
+ layers?: string[] | undefined;
1640
+ } & import("jamespot-user-api").WidgetType<{
1641
+ widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
1642
+ arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
1643
+ css?: Record<string, string> | undefined;
1644
+ edit?: boolean | undefined;
1645
+ }>) | ({
1646
+ layers?: string[] | undefined;
1647
+ } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
1648
+ layers?: string[] | undefined;
1649
+ } & {
1650
+ name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
1651
+ uniqid: string;
1652
+ content: {
1653
+ uri?: string | undefined;
1654
+ limit?: number | boolean | undefined;
1655
+ tableColumnsData?: {
1656
+ name?: string | undefined;
1657
+ label?: string | undefined;
1658
+ isVisible?: boolean | undefined;
1659
+ textEllipsis?: boolean | undefined;
1660
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
1661
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
1662
+ }[] | undefined;
1663
+ tableHeadColor?: string | undefined;
1664
+ tableHeadTextColor?: string | undefined;
1665
+ tableHeadIconColor?: string | undefined;
1666
+ tableRowColor?: string | undefined;
1667
+ tableRowTextColor?: string | undefined;
1668
+ tableBorderRadius?: number | undefined;
1669
+ tableSizedColumns?: boolean | undefined;
1670
+ tableSizedColumnsWidth?: number | undefined;
1671
+ };
1672
+ }) | ({
1673
+ layers?: string[] | undefined;
1674
+ } & import("jamespot-user-api").WidgetPresenceType) | ({
1675
+ layers?: string[] | undefined;
1676
+ } & import("jamespot-user-api").WidgetQuickSurveyType)>[];
1677
+ uniqid: string;
1678
+ locked: boolean;
1679
+ position?: {
1680
+ x: number;
1681
+ y: number;
1682
+ } | undefined;
1683
+ }>;
1684
+ ids: Record<string, import("jamespot-user-api").WidgetWrapperGeneric<({
1685
+ layers?: string[] | undefined;
1686
+ } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
1687
+ layers?: string[] | undefined;
1688
+ } & import("jamespot-user-api").WidgetArticleButtonType) | ({
1689
+ layers?: string[] | undefined;
1690
+ } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
1691
+ layers?: string[] | undefined;
1692
+ } & import("jamespot-user-api").WidgetArticleImageType) | ({
1693
+ layers?: string[] | undefined;
1694
+ } & import("jamespot-user-api").WidgetArticleTitleType) | ({
1695
+ layers?: string[] | undefined;
1696
+ } & import("jamespot-user-api").WidgetArticleTextType) | ({
1697
+ layers?: string[] | undefined;
1698
+ } & import("jamespot-user-api").WidgetArticleSliderType) | ({
1699
+ layers?: string[] | undefined;
1700
+ } & import("jamespot-user-api").WidgetType<{
1701
+ widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
1702
+ arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
1703
+ css?: Record<string, string> | undefined;
1704
+ edit?: boolean | undefined;
1705
+ }>) | ({
1706
+ layers?: string[] | undefined;
1707
+ } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
1708
+ layers?: string[] | undefined;
1709
+ } & {
1710
+ name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
1711
+ uniqid: string;
1712
+ content: {
1713
+ uri?: string | undefined;
1714
+ limit?: number | boolean | undefined;
1715
+ tableColumnsData?: {
1716
+ name?: string | undefined;
1717
+ label?: string | undefined;
1718
+ isVisible?: boolean | undefined;
1719
+ textEllipsis?: boolean | undefined;
1720
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
1721
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
1722
+ }[] | undefined;
1723
+ tableHeadColor?: string | undefined;
1724
+ tableHeadTextColor?: string | undefined;
1725
+ tableHeadIconColor?: string | undefined;
1726
+ tableRowColor?: string | undefined;
1727
+ tableRowTextColor?: string | undefined;
1728
+ tableBorderRadius?: number | undefined;
1729
+ tableSizedColumns?: boolean | undefined;
1730
+ tableSizedColumnsWidth?: number | undefined;
1731
+ };
1732
+ }) | ({
1733
+ layers?: string[] | undefined;
1734
+ } & import("jamespot-user-api").WidgetPresenceType) | ({
1735
+ layers?: string[] | undefined;
1736
+ } & import("jamespot-user-api").WidgetQuickSurveyType)>>;
1737
+ states: Record<string, {
1738
+ busy?: boolean | undefined;
1739
+ loading?: boolean | undefined;
1740
+ initialized?: boolean | undefined;
1741
+ mounted?: boolean | undefined;
1742
+ hover?: boolean | undefined;
1743
+ empty?: boolean | undefined;
1744
+ locked?: boolean | undefined;
1745
+ }>;
1746
+ editableMap: Record<string, {
1747
+ uniqid: string;
1748
+ index: number;
1749
+ }>;
1750
+ currentEditableIndex: number;
1751
+ widgetObject: Record<string, {
1752
+ type?: string | undefined;
1753
+ id?: number | undefined;
1754
+ mainType?: string | undefined;
1755
+ uri?: string | undefined;
1756
+ dateCreation?: string | undefined;
1757
+ dateModified?: string | null | undefined;
1758
+ title?: string | undefined;
1759
+ _url?: string | undefined;
1760
+ }>;
1761
+ widgetObjectRights: Record<string, import("jamespot-user-api").Rights>;
1762
+ widgetAuthor: Record<string, {
1763
+ type?: string | undefined;
1764
+ id?: number | undefined;
1765
+ mainType?: string | undefined;
1766
+ uri?: string | undefined;
1767
+ dateCreation?: string | undefined;
1768
+ dateModified?: string | undefined;
1769
+ title?: string | undefined;
1770
+ _url?: string | undefined;
1771
+ level?: 0 | 3 | 5 | 9 | undefined;
1772
+ }>;
1773
+ flushedWidgets: string[];
1774
+ rtObjectStack: {
1775
+ object: import("jamespot-user-api").jObjectBase & {
1776
+ title: string;
1777
+ _url: string;
1778
+ };
1779
+ uniqid: string;
1780
+ fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
1781
+ }[];
1782
+ token?: string | undefined;
1783
+ modal?: {
1784
+ title?: string | undefined;
1785
+ view?: any;
1786
+ } | undefined;
1787
+ currentEditableWidgetId?: string | undefined;
1788
+ };
1789
+ jland: import("redux").CombinedState<{
1790
+ jLandMapList: {
1791
+ maps: import("jamespot-front-business").JLandMapFront[];
1792
+ availableLicenses: Record<string, number>;
1793
+ loading: "idle" | "pending";
1794
+ loadingAvailableLicenses: "idle" | "pending";
1795
+ loadingLicenseOperation: {
1796
+ [key: number]: "idle" | "pending" | undefined;
1797
+ };
1798
+ loadingMapDeletion: "idle" | "pending";
1799
+ };
1800
+ mapCreate: import("jamespot-front-business").MapCreateState;
1801
+ }>;
1802
+ studio: import("redux").CombinedState<{
1803
+ studioAppsList: import("jamespot-front-business").StudioAppsListState;
1804
+ currentStudioApp: import("jamespot-front-business").CurrentStudioAppState;
1805
+ }>;
1806
+ editors: import("jamespot-front-business").EditorsState;
1807
+ extensions: import("redux").CombinedState<{
1808
+ [x: string]: any;
1809
+ }>;
1810
+ }>, import("redux").AnyAction, {
1811
+ jApi: import("jamespot-user-api").JamespotUserApi;
1812
+ }>, import("redux").Middleware<{}, any, import("redux").Dispatch<import("redux").AnyAction>>]>>;
1813
+ export type AppDispatch = ReturnType<typeof createStore>['dispatch'];
1814
+ export type RootState<T extends keyof AsyncReducers | keyof typeof staticReducers> = Required<Pick<ReturnType<ReturnType<typeof createStore>['getState']>, T>>;
1815
+ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispatch<import("redux").CombinedState<{
1816
+ comment: import("redux").CombinedState<{
1817
+ commentList: import("jamespot-front-business").CommentListState;
1818
+ }>;
1819
+ entities: import("redux").CombinedState<{
1820
+ applications: import("@reduxjs/toolkit").EntityState<ApplicationType>;
1821
+ models: import("@reduxjs/toolkit").EntityState<ModelType<string>>;
1822
+ users: import("@reduxjs/toolkit").EntityState<import("./slice/User.slice").User>;
1823
+ articles: import("@reduxjs/toolkit").EntityState<import("./slice/Article.slice").Article>;
1824
+ }>;
1825
+ form: any;
1826
+ hooks: {};
1827
+ network: import("redux").CombinedState<{
1828
+ statics: {
1829
+ networkPublic?: {
1830
+ type: string;
1831
+ mainType: string;
1832
+ uri: string;
1833
+ title: string;
1834
+ } | undefined;
1835
+ networkMe?: {
1836
+ type: string;
1837
+ mainType: string;
1838
+ uri: string;
1839
+ title: string;
1840
+ } | undefined;
1841
+ };
1842
+ }>;
1843
+ platform: import("redux").CombinedState<{
1844
+ config: {
1845
+ userHighlightFields?: string[] | undefined;
1846
+ userAccountStatus: 0 | 1;
1847
+ };
1848
+ }>;
1849
+ toasts: import("@reduxjs/toolkit").EntityState<{
1850
+ id: string;
1851
+ label: string | {
1852
+ id: string;
1853
+ values: {
1854
+ [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;
1855
+ };
1856
+ };
1857
+ description?: string | {
1858
+ id: string;
1859
+ values: {
1860
+ [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;
1861
+ };
1862
+ } | undefined;
1863
+ timeout: number;
1864
+ type: "error" | "success" | "warning";
1865
+ }>;
1866
+ tinymce: import("redux").CombinedState<{
1867
+ options: {
1868
+ common?: {
1869
+ height: number;
1870
+ language: string;
1871
+ cache_suffix: string;
1872
+ toolbar: string;
1873
+ content_css: string;
1874
+ quickbars_selection_toolbar: string;
1875
+ plugins: string[];
1876
+ text_patterns: {
1877
+ start: string;
1878
+ end?: string | undefined;
1879
+ format?: string | undefined;
1880
+ cmd?: string | undefined;
1881
+ }[];
1882
+ menubar: boolean;
1883
+ branding: boolean;
1884
+ skin: string;
1885
+ convert_urls: boolean;
1886
+ invalid_elements: string;
1887
+ extended_valid_elements: string;
1888
+ custom_elements: string;
1889
+ inline_boundaries_selector: string;
1890
+ toolbar_mode: "floating" | "sliding" | "scrolling" | "wrap";
1891
+ promotion: boolean;
1892
+ font_size_formats: string;
1893
+ contextmenu: string | false;
1894
+ paste_data_images: boolean;
1895
+ browser_spellcheck: boolean;
1896
+ quickbars_insert_toolbar: boolean;
1897
+ license_key: "gpl";
1898
+ sandbox_iframes?: boolean | undefined;
1899
+ sandbox_iframes_exclusions?: string[] | undefined;
1900
+ } | undefined;
1901
+ extended?: {
1902
+ commentsToolbar: string;
1903
+ } | undefined;
1904
+ };
1905
+ }>;
1906
+ userCurrent: jUserList;
1907
+ adminLogs: import("redux").CombinedState<{
1908
+ logsNavigation: {
1909
+ data: {
1910
+ dateCreation: string;
1911
+ url: string;
1912
+ idUser: number;
1913
+ level: number;
1914
+ pseudo: string;
1915
+ action: string;
1916
+ ip: string;
1917
+ extended?: string | undefined;
1918
+ }[];
1919
+ page: number;
1920
+ filters: {
1921
+ value: string | number | boolean | string[] | {
1922
+ srcId: string | number;
1923
+ srcType: string;
1924
+ } | {
1925
+ targetId: string | number;
1926
+ targetType: string;
1927
+ } | {
1928
+ start: string;
1929
+ end: string;
1930
+ };
1931
+ name: string;
1932
+ operator?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | undefined;
1933
+ method?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | "+" | "-" | undefined;
1934
+ or?: boolean | undefined;
1935
+ isNull?: boolean | undefined;
1936
+ isNotNull?: boolean | undefined;
1937
+ }[];
1938
+ orders: {
1939
+ sort: "ASC" | "DESC";
1940
+ name: string;
1941
+ }[];
1942
+ limit: number;
1943
+ nbResults: number;
1944
+ } & {
1945
+ loading: "idle" | "pending";
1946
+ };
1947
+ logsObjects: {
1948
+ data: {
1949
+ mainType: string;
1950
+ dateCreation: string;
1951
+ url: string;
1952
+ action: string;
1953
+ idObject: number;
1954
+ typeObject: string;
1955
+ mail?: string | undefined;
1956
+ extended?: string | undefined;
1957
+ }[];
1958
+ page: number;
1959
+ filters: {
1960
+ value: string | number | boolean | string[] | {
1961
+ srcId: string | number;
1962
+ srcType: string;
1963
+ } | {
1964
+ targetId: string | number;
1965
+ targetType: string;
1966
+ } | {
1967
+ start: string;
1968
+ end: string;
1969
+ };
1970
+ name: string;
1971
+ operator?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | undefined;
1972
+ method?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | "+" | "-" | undefined;
1973
+ or?: boolean | undefined;
1974
+ isNull?: boolean | undefined;
1975
+ isNotNull?: boolean | undefined;
1976
+ }[];
1977
+ orders: {
1978
+ sort: "ASC" | "DESC";
1979
+ name: string;
1980
+ }[];
1981
+ limit: number;
1982
+ nbResults: number;
1983
+ } & {
1984
+ loading: "idle" | "pending";
1985
+ };
1986
+ logsSearch: {
1987
+ data: {
1988
+ type: string;
1989
+ dateCreation: string;
1990
+ msg: string;
1991
+ }[];
1992
+ page: number;
1993
+ filters: {
1994
+ value: string | number | boolean | string[] | {
1995
+ srcId: string | number;
1996
+ srcType: string;
1997
+ } | {
1998
+ targetId: string | number;
1999
+ targetType: string;
2000
+ } | {
2001
+ start: string;
2002
+ end: string;
2003
+ };
2004
+ name: string;
2005
+ operator?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | undefined;
2006
+ method?: "match" | "link" | "is" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is not" | "in" | "equal" | "+" | "-" | undefined;
2007
+ or?: boolean | undefined;
2008
+ isNull?: boolean | undefined;
2009
+ isNotNull?: boolean | undefined;
2010
+ }[];
2011
+ orders: {
2012
+ sort: "ASC" | "DESC";
2013
+ name: string;
2014
+ }[];
2015
+ limit: number;
2016
+ nbResults: number;
2017
+ } & {
2018
+ loading: "idle" | "pending";
2019
+ };
2020
+ }>;
2021
+ animations: import("redux").CombinedState<{
2022
+ animationsList: import("jamespot-front-business").AnimationSliceListState;
2023
+ animationStats: import("jamespot-front-business").AnimationStatsSliceState;
2024
+ animationStatsCurrent: import("jamespot-front-business").AnimationStatsCurrentSliceState;
2025
+ }>;
2026
+ assetReservation: import("redux").CombinedState<{
2027
+ bookableAsset: import("jamespot-front-business").BookableAssetState;
2028
+ configuration: import("jamespot-front-business").Configuration;
2029
+ reservation: import("jamespot-front-business").ReservationState;
2030
+ }>;
2031
+ bookmark: import("redux").CombinedState<{
2032
+ bookmarkList: import("jamespot-front-business").bookmarkListState;
2033
+ bookmarkEdit: import("jamespot-front-business").bookmarkEditState;
2034
+ }>;
2035
+ faq: import("redux").CombinedState<{
2036
+ config: {
2037
+ loading: "idle" | "pending";
2038
+ } & Partial<{
2039
+ _web?: "" | "0" | "1" | undefined;
2040
+ appImageText?: string | undefined;
2041
+ appImage?: string | {
2042
+ image: {
2043
+ type: string;
2044
+ id: string;
2045
+ };
2046
+ } | undefined;
2047
+ _displayComment?: "" | "0" | "1" | undefined;
2048
+ }> & {
2049
+ access: {
2050
+ createCategory: boolean;
2051
+ };
2052
+ };
2053
+ categories: {
2054
+ loading: "idle" | "pending";
2055
+ } & {
2056
+ categories: ({
2057
+ type: "faq";
2058
+ id: number;
2059
+ mainType: string;
2060
+ uri: string;
2061
+ dateCreation: string;
2062
+ dateModified: string;
2063
+ title: string;
2064
+ _url: string;
2065
+ _user: import("jamespot-user-api").jObjectBase & {
2066
+ title: string;
2067
+ _url: string;
2068
+ } & {
2069
+ [key: string]: string | number | null;
2070
+ level: 0 | 3 | 5 | 9;
2071
+ dateCreation: string;
2072
+ dateModified: string;
2073
+ };
2074
+ _right: import("jamespot-user-api").Rights;
2075
+ _audience: (import("jamespot-user-api").jUserLittle | {
2076
+ type: string;
2077
+ id: number;
2078
+ mainType: string;
2079
+ uri: string;
2080
+ dateCreation: string;
2081
+ dateModified: string;
2082
+ title: string;
2083
+ _url: string;
2084
+ privacy: import("jamespot-user-api").GroupPrivacy;
2085
+ category: number;
2086
+ } | {
2087
+ type: "folder" | "rootFolder";
2088
+ id: number;
2089
+ mainType: string;
2090
+ uri: string;
2091
+ title: string;
2092
+ _url: string;
2093
+ dateCreation?: string | undefined;
2094
+ dateModified?: string | null | undefined;
2095
+ folderColor?: string | undefined;
2096
+ })[];
2097
+ description?: string | null | undefined;
2098
+ image?: {
2099
+ width: number;
2100
+ height: number;
2101
+ } | undefined;
2102
+ articleWidgets?: import("jamespot-user-api").WidgetWrapperGeneric<({
2103
+ layers?: string[] | undefined;
2104
+ } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
2105
+ layers?: string[] | undefined;
2106
+ } & import("jamespot-user-api").WidgetArticleButtonType) | ({
2107
+ layers?: string[] | undefined;
2108
+ } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
2109
+ layers?: string[] | undefined;
2110
+ } & import("jamespot-user-api").WidgetArticleImageType) | ({
2111
+ layers?: string[] | undefined;
2112
+ } & import("jamespot-user-api").WidgetArticleTitleType) | ({
2113
+ layers?: string[] | undefined;
2114
+ } & import("jamespot-user-api").WidgetArticleTextType) | ({
2115
+ layers?: string[] | undefined;
2116
+ } & import("jamespot-user-api").WidgetArticleSliderType) | ({
2117
+ layers?: string[] | undefined;
2118
+ } & import("jamespot-user-api").WidgetType<{
2119
+ widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
2120
+ arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
2121
+ css?: Record<string, string> | undefined;
2122
+ edit?: boolean | undefined;
2123
+ }>) | ({
2124
+ layers?: string[] | undefined;
2125
+ } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
2126
+ layers?: string[] | undefined;
2127
+ } & {
2128
+ name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
2129
+ uniqid: string;
2130
+ content: {
2131
+ uri?: string | undefined;
2132
+ limit?: number | boolean | undefined;
2133
+ tableColumnsData?: {
2134
+ name?: string | undefined;
2135
+ label?: string | undefined;
2136
+ isVisible?: boolean | undefined;
2137
+ textEllipsis?: boolean | undefined;
2138
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
2139
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
2140
+ }[] | undefined;
2141
+ tableHeadColor?: string | undefined;
2142
+ tableHeadTextColor?: string | undefined;
2143
+ tableHeadIconColor?: string | undefined;
2144
+ tableRowColor?: string | undefined;
2145
+ tableRowTextColor?: string | undefined;
2146
+ tableBorderRadius?: number | undefined;
2147
+ tableSizedColumns?: boolean | undefined;
2148
+ tableSizedColumnsWidth?: number | undefined;
2149
+ };
2150
+ }) | ({
2151
+ layers?: string[] | undefined;
2152
+ } & import("jamespot-user-api").WidgetPresenceType) | ({
2153
+ layers?: string[] | undefined;
2154
+ } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
2155
+ faqColor?: string | undefined;
2156
+ } & {
2157
+ _extend: {
2158
+ itemsCount: number;
2159
+ };
2160
+ })[] | null;
2161
+ };
2162
+ }>;
2163
+ magicPad: import("jamespot-front-business").MagicPadSliceRootState;
2164
+ mediaLibrary: import("jamespot-front-business").MediaLibraryState;
2165
+ share: {
2166
+ entities: import("jamespot-user-api").jUserLittle[];
2167
+ nbEntities: number;
2168
+ loading: "idle" | "pending";
2169
+ };
2170
+ tvDisplay: import("redux").CombinedState<{
2171
+ channelsList: {
2172
+ loading: "idle" | "pending";
2173
+ channels: import("jamespot-user-api").PagingResults<Readonly<import("jamespot-user-api").jObjectBase & {
2174
+ title: string;
2175
+ _url: string;
2176
+ } & {
2177
+ dateCreation: string;
2178
+ dateModified: string;
2179
+ } & {
2180
+ description?: string | null | undefined;
2181
+ _user: import("jamespot-user-api").jUserLittle;
2182
+ _right: import("jamespot-user-api").Rights;
2183
+ _audience: (import("jamespot-user-api").jUserLittle | {
2184
+ type: string;
2185
+ id: number;
2186
+ mainType: string;
2187
+ uri: string;
2188
+ dateCreation: string;
2189
+ dateModified: string;
2190
+ title: string;
2191
+ _url: string;
2192
+ privacy: import("jamespot-user-api").GroupPrivacy;
2193
+ category: number;
2194
+ } | {
2195
+ type: "folder" | "rootFolder";
2196
+ id: number;
2197
+ mainType: string;
2198
+ uri: string;
2199
+ title: string;
2200
+ _url: string;
2201
+ dateCreation?: string | undefined;
2202
+ dateModified?: string | null | undefined;
2203
+ folderColor?: string | undefined;
2204
+ })[];
2205
+ image?: {
2206
+ width: number;
2207
+ height: number;
2208
+ } | undefined;
2209
+ articleWidgets?: import("jamespot-user-api").WidgetWrapperGeneric<({
2210
+ layers?: string[] | undefined;
2211
+ } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
2212
+ layers?: string[] | undefined;
2213
+ } & import("jamespot-user-api").WidgetArticleButtonType) | ({
2214
+ layers?: string[] | undefined;
2215
+ } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
2216
+ layers?: string[] | undefined;
2217
+ } & import("jamespot-user-api").WidgetArticleImageType) | ({
2218
+ layers?: string[] | undefined;
2219
+ } & import("jamespot-user-api").WidgetArticleTitleType) | ({
2220
+ layers?: string[] | undefined;
2221
+ } & import("jamespot-user-api").WidgetArticleTextType) | ({
2222
+ layers?: string[] | undefined;
2223
+ } & import("jamespot-user-api").WidgetArticleSliderType) | ({
2224
+ layers?: string[] | undefined;
2225
+ } & import("jamespot-user-api").WidgetType<{
2226
+ widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
2227
+ arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
2228
+ css?: Record<string, string> | undefined;
2229
+ edit?: boolean | undefined;
2230
+ }>) | ({
2231
+ layers?: string[] | undefined;
2232
+ } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
2233
+ layers?: string[] | undefined;
2234
+ } & {
2235
+ name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
2236
+ uniqid: string;
2237
+ content: {
2238
+ uri?: string | undefined;
2239
+ limit?: number | boolean | undefined;
2240
+ tableColumnsData?: {
2241
+ name?: string | undefined;
2242
+ label?: string | undefined;
2243
+ isVisible?: boolean | undefined;
2244
+ textEllipsis?: boolean | undefined;
2245
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
2246
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
2247
+ }[] | undefined;
2248
+ tableHeadColor?: string | undefined;
2249
+ tableHeadTextColor?: string | undefined;
2250
+ tableHeadIconColor?: string | undefined;
2251
+ tableRowColor?: string | undefined;
2252
+ tableRowTextColor?: string | undefined;
2253
+ tableBorderRadius?: number | undefined;
2254
+ tableSizedColumns?: boolean | undefined;
2255
+ tableSizedColumnsWidth?: number | undefined;
2256
+ };
2257
+ }) | ({
2258
+ layers?: string[] | undefined;
2259
+ } & import("jamespot-user-api").WidgetPresenceType) | ({
2260
+ layers?: string[] | undefined;
2261
+ } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
2262
+ } & {
2263
+ type: string;
2264
+ id: number;
2265
+ mainType: string;
2266
+ uri: string;
2267
+ title: string;
2268
+ _url: string;
2269
+ _user: import("jamespot-user-api").jObjectBase & {
2270
+ title: string;
2271
+ _url: string;
2272
+ } & {
2273
+ [key: string]: string | number | null;
2274
+ level: 0 | 3 | 5 | 9;
2275
+ dateCreation: string;
2276
+ dateModified: string;
2277
+ };
2278
+ _right: import("jamespot-user-api").Rights;
2279
+ tvChannelType: "DYNAMIC";
2280
+ tvChannelBackgroundColor: string | null;
2281
+ tvChannelNumImages: 0;
2282
+ tvChannelConfig: {
2283
+ key: string;
2284
+ backgroundType?: "image" | "color" | undefined;
2285
+ globalShowComment?: boolean | undefined;
2286
+ scaleImg?: boolean | undefined;
2287
+ contents?: {
2288
+ uri: string;
2289
+ dateEnd?: string | undefined;
2290
+ order?: number | undefined;
2291
+ showComments?: boolean | undefined;
2292
+ }[] | undefined;
2293
+ };
2294
+ dateCreation?: string | undefined;
2295
+ dateModified?: string | null | undefined;
2296
+ description?: string | null | undefined;
2297
+ tvChannelGroupTarget?: {
2298
+ type: string;
2299
+ id: number;
2300
+ mainType: string;
2301
+ uri: string;
2302
+ dateCreation: string;
2303
+ dateModified: string;
2304
+ title: string;
2305
+ _url: string;
2306
+ privacy: import("jamespot-user-api").GroupPrivacy;
2307
+ category: number;
2308
+ } | undefined;
2309
+ }> | Readonly<import("jamespot-user-api").jObjectBase & {
2310
+ title: string;
2311
+ _url: string;
2312
+ } & {
2313
+ dateCreation: string;
2314
+ dateModified: string;
2315
+ } & {
2316
+ description?: string | null | undefined;
2317
+ _user: import("jamespot-user-api").jUserLittle;
2318
+ _right: import("jamespot-user-api").Rights;
2319
+ _audience: (import("jamespot-user-api").jUserLittle | {
2320
+ type: string;
2321
+ id: number;
2322
+ mainType: string;
2323
+ uri: string;
2324
+ dateCreation: string;
2325
+ dateModified: string;
2326
+ title: string;
2327
+ _url: string;
2328
+ privacy: import("jamespot-user-api").GroupPrivacy;
2329
+ category: number;
2330
+ } | {
2331
+ type: "folder" | "rootFolder";
2332
+ id: number;
2333
+ mainType: string;
2334
+ uri: string;
2335
+ title: string;
2336
+ _url: string;
2337
+ dateCreation?: string | undefined;
2338
+ dateModified?: string | null | undefined;
2339
+ folderColor?: string | undefined;
2340
+ })[];
2341
+ image?: {
2342
+ width: number;
2343
+ height: number;
2344
+ } | undefined;
2345
+ articleWidgets?: import("jamespot-user-api").WidgetWrapperGeneric<({
2346
+ layers?: string[] | undefined;
2347
+ } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
2348
+ layers?: string[] | undefined;
2349
+ } & import("jamespot-user-api").WidgetArticleButtonType) | ({
2350
+ layers?: string[] | undefined;
2351
+ } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
2352
+ layers?: string[] | undefined;
2353
+ } & import("jamespot-user-api").WidgetArticleImageType) | ({
2354
+ layers?: string[] | undefined;
2355
+ } & import("jamespot-user-api").WidgetArticleTitleType) | ({
2356
+ layers?: string[] | undefined;
2357
+ } & import("jamespot-user-api").WidgetArticleTextType) | ({
2358
+ layers?: string[] | undefined;
2359
+ } & import("jamespot-user-api").WidgetArticleSliderType) | ({
2360
+ layers?: string[] | undefined;
2361
+ } & import("jamespot-user-api").WidgetType<{
2362
+ widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
2363
+ arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
2364
+ css?: Record<string, string> | undefined;
2365
+ edit?: boolean | undefined;
2366
+ }>) | ({
2367
+ layers?: string[] | undefined;
2368
+ } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
2369
+ layers?: string[] | undefined;
2370
+ } & {
2371
+ name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
2372
+ uniqid: string;
2373
+ content: {
2374
+ uri?: string | undefined;
2375
+ limit?: number | boolean | undefined;
2376
+ tableColumnsData?: {
2377
+ name?: string | undefined;
2378
+ label?: string | undefined;
2379
+ isVisible?: boolean | undefined;
2380
+ textEllipsis?: boolean | undefined;
2381
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
2382
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
2383
+ }[] | undefined;
2384
+ tableHeadColor?: string | undefined;
2385
+ tableHeadTextColor?: string | undefined;
2386
+ tableHeadIconColor?: string | undefined;
2387
+ tableRowColor?: string | undefined;
2388
+ tableRowTextColor?: string | undefined;
2389
+ tableBorderRadius?: number | undefined;
2390
+ tableSizedColumns?: boolean | undefined;
2391
+ tableSizedColumnsWidth?: number | undefined;
2392
+ };
2393
+ }) | ({
2394
+ layers?: string[] | undefined;
2395
+ } & import("jamespot-user-api").WidgetPresenceType) | ({
2396
+ layers?: string[] | undefined;
2397
+ } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
2398
+ } & {
2399
+ type: string;
2400
+ id: number;
2401
+ mainType: string;
2402
+ uri: string;
2403
+ title: string;
2404
+ _url: string;
2405
+ _user: import("jamespot-user-api").jObjectBase & {
2406
+ title: string;
2407
+ _url: string;
2408
+ } & {
2409
+ [key: string]: string | number | null;
2410
+ level: 0 | 3 | 5 | 9;
2411
+ dateCreation: string;
2412
+ dateModified: string;
2413
+ };
2414
+ _right: import("jamespot-user-api").Rights;
2415
+ tvChannelType: "SLIDESHOW";
2416
+ tvChannelBackgroundColor: string | null;
2417
+ tvChannelNumImages: number;
2418
+ tvChannelConfig: {
2419
+ key: string;
2420
+ backgroundType?: "image" | "color" | undefined;
2421
+ globalShowComment?: boolean | undefined;
2422
+ scaleImg?: boolean | undefined;
2423
+ contents?: {
2424
+ uri: string;
2425
+ dateEnd?: string | undefined;
2426
+ order?: number | undefined;
2427
+ showComments?: boolean | undefined;
2428
+ }[] | undefined;
2429
+ };
2430
+ dateCreation?: string | undefined;
2431
+ dateModified?: string | null | undefined;
2432
+ description?: string | null | undefined;
2433
+ tvChannelGroupTarget?: {
2434
+ type: string;
2435
+ id: number;
2436
+ mainType: string;
2437
+ uri: string;
2438
+ dateCreation: string;
2439
+ dateModified: string;
2440
+ title: string;
2441
+ _url: string;
2442
+ privacy: import("jamespot-user-api").GroupPrivacy;
2443
+ category: number;
2444
+ } | undefined;
2445
+ }>> | undefined;
2446
+ loadingChannelDeletion: "idle" | "pending";
2447
+ };
2448
+ }>;
2449
+ wedoc: import("jamespot-front-business").WedocAppState;
2450
+ widgets: {
2451
+ layers: Record<string, {
2452
+ title: string;
2453
+ visible: boolean;
2454
+ widgets: import("jamespot-user-api").WidgetWrapperGeneric<({
2455
+ layers?: string[] | undefined;
2456
+ } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
2457
+ layers?: string[] | undefined;
2458
+ } & import("jamespot-user-api").WidgetArticleButtonType) | ({
2459
+ layers?: string[] | undefined;
2460
+ } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
2461
+ layers?: string[] | undefined;
2462
+ } & import("jamespot-user-api").WidgetArticleImageType) | ({
2463
+ layers?: string[] | undefined;
2464
+ } & import("jamespot-user-api").WidgetArticleTitleType) | ({
2465
+ layers?: string[] | undefined;
2466
+ } & import("jamespot-user-api").WidgetArticleTextType) | ({
2467
+ layers?: string[] | undefined;
2468
+ } & import("jamespot-user-api").WidgetArticleSliderType) | ({
2469
+ layers?: string[] | undefined;
2470
+ } & import("jamespot-user-api").WidgetType<{
2471
+ widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
2472
+ arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
2473
+ css?: Record<string, string> | undefined;
2474
+ edit?: boolean | undefined;
2475
+ }>) | ({
2476
+ layers?: string[] | undefined;
2477
+ } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
2478
+ layers?: string[] | undefined;
2479
+ } & {
2480
+ name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
2481
+ uniqid: string;
2482
+ content: {
2483
+ uri?: string | undefined;
2484
+ limit?: number | boolean | undefined;
2485
+ tableColumnsData?: {
2486
+ name?: string | undefined;
2487
+ label?: string | undefined;
2488
+ isVisible?: boolean | undefined;
2489
+ textEllipsis?: boolean | undefined;
2490
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
2491
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
2492
+ }[] | undefined;
2493
+ tableHeadColor?: string | undefined;
2494
+ tableHeadTextColor?: string | undefined;
2495
+ tableHeadIconColor?: string | undefined;
2496
+ tableRowColor?: string | undefined;
2497
+ tableRowTextColor?: string | undefined;
2498
+ tableBorderRadius?: number | undefined;
2499
+ tableSizedColumns?: boolean | undefined;
2500
+ tableSizedColumnsWidth?: number | undefined;
2501
+ };
2502
+ }) | ({
2503
+ layers?: string[] | undefined;
2504
+ } & import("jamespot-user-api").WidgetPresenceType) | ({
2505
+ layers?: string[] | undefined;
2506
+ } & import("jamespot-user-api").WidgetQuickSurveyType)>[];
2507
+ uniqid: string;
2508
+ locked: boolean;
2509
+ position?: {
2510
+ x: number;
2511
+ y: number;
2512
+ } | undefined;
2513
+ }>;
2514
+ ids: Record<string, import("jamespot-user-api").WidgetWrapperGeneric<({
2515
+ layers?: string[] | undefined;
2516
+ } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
2517
+ layers?: string[] | undefined;
2518
+ } & import("jamespot-user-api").WidgetArticleButtonType) | ({
2519
+ layers?: string[] | undefined;
2520
+ } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
2521
+ layers?: string[] | undefined;
2522
+ } & import("jamespot-user-api").WidgetArticleImageType) | ({
2523
+ layers?: string[] | undefined;
2524
+ } & import("jamespot-user-api").WidgetArticleTitleType) | ({
2525
+ layers?: string[] | undefined;
2526
+ } & import("jamespot-user-api").WidgetArticleTextType) | ({
2527
+ layers?: string[] | undefined;
2528
+ } & import("jamespot-user-api").WidgetArticleSliderType) | ({
2529
+ layers?: string[] | undefined;
2530
+ } & import("jamespot-user-api").WidgetType<{
2531
+ widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
2532
+ arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
2533
+ css?: Record<string, string> | undefined;
2534
+ edit?: boolean | undefined;
2535
+ }>) | ({
2536
+ layers?: string[] | undefined;
2537
+ } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
2538
+ layers?: string[] | undefined;
2539
+ } & {
2540
+ name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
2541
+ uniqid: string;
2542
+ content: {
2543
+ uri?: string | undefined;
2544
+ limit?: number | boolean | undefined;
2545
+ tableColumnsData?: {
2546
+ name?: string | undefined;
2547
+ label?: string | undefined;
2548
+ isVisible?: boolean | undefined;
2549
+ textEllipsis?: boolean | undefined;
2550
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
2551
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
2552
+ }[] | undefined;
2553
+ tableHeadColor?: string | undefined;
2554
+ tableHeadTextColor?: string | undefined;
2555
+ tableHeadIconColor?: string | undefined;
2556
+ tableRowColor?: string | undefined;
2557
+ tableRowTextColor?: string | undefined;
2558
+ tableBorderRadius?: number | undefined;
2559
+ tableSizedColumns?: boolean | undefined;
2560
+ tableSizedColumnsWidth?: number | undefined;
2561
+ };
2562
+ }) | ({
2563
+ layers?: string[] | undefined;
2564
+ } & import("jamespot-user-api").WidgetPresenceType) | ({
2565
+ layers?: string[] | undefined;
2566
+ } & import("jamespot-user-api").WidgetQuickSurveyType)>>;
2567
+ states: Record<string, {
2568
+ busy?: boolean | undefined;
2569
+ loading?: boolean | undefined;
2570
+ initialized?: boolean | undefined;
2571
+ mounted?: boolean | undefined;
2572
+ hover?: boolean | undefined;
2573
+ empty?: boolean | undefined;
2574
+ locked?: boolean | undefined;
2575
+ }>;
2576
+ editableMap: Record<string, {
2577
+ uniqid: string;
2578
+ index: number;
2579
+ }>;
2580
+ currentEditableIndex: number;
2581
+ widgetObject: Record<string, {
2582
+ type?: string | undefined;
2583
+ id?: number | undefined;
2584
+ mainType?: string | undefined;
2585
+ uri?: string | undefined;
2586
+ dateCreation?: string | undefined;
2587
+ dateModified?: string | null | undefined;
2588
+ title?: string | undefined;
2589
+ _url?: string | undefined;
2590
+ }>;
2591
+ widgetObjectRights: Record<string, import("jamespot-user-api").Rights>;
2592
+ widgetAuthor: Record<string, {
2593
+ type?: string | undefined;
2594
+ id?: number | undefined;
2595
+ mainType?: string | undefined;
2596
+ uri?: string | undefined;
2597
+ dateCreation?: string | undefined;
2598
+ dateModified?: string | undefined;
2599
+ title?: string | undefined;
2600
+ _url?: string | undefined;
2601
+ level?: 0 | 3 | 5 | 9 | undefined;
2602
+ }>;
2603
+ flushedWidgets: string[];
2604
+ rtObjectStack: {
2605
+ object: import("jamespot-user-api").jObjectBase & {
2606
+ title: string;
2607
+ _url: string;
2608
+ };
2609
+ uniqid: string;
2610
+ fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
2611
+ }[];
2612
+ token?: string | undefined;
2613
+ modal?: {
2614
+ title?: string | undefined;
2615
+ view?: any;
2616
+ } | undefined;
2617
+ currentEditableWidgetId?: string | undefined;
2618
+ };
2619
+ jland: import("redux").CombinedState<{
2620
+ jLandMapList: {
2621
+ maps: import("jamespot-front-business").JLandMapFront[];
2622
+ availableLicenses: Record<string, number>;
2623
+ loading: "idle" | "pending";
2624
+ loadingAvailableLicenses: "idle" | "pending";
2625
+ loadingLicenseOperation: {
2626
+ [key: number]: "idle" | "pending" | undefined;
2627
+ };
2628
+ loadingMapDeletion: "idle" | "pending";
2629
+ };
2630
+ mapCreate: import("jamespot-front-business").MapCreateState;
2631
+ }>;
2632
+ studio: import("redux").CombinedState<{
2633
+ studioAppsList: import("jamespot-front-business").StudioAppsListState;
2634
+ currentStudioApp: import("jamespot-front-business").CurrentStudioAppState;
2635
+ }>;
2636
+ editors: import("jamespot-front-business").EditorsState;
2637
+ extensions: import("redux").CombinedState<{
2638
+ [x: string]: any;
2639
+ }>;
2640
+ }>, {
2641
+ jApi: import("jamespot-user-api").JamespotUserApi;
2642
+ }, import("redux").AnyAction> & import("redux").Dispatch<import("redux").AnyAction>;
2643
+ export declare function useAppSelector<S extends keyof AsyncReducers | keyof typeof staticReducers, R = unknown>(selector: (state: RootState<S>) => R, equalityFn?: (left: R, right: R) => boolean): R;
2644
+ export {};