jamespot-react-core 1.1.185 → 1.1.186

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/build/435.5a7eed97dce6a229d701.chunk.js +654 -0
  2. package/build/435.5a7eed97dce6a229d701.chunk.js.map +1 -0
  3. package/build/app.bundle.js +638 -441
  4. package/build/app.bundle.js.map +1 -1
  5. package/build/src/ReactCore.d.ts +3 -3
  6. package/build/src/components/Empty.d.ts +1 -1
  7. package/build/src/components/ExtensionProvider.component.d.ts +2 -2
  8. package/build/src/components/RTProvider.component.d.ts +2 -2
  9. package/build/src/components/Toaster.d.ts +1 -1
  10. package/build/src/components/TwoColLayout.d.ts +1 -1
  11. package/build/src/components/editors/EditorTabDisplayLevel.d.ts +12 -0
  12. package/build/src/components/editors/EditorTabWidgetSelection.d.ts +4 -0
  13. package/build/src/components/editors/components/EditorInputColor.d.ts +8 -0
  14. package/build/src/components/editors/components/EditorInputNumber.d.ts +6 -0
  15. package/build/src/components/editors/components/EditorInputSelect.d.ts +16 -0
  16. package/build/src/components/editors/states/EditorIsInitialize.d.ts +2 -2
  17. package/build/src/components/editors/style.d.ts +1 -0
  18. package/build/src/components/widgets/Widget.d.ts +5 -4
  19. package/build/src/components/widgets/WidgetLayer/WidgetLayer.d.ts +2 -2
  20. package/build/src/components/widgets/WidgetWrapperCore.d.ts +2 -2
  21. package/build/src/components/widgets/WidgetWrapperCoreEditHover.d.ts +7 -0
  22. package/build/src/components/widgets/components/WidgetUploader.d.ts +2 -2
  23. package/build/src/components/widgets/utils.d.ts +3 -2
  24. package/build/src/components/widgets/wrapper/JRCWidgetCalendarCalDavWrapper.d.ts +9 -0
  25. package/build/src/components/widgets/wrapper/JRCWidgetContactCardDavWrapper.d.ts +9 -0
  26. package/build/src/components/widgets/wrapper/JRCWidgetEmailsImapWrapper.d.ts +9 -0
  27. package/build/src/components/widgets/wrapper/JRCWidgetIconWrapper.d.ts +11 -0
  28. package/build/src/components/widgets/wrapper/WidgetCalendarCalDav/WidgetCalendarCalDavHeader.d.ts +8 -0
  29. package/build/src/components/widgets/wrapper/WidgetContactCardDav/WidgetContactCardDavHeader.d.ts +8 -0
  30. package/build/src/components/widgets/wrapper/WidgetEmailsImap/WidgetEmailsImapHeader.d.ts +13 -0
  31. package/build/src/components/widgets/wrapper/components/OfficeConfigurationPrompt.d.ts +24 -0
  32. package/build/src/components/widgets/wrapper/components/WidgetHeader.d.ts +13 -0
  33. package/build/src/components/widgets/wrapper/components/WidgetIntranetTitle.d.ts +13 -0
  34. package/build/src/components/widgets/wrapper/components/WidgetScroll.d.ts +9 -0
  35. package/build/src/components/widgets/wrapper/components/WidgetStylePadding.d.ts +8 -0
  36. package/build/src/components/widgets/wrapper/components/WidgetStyleWrapper.d.ts +14 -0
  37. package/build/src/displayer/DisplayForm.component.d.ts +5 -5
  38. package/build/src/displayer/components/DisplayRender.d.ts +1 -1
  39. package/build/src/displayer/components/inputs/Date.d.ts +1 -1
  40. package/build/src/displayer/components/inputs/DefaultInput.d.ts +1 -1
  41. package/build/src/displayer/components/inputs/InputAudience.d.ts +1 -1
  42. package/build/src/displayer/components/inputs/InputCheckbox.d.ts +1 -1
  43. package/build/src/displayer/components/inputs/InputEmail.d.ts +1 -1
  44. package/build/src/displayer/components/inputs/InputRichText.d.ts +1 -1
  45. package/build/src/displayer/components/inputs/InputSelect.d.ts +1 -1
  46. package/build/src/displayer/components/inputs/InputTaxonomy.d.ts +1 -1
  47. package/build/src/displayer/components/inputs/InputTextarea.d.ts +1 -1
  48. package/build/src/displayer/components/inputs/OrientedLink.d.ts +1 -1
  49. package/build/src/displayer/types.d.ts +5 -5
  50. package/build/src/displayer/useDisplay.d.ts +1 -1
  51. package/build/src/redux/store.d.ts +294 -15
  52. package/build/src/registry/ReactCommonRegistry.d.ts +2 -2
  53. package/build/src/registry/ReactCoreRegistry.d.ts +2 -2
  54. package/build/src/registry/ext-component-list.d.ts +8 -0
  55. package/build/src/utils/types.d.ts +4 -4
  56. package/package.json +4 -4
  57. package/build/724.843c4f66e67a00f149d5.chunk.js +0 -561
  58. package/build/724.843c4f66e67a00f149d5.chunk.js.map +0 -1
@@ -496,7 +496,25 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
496
496
  layers?: string[] | undefined;
497
497
  } & import("jamespot-user-api").WidgetPresenceType) | ({
498
498
  layers?: string[] | undefined;
499
- } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
499
+ } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
500
+ layers?: string[] | undefined;
501
+ } & import("jamespot-user-api").WidgetType<{
502
+ calEventsLimit?: boolean | undefined;
503
+ calEventsLimitValue?: number | undefined;
504
+ calEventsPromptStatus?: string | undefined;
505
+ }>) | ({
506
+ layers?: string[] | undefined;
507
+ } & import("jamespot-user-api").WidgetType<{
508
+ contactLimit?: boolean | undefined;
509
+ contactLimitValue?: number | undefined;
510
+ contactPromptStatus?: string | undefined;
511
+ }>) | ({
512
+ layers?: string[] | undefined;
513
+ } & import("jamespot-user-api").WidgetType<{
514
+ emailsLimit?: boolean | undefined;
515
+ emailsLimitValue?: number | undefined;
516
+ emailsPromptStatus?: string | undefined;
517
+ }>)>[] | undefined;
500
518
  faqColor?: string | undefined;
501
519
  } & {
502
520
  _extend: {
@@ -603,7 +621,25 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
603
621
  layers?: string[] | undefined;
604
622
  } & import("jamespot-user-api").WidgetPresenceType) | ({
605
623
  layers?: string[] | undefined;
606
- } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
624
+ } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
625
+ layers?: string[] | undefined;
626
+ } & import("jamespot-user-api").WidgetType<{
627
+ calEventsLimit?: boolean | undefined;
628
+ calEventsLimitValue?: number | undefined;
629
+ calEventsPromptStatus?: string | undefined;
630
+ }>) | ({
631
+ layers?: string[] | undefined;
632
+ } & import("jamespot-user-api").WidgetType<{
633
+ contactLimit?: boolean | undefined;
634
+ contactLimitValue?: number | undefined;
635
+ contactPromptStatus?: string | undefined;
636
+ }>) | ({
637
+ layers?: string[] | undefined;
638
+ } & import("jamespot-user-api").WidgetType<{
639
+ emailsLimit?: boolean | undefined;
640
+ emailsLimitValue?: number | undefined;
641
+ emailsPromptStatus?: string | undefined;
642
+ }>)>[] | undefined;
607
643
  } & {
608
644
  type: string;
609
645
  id: number;
@@ -739,7 +775,25 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
739
775
  layers?: string[] | undefined;
740
776
  } & import("jamespot-user-api").WidgetPresenceType) | ({
741
777
  layers?: string[] | undefined;
742
- } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
778
+ } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
779
+ layers?: string[] | undefined;
780
+ } & import("jamespot-user-api").WidgetType<{
781
+ calEventsLimit?: boolean | undefined;
782
+ calEventsLimitValue?: number | undefined;
783
+ calEventsPromptStatus?: string | undefined;
784
+ }>) | ({
785
+ layers?: string[] | undefined;
786
+ } & import("jamespot-user-api").WidgetType<{
787
+ contactLimit?: boolean | undefined;
788
+ contactLimitValue?: number | undefined;
789
+ contactPromptStatus?: string | undefined;
790
+ }>) | ({
791
+ layers?: string[] | undefined;
792
+ } & import("jamespot-user-api").WidgetType<{
793
+ emailsLimit?: boolean | undefined;
794
+ emailsLimitValue?: number | undefined;
795
+ emailsPromptStatus?: string | undefined;
796
+ }>)>[] | undefined;
743
797
  } & {
744
798
  type: string;
745
799
  id: number;
@@ -848,7 +902,25 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
848
902
  layers?: string[] | undefined;
849
903
  } & import("jamespot-user-api").WidgetPresenceType) | ({
850
904
  layers?: string[] | undefined;
851
- } & import("jamespot-user-api").WidgetQuickSurveyType)>[];
905
+ } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
906
+ layers?: string[] | undefined;
907
+ } & import("jamespot-user-api").WidgetType<{
908
+ calEventsLimit?: boolean | undefined;
909
+ calEventsLimitValue?: number | undefined;
910
+ calEventsPromptStatus?: string | undefined;
911
+ }>) | ({
912
+ layers?: string[] | undefined;
913
+ } & import("jamespot-user-api").WidgetType<{
914
+ contactLimit?: boolean | undefined;
915
+ contactLimitValue?: number | undefined;
916
+ contactPromptStatus?: string | undefined;
917
+ }>) | ({
918
+ layers?: string[] | undefined;
919
+ } & import("jamespot-user-api").WidgetType<{
920
+ emailsLimit?: boolean | undefined;
921
+ emailsLimitValue?: number | undefined;
922
+ emailsPromptStatus?: string | undefined;
923
+ }>)>[];
852
924
  uniqid: string;
853
925
  locked: boolean;
854
926
  position?: {
@@ -908,7 +980,25 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
908
980
  layers?: string[] | undefined;
909
981
  } & import("jamespot-user-api").WidgetPresenceType) | ({
910
982
  layers?: string[] | undefined;
911
- } & import("jamespot-user-api").WidgetQuickSurveyType)>>;
983
+ } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
984
+ layers?: string[] | undefined;
985
+ } & import("jamespot-user-api").WidgetType<{
986
+ calEventsLimit?: boolean | undefined;
987
+ calEventsLimitValue?: number | undefined;
988
+ calEventsPromptStatus?: string | undefined;
989
+ }>) | ({
990
+ layers?: string[] | undefined;
991
+ } & import("jamespot-user-api").WidgetType<{
992
+ contactLimit?: boolean | undefined;
993
+ contactLimitValue?: number | undefined;
994
+ contactPromptStatus?: string | undefined;
995
+ }>) | ({
996
+ layers?: string[] | undefined;
997
+ } & import("jamespot-user-api").WidgetType<{
998
+ emailsLimit?: boolean | undefined;
999
+ emailsLimitValue?: number | undefined;
1000
+ emailsPromptStatus?: string | undefined;
1001
+ }>)>>;
912
1002
  states: Record<string, {
913
1003
  busy?: boolean | undefined;
914
1004
  loading?: boolean | undefined;
@@ -923,6 +1013,8 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
923
1013
  index: number;
924
1014
  }>;
925
1015
  currentEditableIndex: number;
1016
+ widgetWrapperStyle: Record<string, Record<string, string | number>>;
1017
+ widgetTitleStyle: Record<string, Record<string, string | number>>;
926
1018
  widgetObject: Record<string, {
927
1019
  type?: string | undefined;
928
1020
  id?: number | undefined;
@@ -934,6 +1026,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
934
1026
  _url?: string | undefined;
935
1027
  }>;
936
1028
  widgetObjectRights: Record<string, import("jamespot-user-api").Rights>;
1029
+ widgetChipCount: Record<string, number>;
937
1030
  widgetAuthor: Record<string, {
938
1031
  type?: string | undefined;
939
1032
  id?: number | undefined;
@@ -1321,7 +1414,25 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
1321
1414
  layers?: string[] | undefined;
1322
1415
  } & import("jamespot-user-api").WidgetPresenceType) | ({
1323
1416
  layers?: string[] | undefined;
1324
- } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
1417
+ } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
1418
+ layers?: string[] | undefined;
1419
+ } & import("jamespot-user-api").WidgetType<{
1420
+ calEventsLimit?: boolean | undefined;
1421
+ calEventsLimitValue?: number | undefined;
1422
+ calEventsPromptStatus?: string | undefined;
1423
+ }>) | ({
1424
+ layers?: string[] | undefined;
1425
+ } & import("jamespot-user-api").WidgetType<{
1426
+ contactLimit?: boolean | undefined;
1427
+ contactLimitValue?: number | undefined;
1428
+ contactPromptStatus?: string | undefined;
1429
+ }>) | ({
1430
+ layers?: string[] | undefined;
1431
+ } & import("jamespot-user-api").WidgetType<{
1432
+ emailsLimit?: boolean | undefined;
1433
+ emailsLimitValue?: number | undefined;
1434
+ emailsPromptStatus?: string | undefined;
1435
+ }>)>[] | undefined;
1325
1436
  faqColor?: string | undefined;
1326
1437
  } & {
1327
1438
  _extend: {
@@ -1428,7 +1539,25 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
1428
1539
  layers?: string[] | undefined;
1429
1540
  } & import("jamespot-user-api").WidgetPresenceType) | ({
1430
1541
  layers?: string[] | undefined;
1431
- } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
1542
+ } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
1543
+ layers?: string[] | undefined;
1544
+ } & import("jamespot-user-api").WidgetType<{
1545
+ calEventsLimit?: boolean | undefined;
1546
+ calEventsLimitValue?: number | undefined;
1547
+ calEventsPromptStatus?: string | undefined;
1548
+ }>) | ({
1549
+ layers?: string[] | undefined;
1550
+ } & import("jamespot-user-api").WidgetType<{
1551
+ contactLimit?: boolean | undefined;
1552
+ contactLimitValue?: number | undefined;
1553
+ contactPromptStatus?: string | undefined;
1554
+ }>) | ({
1555
+ layers?: string[] | undefined;
1556
+ } & import("jamespot-user-api").WidgetType<{
1557
+ emailsLimit?: boolean | undefined;
1558
+ emailsLimitValue?: number | undefined;
1559
+ emailsPromptStatus?: string | undefined;
1560
+ }>)>[] | undefined;
1432
1561
  } & {
1433
1562
  type: string;
1434
1563
  id: number;
@@ -1564,7 +1693,25 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
1564
1693
  layers?: string[] | undefined;
1565
1694
  } & import("jamespot-user-api").WidgetPresenceType) | ({
1566
1695
  layers?: string[] | undefined;
1567
- } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
1696
+ } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
1697
+ layers?: string[] | undefined;
1698
+ } & import("jamespot-user-api").WidgetType<{
1699
+ calEventsLimit?: boolean | undefined;
1700
+ calEventsLimitValue?: number | undefined;
1701
+ calEventsPromptStatus?: string | undefined;
1702
+ }>) | ({
1703
+ layers?: string[] | undefined;
1704
+ } & import("jamespot-user-api").WidgetType<{
1705
+ contactLimit?: boolean | undefined;
1706
+ contactLimitValue?: number | undefined;
1707
+ contactPromptStatus?: string | undefined;
1708
+ }>) | ({
1709
+ layers?: string[] | undefined;
1710
+ } & import("jamespot-user-api").WidgetType<{
1711
+ emailsLimit?: boolean | undefined;
1712
+ emailsLimitValue?: number | undefined;
1713
+ emailsPromptStatus?: string | undefined;
1714
+ }>)>[] | undefined;
1568
1715
  } & {
1569
1716
  type: string;
1570
1717
  id: number;
@@ -1673,7 +1820,25 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
1673
1820
  layers?: string[] | undefined;
1674
1821
  } & import("jamespot-user-api").WidgetPresenceType) | ({
1675
1822
  layers?: string[] | undefined;
1676
- } & import("jamespot-user-api").WidgetQuickSurveyType)>[];
1823
+ } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
1824
+ layers?: string[] | undefined;
1825
+ } & import("jamespot-user-api").WidgetType<{
1826
+ calEventsLimit?: boolean | undefined;
1827
+ calEventsLimitValue?: number | undefined;
1828
+ calEventsPromptStatus?: string | undefined;
1829
+ }>) | ({
1830
+ layers?: string[] | undefined;
1831
+ } & import("jamespot-user-api").WidgetType<{
1832
+ contactLimit?: boolean | undefined;
1833
+ contactLimitValue?: number | undefined;
1834
+ contactPromptStatus?: string | undefined;
1835
+ }>) | ({
1836
+ layers?: string[] | undefined;
1837
+ } & import("jamespot-user-api").WidgetType<{
1838
+ emailsLimit?: boolean | undefined;
1839
+ emailsLimitValue?: number | undefined;
1840
+ emailsPromptStatus?: string | undefined;
1841
+ }>)>[];
1677
1842
  uniqid: string;
1678
1843
  locked: boolean;
1679
1844
  position?: {
@@ -1733,7 +1898,25 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
1733
1898
  layers?: string[] | undefined;
1734
1899
  } & import("jamespot-user-api").WidgetPresenceType) | ({
1735
1900
  layers?: string[] | undefined;
1736
- } & import("jamespot-user-api").WidgetQuickSurveyType)>>;
1901
+ } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
1902
+ layers?: string[] | undefined;
1903
+ } & import("jamespot-user-api").WidgetType<{
1904
+ calEventsLimit?: boolean | undefined;
1905
+ calEventsLimitValue?: number | undefined;
1906
+ calEventsPromptStatus?: string | undefined;
1907
+ }>) | ({
1908
+ layers?: string[] | undefined;
1909
+ } & import("jamespot-user-api").WidgetType<{
1910
+ contactLimit?: boolean | undefined;
1911
+ contactLimitValue?: number | undefined;
1912
+ contactPromptStatus?: string | undefined;
1913
+ }>) | ({
1914
+ layers?: string[] | undefined;
1915
+ } & import("jamespot-user-api").WidgetType<{
1916
+ emailsLimit?: boolean | undefined;
1917
+ emailsLimitValue?: number | undefined;
1918
+ emailsPromptStatus?: string | undefined;
1919
+ }>)>>;
1737
1920
  states: Record<string, {
1738
1921
  busy?: boolean | undefined;
1739
1922
  loading?: boolean | undefined;
@@ -1748,6 +1931,8 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
1748
1931
  index: number;
1749
1932
  }>;
1750
1933
  currentEditableIndex: number;
1934
+ widgetWrapperStyle: Record<string, Record<string, string | number>>;
1935
+ widgetTitleStyle: Record<string, Record<string, string | number>>;
1751
1936
  widgetObject: Record<string, {
1752
1937
  type?: string | undefined;
1753
1938
  id?: number | undefined;
@@ -1759,6 +1944,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
1759
1944
  _url?: string | undefined;
1760
1945
  }>;
1761
1946
  widgetObjectRights: Record<string, import("jamespot-user-api").Rights>;
1947
+ widgetChipCount: Record<string, number>;
1762
1948
  widgetAuthor: Record<string, {
1763
1949
  type?: string | undefined;
1764
1950
  id?: number | undefined;
@@ -2151,7 +2337,25 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
2151
2337
  layers?: string[] | undefined;
2152
2338
  } & import("jamespot-user-api").WidgetPresenceType) | ({
2153
2339
  layers?: string[] | undefined;
2154
- } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
2340
+ } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
2341
+ layers?: string[] | undefined;
2342
+ } & import("jamespot-user-api").WidgetType<{
2343
+ calEventsLimit?: boolean | undefined;
2344
+ calEventsLimitValue?: number | undefined;
2345
+ calEventsPromptStatus?: string | undefined;
2346
+ }>) | ({
2347
+ layers?: string[] | undefined;
2348
+ } & import("jamespot-user-api").WidgetType<{
2349
+ contactLimit?: boolean | undefined;
2350
+ contactLimitValue?: number | undefined;
2351
+ contactPromptStatus?: string | undefined;
2352
+ }>) | ({
2353
+ layers?: string[] | undefined;
2354
+ } & import("jamespot-user-api").WidgetType<{
2355
+ emailsLimit?: boolean | undefined;
2356
+ emailsLimitValue?: number | undefined;
2357
+ emailsPromptStatus?: string | undefined;
2358
+ }>)>[] | undefined;
2155
2359
  faqColor?: string | undefined;
2156
2360
  } & {
2157
2361
  _extend: {
@@ -2258,7 +2462,25 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
2258
2462
  layers?: string[] | undefined;
2259
2463
  } & import("jamespot-user-api").WidgetPresenceType) | ({
2260
2464
  layers?: string[] | undefined;
2261
- } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
2465
+ } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
2466
+ layers?: string[] | undefined;
2467
+ } & import("jamespot-user-api").WidgetType<{
2468
+ calEventsLimit?: boolean | undefined;
2469
+ calEventsLimitValue?: number | undefined;
2470
+ calEventsPromptStatus?: string | undefined;
2471
+ }>) | ({
2472
+ layers?: string[] | undefined;
2473
+ } & import("jamespot-user-api").WidgetType<{
2474
+ contactLimit?: boolean | undefined;
2475
+ contactLimitValue?: number | undefined;
2476
+ contactPromptStatus?: string | undefined;
2477
+ }>) | ({
2478
+ layers?: string[] | undefined;
2479
+ } & import("jamespot-user-api").WidgetType<{
2480
+ emailsLimit?: boolean | undefined;
2481
+ emailsLimitValue?: number | undefined;
2482
+ emailsPromptStatus?: string | undefined;
2483
+ }>)>[] | undefined;
2262
2484
  } & {
2263
2485
  type: string;
2264
2486
  id: number;
@@ -2394,7 +2616,25 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
2394
2616
  layers?: string[] | undefined;
2395
2617
  } & import("jamespot-user-api").WidgetPresenceType) | ({
2396
2618
  layers?: string[] | undefined;
2397
- } & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
2619
+ } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
2620
+ layers?: string[] | undefined;
2621
+ } & import("jamespot-user-api").WidgetType<{
2622
+ calEventsLimit?: boolean | undefined;
2623
+ calEventsLimitValue?: number | undefined;
2624
+ calEventsPromptStatus?: string | undefined;
2625
+ }>) | ({
2626
+ layers?: string[] | undefined;
2627
+ } & import("jamespot-user-api").WidgetType<{
2628
+ contactLimit?: boolean | undefined;
2629
+ contactLimitValue?: number | undefined;
2630
+ contactPromptStatus?: string | undefined;
2631
+ }>) | ({
2632
+ layers?: string[] | undefined;
2633
+ } & import("jamespot-user-api").WidgetType<{
2634
+ emailsLimit?: boolean | undefined;
2635
+ emailsLimitValue?: number | undefined;
2636
+ emailsPromptStatus?: string | undefined;
2637
+ }>)>[] | undefined;
2398
2638
  } & {
2399
2639
  type: string;
2400
2640
  id: number;
@@ -2503,7 +2743,25 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
2503
2743
  layers?: string[] | undefined;
2504
2744
  } & import("jamespot-user-api").WidgetPresenceType) | ({
2505
2745
  layers?: string[] | undefined;
2506
- } & import("jamespot-user-api").WidgetQuickSurveyType)>[];
2746
+ } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
2747
+ layers?: string[] | undefined;
2748
+ } & import("jamespot-user-api").WidgetType<{
2749
+ calEventsLimit?: boolean | undefined;
2750
+ calEventsLimitValue?: number | undefined;
2751
+ calEventsPromptStatus?: string | undefined;
2752
+ }>) | ({
2753
+ layers?: string[] | undefined;
2754
+ } & import("jamespot-user-api").WidgetType<{
2755
+ contactLimit?: boolean | undefined;
2756
+ contactLimitValue?: number | undefined;
2757
+ contactPromptStatus?: string | undefined;
2758
+ }>) | ({
2759
+ layers?: string[] | undefined;
2760
+ } & import("jamespot-user-api").WidgetType<{
2761
+ emailsLimit?: boolean | undefined;
2762
+ emailsLimitValue?: number | undefined;
2763
+ emailsPromptStatus?: string | undefined;
2764
+ }>)>[];
2507
2765
  uniqid: string;
2508
2766
  locked: boolean;
2509
2767
  position?: {
@@ -2563,7 +2821,25 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
2563
2821
  layers?: string[] | undefined;
2564
2822
  } & import("jamespot-user-api").WidgetPresenceType) | ({
2565
2823
  layers?: string[] | undefined;
2566
- } & import("jamespot-user-api").WidgetQuickSurveyType)>>;
2824
+ } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
2825
+ layers?: string[] | undefined;
2826
+ } & import("jamespot-user-api").WidgetType<{
2827
+ calEventsLimit?: boolean | undefined;
2828
+ calEventsLimitValue?: number | undefined;
2829
+ calEventsPromptStatus?: string | undefined;
2830
+ }>) | ({
2831
+ layers?: string[] | undefined;
2832
+ } & import("jamespot-user-api").WidgetType<{
2833
+ contactLimit?: boolean | undefined;
2834
+ contactLimitValue?: number | undefined;
2835
+ contactPromptStatus?: string | undefined;
2836
+ }>) | ({
2837
+ layers?: string[] | undefined;
2838
+ } & import("jamespot-user-api").WidgetType<{
2839
+ emailsLimit?: boolean | undefined;
2840
+ emailsLimitValue?: number | undefined;
2841
+ emailsPromptStatus?: string | undefined;
2842
+ }>)>>;
2567
2843
  states: Record<string, {
2568
2844
  busy?: boolean | undefined;
2569
2845
  loading?: boolean | undefined;
@@ -2578,6 +2854,8 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
2578
2854
  index: number;
2579
2855
  }>;
2580
2856
  currentEditableIndex: number;
2857
+ widgetWrapperStyle: Record<string, Record<string, string | number>>;
2858
+ widgetTitleStyle: Record<string, Record<string, string | number>>;
2581
2859
  widgetObject: Record<string, {
2582
2860
  type?: string | undefined;
2583
2861
  id?: number | undefined;
@@ -2589,6 +2867,7 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
2589
2867
  _url?: string | undefined;
2590
2868
  }>;
2591
2869
  widgetObjectRights: Record<string, import("jamespot-user-api").Rights>;
2870
+ widgetChipCount: Record<string, number>;
2592
2871
  widgetAuthor: Record<string, {
2593
2872
  type?: string | undefined;
2594
2873
  id?: number | undefined;
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import { ComponentType, LazyExoticComponent } from 'react';
2
2
  import { JrComponentListKey, JrComponentListType, JrComponentTypes } from './types.common';
3
3
  export interface RegistryComponents {
4
4
  [key: string]: any;
@@ -7,7 +7,7 @@ export declare class ReactCommonRegistry {
7
7
  list: RegistryComponents;
8
8
  listLazy: RegistryComponents;
9
9
  getComponent(name: string): any;
10
- registerLazyComponent(name: string, promise: React.LazyExoticComponent<React.ComponentType<any>>): void;
10
+ registerLazyComponent(name: string, promise: LazyExoticComponent<ComponentType<any>>): void;
11
11
  registerLib(componentList: Partial<JrComponentListType>, importPromise: any): void;
12
12
  getLazyComponent<T extends JrComponentListKey>(name: T): JrComponentTypes[JrComponentListType[T]];
13
13
  }
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import { ComponentType, LazyExoticComponent } from 'react';
2
2
  import { CoreComponentListKey, CoreComponentListType, CoreComponentTypes } from './types.core';
3
3
  export interface RegistryComponents {
4
4
  [key: string]: any;
@@ -7,7 +7,7 @@ export declare class ReactCoreRegistry {
7
7
  list: RegistryComponents;
8
8
  listLazy: RegistryComponents;
9
9
  getComponent(name: string): any;
10
- registerLazyComponent(name: string, promise: React.LazyExoticComponent<React.ComponentType<any>>): void;
10
+ registerLazyComponent(name: string, promise: LazyExoticComponent<ComponentType<any>>): void;
11
11
  registerLib(componentList: Partial<CoreComponentListType>, importPromise: any): void;
12
12
  getLazyComponent<T extends CoreComponentListKey>(name: T): CoreComponentTypes[CoreComponentListType[T]];
13
13
  }
@@ -168,6 +168,14 @@ declare const _default: {
168
168
  readonly WidgetCheckListEditor: "JRCWidgetCheckListEditor";
169
169
  readonly WidgetQuickSurvey: "JRCWidgetQuickSurvey";
170
170
  readonly WidgetQuickSurveyEditor: "JRCWidgetQuickSurveyEditor";
171
+ readonly WidgetContactCardDav: "JRCWidgetContactCardDav";
172
+ readonly WidgetContactCardDavEditor: "JRCWidgetContactCardDavEditor";
173
+ readonly WidgetEmailsImap: "JRCWidgetEmailsImap";
174
+ readonly WidgetEmailsImapLevel2: "JRCWidgetEmailsImapLevel2";
175
+ readonly WidgetIcon: "JRCWidgetIcon";
176
+ readonly WidgetEmailsImapEditor: "JRCWidgetEmailsImapEditor";
177
+ readonly WidgetCalendarCalDav: "JRCWidgetCalendarCalDav";
178
+ readonly WidgetCalendarCalDavEditor: "JRCWidgetCalendarCalDavEditor";
171
179
  readonly JRCAvatar: "JRCAvatar";
172
180
  readonly JRCCommentsBloc: "JRCCommentsBloc";
173
181
  };
@@ -1,5 +1,5 @@
1
1
  import { ApplicationType, jUserList, Model, Readable, TinyMCECommonOptions, TinyMCEDynamicOptions, TinyMCEExtendedOptions } from 'jamespot-user-api';
2
- import * as React from 'react';
2
+ import { MouseEvent } from 'react';
3
3
  import { RouteObject } from 'react-router-dom';
4
4
  import { TwoColLayoutRoute, TwoColLayoutRoutes } from '../components/types';
5
5
  import { useDisplay, useDisplayList } from '../displayer/useDisplay';
@@ -26,9 +26,9 @@ export interface ReactCore {
26
26
  reload: boolean;
27
27
  notify?: boolean;
28
28
  callback?: () => void;
29
- event?: React.MouseEvent<HTMLElement>;
29
+ event?: MouseEvent<HTMLElement>;
30
30
  }) => void;
31
- changeWindowLocation: (targetUrl: string, event: React.MouseEvent<HTMLElement>, enableWindowOpen: boolean) => void;
31
+ changeWindowLocation: (targetUrl: string, event: MouseEvent<HTMLElement>, enableWindowOpen: boolean) => void;
32
32
  useDisplay: typeof useDisplay;
33
33
  useDisplayList: typeof useDisplayList;
34
34
  tinymceCommonOptions?: TinyMCECommonOptions;
@@ -60,7 +60,7 @@ type WindowJNG = {
60
60
  reload: boolean;
61
61
  notify?: boolean;
62
62
  callback?: () => void;
63
- event?: React.MouseEvent<HTMLElement>;
63
+ event?: MouseEvent<HTMLElement>;
64
64
  }) => void;
65
65
  scrollTop: () => void;
66
66
  messengerOpenDiscussion: (options: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jamespot-react-core",
3
- "version": "1.1.185",
3
+ "version": "1.1.186",
4
4
  "description": "Jamespot React Core",
5
5
  "main": "./build/app.bundle.js",
6
6
  "types": "./build/src/App.d.ts",
@@ -56,9 +56,9 @@
56
56
  "eslint-import-resolver-typescript": "^3.6.3",
57
57
  "eslint-plugin-import": "^2.31.0",
58
58
  "history": "^5.3.0",
59
- "jamespot-front-business": "^1.1.84",
60
- "jamespot-react-components": "^1.0.234",
61
- "jamespot-user-api": "^1.0.210",
59
+ "jamespot-front-business": "^1.1.85",
60
+ "jamespot-react-components": "^1.0.235",
61
+ "jamespot-user-api": "^1.0.211",
62
62
  "marked": "^15.0.3",
63
63
  "react": "^17.0.2",
64
64
  "react-dom": "17.0.2",