jamespot-user-api 1.0.167 → 1.0.168
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/documentation/assets/search.js +1 -1
- package/documentation/classes/AdminLicenseApi.html +11 -11
- package/documentation/classes/AdminStoreApi.html +1 -1
- package/documentation/classes/AdminUtilsApi.html +1 -1
- package/documentation/classes/JApplicationApi.html +8 -8
- package/documentation/classes/JArticleApi.html +1 -1
- package/documentation/classes/JAssetReservation.html +1 -1
- package/documentation/classes/JAudienceApi.html +1 -1
- package/documentation/classes/JBaseApi.html +1 -1
- package/documentation/classes/JBbbApi.html +1 -1
- package/documentation/classes/JBookmarkApi.html +1 -1
- package/documentation/classes/JBusinessNetworkingApi.html +1 -1
- package/documentation/classes/JCommunityApi.html +1 -1
- package/documentation/classes/JDatasourceApi.html +1 -0
- package/documentation/classes/JDiapazoneApi.html +1 -1
- package/documentation/classes/JFaqApi.html +1 -1
- package/documentation/classes/JFileApi.html +5 -5
- package/documentation/classes/JFilebankApi.html +1 -1
- package/documentation/classes/JGlobalApi.html +1 -1
- package/documentation/classes/JGroupApi.html +12 -12
- package/documentation/classes/JIAApi.html +1 -1
- package/documentation/classes/JLandApi.html +1 -1
- package/documentation/classes/JMessengerApi.html +1 -1
- package/documentation/classes/JObjectApi.html +1 -1
- package/documentation/classes/JSearchApi.html +6 -6
- package/documentation/classes/JShareApi.html +1 -1
- package/documentation/classes/JSocialActionApi.html +1 -1
- package/documentation/classes/JTaxonomyApi.html +2 -2
- package/documentation/classes/JUserApi.html +7 -7
- package/documentation/classes/JWedocApi.html +1 -1
- package/documentation/classes/JWidgetApi.html +1 -1
- package/documentation/classes/JamespotUserApi.html +1 -1
- package/documentation/classes/Network.html +1 -1
- package/documentation/classes/TVDisplayApi.html +1 -1
- package/documentation/classes/WindowBrowser.html +1 -1
- package/documentation/enums/Format.html +1 -1
- package/documentation/enums/GroupModerateStatus.html +1 -1
- package/documentation/enums/StudioApplicationStatus.html +1 -1
- package/documentation/enums/WidgetsName.html +1 -1
- package/documentation/index.html +1 -1
- package/documentation/interfaces/AccessRightObject.html +1 -1
- package/documentation/interfaces/AdminLicenseUser.html +1 -1
- package/documentation/interfaces/ApiDefaultWrapper.html +1 -1
- package/documentation/interfaces/ApiWrapper.html +1 -1
- package/documentation/interfaces/BaseMessage.html +1 -1
- package/documentation/interfaces/Category.html +1 -1
- package/documentation/interfaces/FileBankProps.html +1 -1
- package/documentation/interfaces/FolderProps.html +1 -1
- package/documentation/interfaces/ListFilterSpec.html +1 -1
- package/documentation/interfaces/OF.html +1 -1
- package/documentation/interfaces/ObjectListProps.html +1 -1
- package/documentation/interfaces/PagingResults.html +1 -1
- package/documentation/interfaces/RootFolderProps.html +1 -1
- package/documentation/interfaces/SearchCategoryModel.html +1 -1
- package/documentation/interfaces/SearchCategoryValue.html +1 -1
- package/documentation/interfaces/SearchConfig.html +1 -1
- package/documentation/interfaces/SearchFacetModel.html +1 -1
- package/documentation/interfaces/SearchFacetValueModel.html +1 -1
- package/documentation/interfaces/SearchQuery.html +1 -1
- package/documentation/interfaces/SearchQueryFilterModel.html +1 -1
- package/documentation/interfaces/SearchQueryOption.html +1 -1
- package/documentation/interfaces/SearchQueryResult.html +1 -1
- package/documentation/interfaces/SearchQuerySortModel.html +1 -1
- package/documentation/interfaces/SearchResultCatProps.html +1 -1
- package/documentation/interfaces/SearchResultPropsApp.html +1 -1
- package/documentation/interfaces/SearchResultPropsObject.html +1 -1
- package/documentation/interfaces/SpotProps.html +1 -1
- package/documentation/interfaces/TaxonomyCreate.html +1 -1
- package/documentation/interfaces/WidgetType.html +1 -1
- package/documentation/interfaces/WindowInterface.html +1 -1
- package/documentation/modules.html +14 -8
- package/lib/jamespot-user-api.js +1 -1
- package/lib/jamespot-user-api.js.map +1 -1
- package/lib/src/apis/datasource/datasource.d.ts +44 -0
- package/lib/src/apis/datasource/datasource.mock.d.ts +15 -0
- package/lib/src/apis/datasource/datasource.test.d.ts +1 -0
- package/lib/src/apis/index.d.ts +1 -0
- package/lib/src/apis/jamespotUserApi.d.ts +2 -0
- package/lib/src/apis/user/user.d.ts +137 -60
- package/lib/src/types/article.d.ts +27846 -12466
- package/lib/src/types/widgets.d.ts +15932 -4979
- package/lib/src/util/Test.d.ts +548 -240
- package/package.json +1 -1
- package/phpunitMock/accessibilityGetStatus-default.json +1 -1
- package/phpunitMock/widgetDatasourceCreate-doc.json +42 -0
- package/phpunitMock/widgetDatasourceCreate-studio.json +42 -0
- package/phpunitMock/widgetDatasourceGet-get-doc.json +17 -0
- package/phpunitMock/widgetDatasourceGet-get-studio.json +16 -0
- package/phpunitMock/widgetDatasourceGetModel-getModel-doc.json +14 -0
- package/phpunitMock/widgetDatasourceGetModel-getModel-studio.json +13 -0
- package/phpunitMock/widgetDatasourceGetObject-default.json +16 -0
package/lib/src/util/Test.d.ts
CHANGED
|
@@ -406,9 +406,32 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
406
406
|
}[] | undefined;
|
|
407
407
|
} & {
|
|
408
408
|
css?: Record<string, string> | undefined;
|
|
409
|
-
widgets
|
|
410
|
-
}>
|
|
411
|
-
|
|
409
|
+
widgets?: any[] | undefined;
|
|
410
|
+
}>) | ({
|
|
411
|
+
layers?: string[] | undefined;
|
|
412
|
+
} & {
|
|
413
|
+
name: import("../types").WidgetsName.DatasourceTable;
|
|
414
|
+
uniqid: string;
|
|
415
|
+
content: {
|
|
416
|
+
limit?: number | undefined;
|
|
417
|
+
tableColumnsData?: {
|
|
418
|
+
name?: string | undefined;
|
|
419
|
+
isVisible?: boolean | undefined;
|
|
420
|
+
textEllipsis?: boolean | undefined;
|
|
421
|
+
label?: string | undefined;
|
|
422
|
+
dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
|
|
423
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
424
|
+
}[] | undefined;
|
|
425
|
+
tableHeadColor?: string | undefined;
|
|
426
|
+
tableHeadTextColor?: string | undefined;
|
|
427
|
+
tableHeadIconColor?: string | undefined;
|
|
428
|
+
tableRowColor?: string | undefined;
|
|
429
|
+
tableRowTextColor?: string | undefined;
|
|
430
|
+
tableBorderRadius?: number | undefined;
|
|
431
|
+
tableSizedColumns?: boolean | undefined;
|
|
432
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
433
|
+
uri?: string | undefined;
|
|
434
|
+
};
|
|
412
435
|
}) | ({
|
|
413
436
|
layers?: string[] | undefined;
|
|
414
437
|
} & {
|
|
@@ -454,10 +477,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
454
477
|
}[] | undefined;
|
|
455
478
|
} & {
|
|
456
479
|
css?: Record<string, string> | undefined;
|
|
457
|
-
widgets
|
|
458
|
-
}>
|
|
459
|
-
title: string;
|
|
460
|
-
}) | ({
|
|
480
|
+
widgets?: any[] | undefined;
|
|
481
|
+
}>) | ({
|
|
461
482
|
layers?: string[] | undefined;
|
|
462
483
|
} & {
|
|
463
484
|
name: import("../types").WidgetsName.ArticleGallery;
|
|
@@ -496,10 +517,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
496
517
|
}[] | undefined;
|
|
497
518
|
} & {
|
|
498
519
|
css?: Record<string, string> | undefined;
|
|
499
|
-
widgets
|
|
500
|
-
}>
|
|
501
|
-
title: string;
|
|
502
|
-
}) | ({
|
|
520
|
+
widgets?: any[] | undefined;
|
|
521
|
+
}>) | ({
|
|
503
522
|
layers?: string[] | undefined;
|
|
504
523
|
} & {
|
|
505
524
|
name: import("../types").WidgetsName.ArticleTitle;
|
|
@@ -528,10 +547,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
528
547
|
}[] | undefined;
|
|
529
548
|
} & {
|
|
530
549
|
css?: Record<string, string> | undefined;
|
|
531
|
-
widgets
|
|
532
|
-
}>
|
|
533
|
-
title: string;
|
|
534
|
-
}) | ({
|
|
550
|
+
widgets?: any[] | undefined;
|
|
551
|
+
}>) | ({
|
|
535
552
|
layers?: string[] | undefined;
|
|
536
553
|
} & {
|
|
537
554
|
name: import("../types").WidgetsName.ArticleText;
|
|
@@ -560,10 +577,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
560
577
|
}[] | undefined;
|
|
561
578
|
} & {
|
|
562
579
|
css?: Record<string, string> | undefined;
|
|
563
|
-
widgets
|
|
564
|
-
}>
|
|
565
|
-
title: string;
|
|
566
|
-
}) | ({
|
|
580
|
+
widgets?: any[] | undefined;
|
|
581
|
+
}>) | ({
|
|
567
582
|
layers?: string[] | undefined;
|
|
568
583
|
} & {
|
|
569
584
|
name: import("../types").WidgetsName.ArticleImage;
|
|
@@ -601,10 +616,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
601
616
|
}[] | undefined;
|
|
602
617
|
} & {
|
|
603
618
|
css?: Record<string, string> | undefined;
|
|
604
|
-
widgets
|
|
605
|
-
}>
|
|
606
|
-
title: string;
|
|
607
|
-
}) | ({
|
|
619
|
+
widgets?: any[] | undefined;
|
|
620
|
+
}>) | ({
|
|
608
621
|
layers?: string[] | undefined;
|
|
609
622
|
} & {
|
|
610
623
|
name: import("../types").WidgetsName.ArticleAttachment;
|
|
@@ -642,10 +655,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
642
655
|
}[] | undefined;
|
|
643
656
|
} & {
|
|
644
657
|
css?: Record<string, string> | undefined;
|
|
645
|
-
widgets
|
|
646
|
-
}>
|
|
647
|
-
title: string;
|
|
648
|
-
}) | ({
|
|
658
|
+
widgets?: any[] | undefined;
|
|
659
|
+
}>) | ({
|
|
649
660
|
layers?: string[] | undefined;
|
|
650
661
|
} & {
|
|
651
662
|
name: import("../types").WidgetsName.Api;
|
|
@@ -673,10 +684,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
673
684
|
}[] | undefined;
|
|
674
685
|
} & {
|
|
675
686
|
css?: Record<string, string> | undefined;
|
|
676
|
-
widgets
|
|
677
|
-
}>
|
|
678
|
-
title: string;
|
|
679
|
-
}) | ({
|
|
687
|
+
widgets?: any[] | undefined;
|
|
688
|
+
}>) | ({
|
|
680
689
|
layers?: string[] | undefined;
|
|
681
690
|
} & {
|
|
682
691
|
name: import("../types").WidgetsName.ArticleSlider;
|
|
@@ -725,10 +734,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
725
734
|
}[] | undefined;
|
|
726
735
|
} & {
|
|
727
736
|
css?: Record<string, string> | undefined;
|
|
728
|
-
widgets
|
|
729
|
-
}>
|
|
730
|
-
title: string;
|
|
731
|
-
}) | ({
|
|
737
|
+
widgets?: any[] | undefined;
|
|
738
|
+
}>) | ({
|
|
732
739
|
layers?: string[] | undefined;
|
|
733
740
|
} & import("../types").WidgetType<{
|
|
734
741
|
arr?: {
|
|
@@ -747,10 +754,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
747
754
|
}[] | undefined;
|
|
748
755
|
} & {
|
|
749
756
|
css?: Record<string, string> | undefined;
|
|
750
|
-
widgets
|
|
757
|
+
widgets?: any[] | undefined;
|
|
751
758
|
}> & {
|
|
752
|
-
title: string;
|
|
753
|
-
} & {
|
|
754
759
|
name: import("../types").WidgetsName.ArticleButton;
|
|
755
760
|
uniqid: string;
|
|
756
761
|
content: {
|
|
@@ -795,10 +800,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
795
800
|
}[] | undefined;
|
|
796
801
|
} & {
|
|
797
802
|
css?: Record<string, string> | undefined;
|
|
798
|
-
widgets
|
|
803
|
+
widgets?: any[] | undefined;
|
|
799
804
|
}> & {
|
|
800
|
-
title: string;
|
|
801
|
-
} & {
|
|
802
805
|
name: import("../types").WidgetsName.ArticleGallery;
|
|
803
806
|
uniqid: string;
|
|
804
807
|
content: {
|
|
@@ -837,10 +840,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
837
840
|
}[] | undefined;
|
|
838
841
|
} & {
|
|
839
842
|
css?: Record<string, string> | undefined;
|
|
840
|
-
widgets
|
|
843
|
+
widgets?: any[] | undefined;
|
|
841
844
|
}> & {
|
|
842
|
-
title: string;
|
|
843
|
-
} & {
|
|
844
845
|
name: import("../types").WidgetsName.ArticleTitle;
|
|
845
846
|
uniqid: string;
|
|
846
847
|
content: {
|
|
@@ -869,10 +870,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
869
870
|
}[] | undefined;
|
|
870
871
|
} & {
|
|
871
872
|
css?: Record<string, string> | undefined;
|
|
872
|
-
widgets
|
|
873
|
+
widgets?: any[] | undefined;
|
|
873
874
|
}> & {
|
|
874
|
-
title: string;
|
|
875
|
-
} & {
|
|
876
875
|
name: import("../types").WidgetsName.ArticleText;
|
|
877
876
|
uniqid: string;
|
|
878
877
|
content: {
|
|
@@ -901,10 +900,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
901
900
|
}[] | undefined;
|
|
902
901
|
} & {
|
|
903
902
|
css?: Record<string, string> | undefined;
|
|
904
|
-
widgets
|
|
903
|
+
widgets?: any[] | undefined;
|
|
905
904
|
}> & {
|
|
906
|
-
title: string;
|
|
907
|
-
} & {
|
|
908
905
|
name: import("../types").WidgetsName.ArticleImage;
|
|
909
906
|
uniqid: string;
|
|
910
907
|
content: {
|
|
@@ -942,10 +939,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
942
939
|
}[] | undefined;
|
|
943
940
|
} & {
|
|
944
941
|
css?: Record<string, string> | undefined;
|
|
945
|
-
widgets
|
|
942
|
+
widgets?: any[] | undefined;
|
|
946
943
|
}> & {
|
|
947
|
-
title: string;
|
|
948
|
-
} & {
|
|
949
944
|
name: import("../types").WidgetsName.ArticleAttachment;
|
|
950
945
|
uniqid: string;
|
|
951
946
|
content: {
|
|
@@ -983,10 +978,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
983
978
|
}[] | undefined;
|
|
984
979
|
} & {
|
|
985
980
|
css?: Record<string, string> | undefined;
|
|
986
|
-
widgets
|
|
981
|
+
widgets?: any[] | undefined;
|
|
987
982
|
}> & {
|
|
988
|
-
title: string;
|
|
989
|
-
} & {
|
|
990
983
|
name: import("../types").WidgetsName.Api;
|
|
991
984
|
uniqid: string;
|
|
992
985
|
content: {
|
|
@@ -1014,10 +1007,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1014
1007
|
}[] | undefined;
|
|
1015
1008
|
} & {
|
|
1016
1009
|
css?: Record<string, string> | undefined;
|
|
1017
|
-
widgets
|
|
1010
|
+
widgets?: any[] | undefined;
|
|
1018
1011
|
}> & {
|
|
1019
|
-
title: string;
|
|
1020
|
-
} & {
|
|
1021
1012
|
name: import("../types").WidgetsName.ArticleSlider;
|
|
1022
1013
|
uniqid: string;
|
|
1023
1014
|
content: {
|
|
@@ -1047,7 +1038,93 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1047
1038
|
useDots?: boolean | undefined;
|
|
1048
1039
|
startAt?: number | undefined;
|
|
1049
1040
|
};
|
|
1050
|
-
})
|
|
1041
|
+
}) | ({
|
|
1042
|
+
layers?: string[] | undefined;
|
|
1043
|
+
} & import("../types").WidgetType<{
|
|
1044
|
+
arr?: {
|
|
1045
|
+
title: string;
|
|
1046
|
+
value?: boolean | undefined;
|
|
1047
|
+
links?: {
|
|
1048
|
+
href: string;
|
|
1049
|
+
target: string;
|
|
1050
|
+
}[] | undefined;
|
|
1051
|
+
id?: number | undefined;
|
|
1052
|
+
user?: {
|
|
1053
|
+
type: "user";
|
|
1054
|
+
id: number;
|
|
1055
|
+
mainType: "user";
|
|
1056
|
+
} | undefined;
|
|
1057
|
+
}[] | undefined;
|
|
1058
|
+
} & {
|
|
1059
|
+
css?: Record<string, string> | undefined;
|
|
1060
|
+
widgets?: any[] | undefined;
|
|
1061
|
+
}> & {
|
|
1062
|
+
name: import("../types").WidgetsName.DatasourceTable;
|
|
1063
|
+
uniqid: string;
|
|
1064
|
+
content: {
|
|
1065
|
+
limit?: number | undefined;
|
|
1066
|
+
tableColumnsData?: {
|
|
1067
|
+
name?: string | undefined;
|
|
1068
|
+
isVisible?: boolean | undefined;
|
|
1069
|
+
textEllipsis?: boolean | undefined;
|
|
1070
|
+
label?: string | undefined;
|
|
1071
|
+
dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
|
|
1072
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
1073
|
+
}[] | undefined;
|
|
1074
|
+
tableHeadColor?: string | undefined;
|
|
1075
|
+
tableHeadTextColor?: string | undefined;
|
|
1076
|
+
tableHeadIconColor?: string | undefined;
|
|
1077
|
+
tableRowColor?: string | undefined;
|
|
1078
|
+
tableRowTextColor?: string | undefined;
|
|
1079
|
+
tableBorderRadius?: number | undefined;
|
|
1080
|
+
tableSizedColumns?: boolean | undefined;
|
|
1081
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
1082
|
+
uri?: string | undefined;
|
|
1083
|
+
};
|
|
1084
|
+
}) | ({
|
|
1085
|
+
layers?: string[] | undefined;
|
|
1086
|
+
} & {
|
|
1087
|
+
name: import("../types").WidgetsName.DatasourceTable;
|
|
1088
|
+
uniqid: string;
|
|
1089
|
+
content: {
|
|
1090
|
+
limit?: number | undefined;
|
|
1091
|
+
tableColumnsData?: {
|
|
1092
|
+
name?: string | undefined;
|
|
1093
|
+
isVisible?: boolean | undefined;
|
|
1094
|
+
textEllipsis?: boolean | undefined;
|
|
1095
|
+
label?: string | undefined;
|
|
1096
|
+
dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
|
|
1097
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
1098
|
+
}[] | undefined;
|
|
1099
|
+
tableHeadColor?: string | undefined;
|
|
1100
|
+
tableHeadTextColor?: string | undefined;
|
|
1101
|
+
tableHeadIconColor?: string | undefined;
|
|
1102
|
+
tableRowColor?: string | undefined;
|
|
1103
|
+
tableRowTextColor?: string | undefined;
|
|
1104
|
+
tableBorderRadius?: number | undefined;
|
|
1105
|
+
tableSizedColumns?: boolean | undefined;
|
|
1106
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
1107
|
+
uri?: string | undefined;
|
|
1108
|
+
};
|
|
1109
|
+
} & import("../types").WidgetType<{
|
|
1110
|
+
arr?: {
|
|
1111
|
+
title: string;
|
|
1112
|
+
value?: boolean | undefined;
|
|
1113
|
+
links?: {
|
|
1114
|
+
href: string;
|
|
1115
|
+
target: string;
|
|
1116
|
+
}[] | undefined;
|
|
1117
|
+
id?: number | undefined;
|
|
1118
|
+
user?: {
|
|
1119
|
+
type: "user";
|
|
1120
|
+
id: number;
|
|
1121
|
+
mainType: "user";
|
|
1122
|
+
} | undefined;
|
|
1123
|
+
}[] | undefined;
|
|
1124
|
+
} & {
|
|
1125
|
+
css?: Record<string, string> | undefined;
|
|
1126
|
+
widgets?: any[] | undefined;
|
|
1127
|
+
}>);
|
|
1051
1128
|
}[] | undefined;
|
|
1052
1129
|
} = {
|
|
1053
1130
|
type: string;
|
|
@@ -1293,9 +1370,32 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1293
1370
|
}[] | undefined;
|
|
1294
1371
|
} & {
|
|
1295
1372
|
css?: Record<string, string> | undefined;
|
|
1296
|
-
widgets
|
|
1297
|
-
}>
|
|
1298
|
-
|
|
1373
|
+
widgets?: any[] | undefined;
|
|
1374
|
+
}>) | ({
|
|
1375
|
+
layers?: string[] | undefined;
|
|
1376
|
+
} & {
|
|
1377
|
+
name: import("../types").WidgetsName.DatasourceTable;
|
|
1378
|
+
uniqid: string;
|
|
1379
|
+
content: {
|
|
1380
|
+
limit?: number | undefined;
|
|
1381
|
+
tableColumnsData?: {
|
|
1382
|
+
name?: string | undefined;
|
|
1383
|
+
isVisible?: boolean | undefined;
|
|
1384
|
+
textEllipsis?: boolean | undefined;
|
|
1385
|
+
label?: string | undefined;
|
|
1386
|
+
dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
|
|
1387
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
1388
|
+
}[] | undefined;
|
|
1389
|
+
tableHeadColor?: string | undefined;
|
|
1390
|
+
tableHeadTextColor?: string | undefined;
|
|
1391
|
+
tableHeadIconColor?: string | undefined;
|
|
1392
|
+
tableRowColor?: string | undefined;
|
|
1393
|
+
tableRowTextColor?: string | undefined;
|
|
1394
|
+
tableBorderRadius?: number | undefined;
|
|
1395
|
+
tableSizedColumns?: boolean | undefined;
|
|
1396
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
1397
|
+
uri?: string | undefined;
|
|
1398
|
+
};
|
|
1299
1399
|
}) | ({
|
|
1300
1400
|
layers?: string[] | undefined;
|
|
1301
1401
|
} & {
|
|
@@ -1341,10 +1441,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1341
1441
|
}[] | undefined;
|
|
1342
1442
|
} & {
|
|
1343
1443
|
css?: Record<string, string> | undefined;
|
|
1344
|
-
widgets
|
|
1345
|
-
}>
|
|
1346
|
-
title: string;
|
|
1347
|
-
}) | ({
|
|
1444
|
+
widgets?: any[] | undefined;
|
|
1445
|
+
}>) | ({
|
|
1348
1446
|
layers?: string[] | undefined;
|
|
1349
1447
|
} & {
|
|
1350
1448
|
name: import("../types").WidgetsName.ArticleGallery;
|
|
@@ -1383,10 +1481,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1383
1481
|
}[] | undefined;
|
|
1384
1482
|
} & {
|
|
1385
1483
|
css?: Record<string, string> | undefined;
|
|
1386
|
-
widgets
|
|
1387
|
-
}>
|
|
1388
|
-
title: string;
|
|
1389
|
-
}) | ({
|
|
1484
|
+
widgets?: any[] | undefined;
|
|
1485
|
+
}>) | ({
|
|
1390
1486
|
layers?: string[] | undefined;
|
|
1391
1487
|
} & {
|
|
1392
1488
|
name: import("../types").WidgetsName.ArticleTitle;
|
|
@@ -1415,10 +1511,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1415
1511
|
}[] | undefined;
|
|
1416
1512
|
} & {
|
|
1417
1513
|
css?: Record<string, string> | undefined;
|
|
1418
|
-
widgets
|
|
1419
|
-
}>
|
|
1420
|
-
title: string;
|
|
1421
|
-
}) | ({
|
|
1514
|
+
widgets?: any[] | undefined;
|
|
1515
|
+
}>) | ({
|
|
1422
1516
|
layers?: string[] | undefined;
|
|
1423
1517
|
} & {
|
|
1424
1518
|
name: import("../types").WidgetsName.ArticleText;
|
|
@@ -1447,10 +1541,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1447
1541
|
}[] | undefined;
|
|
1448
1542
|
} & {
|
|
1449
1543
|
css?: Record<string, string> | undefined;
|
|
1450
|
-
widgets
|
|
1451
|
-
}>
|
|
1452
|
-
title: string;
|
|
1453
|
-
}) | ({
|
|
1544
|
+
widgets?: any[] | undefined;
|
|
1545
|
+
}>) | ({
|
|
1454
1546
|
layers?: string[] | undefined;
|
|
1455
1547
|
} & {
|
|
1456
1548
|
name: import("../types").WidgetsName.ArticleImage;
|
|
@@ -1488,10 +1580,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1488
1580
|
}[] | undefined;
|
|
1489
1581
|
} & {
|
|
1490
1582
|
css?: Record<string, string> | undefined;
|
|
1491
|
-
widgets
|
|
1492
|
-
}>
|
|
1493
|
-
title: string;
|
|
1494
|
-
}) | ({
|
|
1583
|
+
widgets?: any[] | undefined;
|
|
1584
|
+
}>) | ({
|
|
1495
1585
|
layers?: string[] | undefined;
|
|
1496
1586
|
} & {
|
|
1497
1587
|
name: import("../types").WidgetsName.ArticleAttachment;
|
|
@@ -1529,10 +1619,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1529
1619
|
}[] | undefined;
|
|
1530
1620
|
} & {
|
|
1531
1621
|
css?: Record<string, string> | undefined;
|
|
1532
|
-
widgets
|
|
1533
|
-
}>
|
|
1534
|
-
title: string;
|
|
1535
|
-
}) | ({
|
|
1622
|
+
widgets?: any[] | undefined;
|
|
1623
|
+
}>) | ({
|
|
1536
1624
|
layers?: string[] | undefined;
|
|
1537
1625
|
} & {
|
|
1538
1626
|
name: import("../types").WidgetsName.Api;
|
|
@@ -1560,10 +1648,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1560
1648
|
}[] | undefined;
|
|
1561
1649
|
} & {
|
|
1562
1650
|
css?: Record<string, string> | undefined;
|
|
1563
|
-
widgets
|
|
1564
|
-
}>
|
|
1565
|
-
title: string;
|
|
1566
|
-
}) | ({
|
|
1651
|
+
widgets?: any[] | undefined;
|
|
1652
|
+
}>) | ({
|
|
1567
1653
|
layers?: string[] | undefined;
|
|
1568
1654
|
} & {
|
|
1569
1655
|
name: import("../types").WidgetsName.ArticleSlider;
|
|
@@ -1612,10 +1698,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1612
1698
|
}[] | undefined;
|
|
1613
1699
|
} & {
|
|
1614
1700
|
css?: Record<string, string> | undefined;
|
|
1615
|
-
widgets
|
|
1616
|
-
}>
|
|
1617
|
-
title: string;
|
|
1618
|
-
}) | ({
|
|
1701
|
+
widgets?: any[] | undefined;
|
|
1702
|
+
}>) | ({
|
|
1619
1703
|
layers?: string[] | undefined;
|
|
1620
1704
|
} & import("../types").WidgetType<{
|
|
1621
1705
|
arr?: {
|
|
@@ -1634,10 +1718,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1634
1718
|
}[] | undefined;
|
|
1635
1719
|
} & {
|
|
1636
1720
|
css?: Record<string, string> | undefined;
|
|
1637
|
-
widgets
|
|
1721
|
+
widgets?: any[] | undefined;
|
|
1638
1722
|
}> & {
|
|
1639
|
-
title: string;
|
|
1640
|
-
} & {
|
|
1641
1723
|
name: import("../types").WidgetsName.ArticleButton;
|
|
1642
1724
|
uniqid: string;
|
|
1643
1725
|
content: {
|
|
@@ -1682,10 +1764,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1682
1764
|
}[] | undefined;
|
|
1683
1765
|
} & {
|
|
1684
1766
|
css?: Record<string, string> | undefined;
|
|
1685
|
-
widgets
|
|
1767
|
+
widgets?: any[] | undefined;
|
|
1686
1768
|
}> & {
|
|
1687
|
-
title: string;
|
|
1688
|
-
} & {
|
|
1689
1769
|
name: import("../types").WidgetsName.ArticleGallery;
|
|
1690
1770
|
uniqid: string;
|
|
1691
1771
|
content: {
|
|
@@ -1724,10 +1804,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1724
1804
|
}[] | undefined;
|
|
1725
1805
|
} & {
|
|
1726
1806
|
css?: Record<string, string> | undefined;
|
|
1727
|
-
widgets
|
|
1807
|
+
widgets?: any[] | undefined;
|
|
1728
1808
|
}> & {
|
|
1729
|
-
title: string;
|
|
1730
|
-
} & {
|
|
1731
1809
|
name: import("../types").WidgetsName.ArticleTitle;
|
|
1732
1810
|
uniqid: string;
|
|
1733
1811
|
content: {
|
|
@@ -1756,10 +1834,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1756
1834
|
}[] | undefined;
|
|
1757
1835
|
} & {
|
|
1758
1836
|
css?: Record<string, string> | undefined;
|
|
1759
|
-
widgets
|
|
1837
|
+
widgets?: any[] | undefined;
|
|
1760
1838
|
}> & {
|
|
1761
|
-
title: string;
|
|
1762
|
-
} & {
|
|
1763
1839
|
name: import("../types").WidgetsName.ArticleText;
|
|
1764
1840
|
uniqid: string;
|
|
1765
1841
|
content: {
|
|
@@ -1788,10 +1864,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1788
1864
|
}[] | undefined;
|
|
1789
1865
|
} & {
|
|
1790
1866
|
css?: Record<string, string> | undefined;
|
|
1791
|
-
widgets
|
|
1867
|
+
widgets?: any[] | undefined;
|
|
1792
1868
|
}> & {
|
|
1793
|
-
title: string;
|
|
1794
|
-
} & {
|
|
1795
1869
|
name: import("../types").WidgetsName.ArticleImage;
|
|
1796
1870
|
uniqid: string;
|
|
1797
1871
|
content: {
|
|
@@ -1829,10 +1903,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1829
1903
|
}[] | undefined;
|
|
1830
1904
|
} & {
|
|
1831
1905
|
css?: Record<string, string> | undefined;
|
|
1832
|
-
widgets
|
|
1906
|
+
widgets?: any[] | undefined;
|
|
1833
1907
|
}> & {
|
|
1834
|
-
title: string;
|
|
1835
|
-
} & {
|
|
1836
1908
|
name: import("../types").WidgetsName.ArticleAttachment;
|
|
1837
1909
|
uniqid: string;
|
|
1838
1910
|
content: {
|
|
@@ -1870,10 +1942,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1870
1942
|
}[] | undefined;
|
|
1871
1943
|
} & {
|
|
1872
1944
|
css?: Record<string, string> | undefined;
|
|
1873
|
-
widgets
|
|
1945
|
+
widgets?: any[] | undefined;
|
|
1874
1946
|
}> & {
|
|
1875
|
-
title: string;
|
|
1876
|
-
} & {
|
|
1877
1947
|
name: import("../types").WidgetsName.Api;
|
|
1878
1948
|
uniqid: string;
|
|
1879
1949
|
content: {
|
|
@@ -1901,10 +1971,8 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1901
1971
|
}[] | undefined;
|
|
1902
1972
|
} & {
|
|
1903
1973
|
css?: Record<string, string> | undefined;
|
|
1904
|
-
widgets
|
|
1974
|
+
widgets?: any[] | undefined;
|
|
1905
1975
|
}> & {
|
|
1906
|
-
title: string;
|
|
1907
|
-
} & {
|
|
1908
1976
|
name: import("../types").WidgetsName.ArticleSlider;
|
|
1909
1977
|
uniqid: string;
|
|
1910
1978
|
content: {
|
|
@@ -1934,7 +2002,93 @@ export declare const validateArticleIsFormatList: <T extends {
|
|
|
1934
2002
|
useDots?: boolean | undefined;
|
|
1935
2003
|
startAt?: number | undefined;
|
|
1936
2004
|
};
|
|
1937
|
-
})
|
|
2005
|
+
}) | ({
|
|
2006
|
+
layers?: string[] | undefined;
|
|
2007
|
+
} & import("../types").WidgetType<{
|
|
2008
|
+
arr?: {
|
|
2009
|
+
title: string;
|
|
2010
|
+
value?: boolean | undefined;
|
|
2011
|
+
links?: {
|
|
2012
|
+
href: string;
|
|
2013
|
+
target: string;
|
|
2014
|
+
}[] | undefined;
|
|
2015
|
+
id?: number | undefined;
|
|
2016
|
+
user?: {
|
|
2017
|
+
type: "user";
|
|
2018
|
+
id: number;
|
|
2019
|
+
mainType: "user";
|
|
2020
|
+
} | undefined;
|
|
2021
|
+
}[] | undefined;
|
|
2022
|
+
} & {
|
|
2023
|
+
css?: Record<string, string> | undefined;
|
|
2024
|
+
widgets?: any[] | undefined;
|
|
2025
|
+
}> & {
|
|
2026
|
+
name: import("../types").WidgetsName.DatasourceTable;
|
|
2027
|
+
uniqid: string;
|
|
2028
|
+
content: {
|
|
2029
|
+
limit?: number | undefined;
|
|
2030
|
+
tableColumnsData?: {
|
|
2031
|
+
name?: string | undefined;
|
|
2032
|
+
isVisible?: boolean | undefined;
|
|
2033
|
+
textEllipsis?: boolean | undefined;
|
|
2034
|
+
label?: string | undefined;
|
|
2035
|
+
dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
|
|
2036
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
2037
|
+
}[] | undefined;
|
|
2038
|
+
tableHeadColor?: string | undefined;
|
|
2039
|
+
tableHeadTextColor?: string | undefined;
|
|
2040
|
+
tableHeadIconColor?: string | undefined;
|
|
2041
|
+
tableRowColor?: string | undefined;
|
|
2042
|
+
tableRowTextColor?: string | undefined;
|
|
2043
|
+
tableBorderRadius?: number | undefined;
|
|
2044
|
+
tableSizedColumns?: boolean | undefined;
|
|
2045
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
2046
|
+
uri?: string | undefined;
|
|
2047
|
+
};
|
|
2048
|
+
}) | ({
|
|
2049
|
+
layers?: string[] | undefined;
|
|
2050
|
+
} & {
|
|
2051
|
+
name: import("../types").WidgetsName.DatasourceTable;
|
|
2052
|
+
uniqid: string;
|
|
2053
|
+
content: {
|
|
2054
|
+
limit?: number | undefined;
|
|
2055
|
+
tableColumnsData?: {
|
|
2056
|
+
name?: string | undefined;
|
|
2057
|
+
isVisible?: boolean | undefined;
|
|
2058
|
+
textEllipsis?: boolean | undefined;
|
|
2059
|
+
label?: string | undefined;
|
|
2060
|
+
dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
|
|
2061
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
2062
|
+
}[] | undefined;
|
|
2063
|
+
tableHeadColor?: string | undefined;
|
|
2064
|
+
tableHeadTextColor?: string | undefined;
|
|
2065
|
+
tableHeadIconColor?: string | undefined;
|
|
2066
|
+
tableRowColor?: string | undefined;
|
|
2067
|
+
tableRowTextColor?: string | undefined;
|
|
2068
|
+
tableBorderRadius?: number | undefined;
|
|
2069
|
+
tableSizedColumns?: boolean | undefined;
|
|
2070
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
2071
|
+
uri?: string | undefined;
|
|
2072
|
+
};
|
|
2073
|
+
} & import("../types").WidgetType<{
|
|
2074
|
+
arr?: {
|
|
2075
|
+
title: string;
|
|
2076
|
+
value?: boolean | undefined;
|
|
2077
|
+
links?: {
|
|
2078
|
+
href: string;
|
|
2079
|
+
target: string;
|
|
2080
|
+
}[] | undefined;
|
|
2081
|
+
id?: number | undefined;
|
|
2082
|
+
user?: {
|
|
2083
|
+
type: "user";
|
|
2084
|
+
id: number;
|
|
2085
|
+
mainType: "user";
|
|
2086
|
+
} | undefined;
|
|
2087
|
+
}[] | undefined;
|
|
2088
|
+
} & {
|
|
2089
|
+
css?: Record<string, string> | undefined;
|
|
2090
|
+
widgets?: any[] | undefined;
|
|
2091
|
+
}>);
|
|
1938
2092
|
}[] | undefined;
|
|
1939
2093
|
}>(object: T) => void;
|
|
1940
2094
|
export declare const validateArticleIsFormatView: <T extends {
|
|
@@ -2194,9 +2348,32 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2194
2348
|
}[] | undefined;
|
|
2195
2349
|
} & {
|
|
2196
2350
|
css?: Record<string, string> | undefined;
|
|
2197
|
-
widgets
|
|
2198
|
-
}>
|
|
2199
|
-
|
|
2351
|
+
widgets?: any[] | undefined;
|
|
2352
|
+
}>) | ({
|
|
2353
|
+
layers?: string[] | undefined;
|
|
2354
|
+
} & {
|
|
2355
|
+
name: import("../types").WidgetsName.DatasourceTable;
|
|
2356
|
+
uniqid: string;
|
|
2357
|
+
content: {
|
|
2358
|
+
limit?: number | undefined;
|
|
2359
|
+
tableColumnsData?: {
|
|
2360
|
+
name?: string | undefined;
|
|
2361
|
+
isVisible?: boolean | undefined;
|
|
2362
|
+
textEllipsis?: boolean | undefined;
|
|
2363
|
+
label?: string | undefined;
|
|
2364
|
+
dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
|
|
2365
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
2366
|
+
}[] | undefined;
|
|
2367
|
+
tableHeadColor?: string | undefined;
|
|
2368
|
+
tableHeadTextColor?: string | undefined;
|
|
2369
|
+
tableHeadIconColor?: string | undefined;
|
|
2370
|
+
tableRowColor?: string | undefined;
|
|
2371
|
+
tableRowTextColor?: string | undefined;
|
|
2372
|
+
tableBorderRadius?: number | undefined;
|
|
2373
|
+
tableSizedColumns?: boolean | undefined;
|
|
2374
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
2375
|
+
uri?: string | undefined;
|
|
2376
|
+
};
|
|
2200
2377
|
}) | ({
|
|
2201
2378
|
layers?: string[] | undefined;
|
|
2202
2379
|
} & {
|
|
@@ -2242,10 +2419,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2242
2419
|
}[] | undefined;
|
|
2243
2420
|
} & {
|
|
2244
2421
|
css?: Record<string, string> | undefined;
|
|
2245
|
-
widgets
|
|
2246
|
-
}>
|
|
2247
|
-
title: string;
|
|
2248
|
-
}) | ({
|
|
2422
|
+
widgets?: any[] | undefined;
|
|
2423
|
+
}>) | ({
|
|
2249
2424
|
layers?: string[] | undefined;
|
|
2250
2425
|
} & {
|
|
2251
2426
|
name: import("../types").WidgetsName.ArticleGallery;
|
|
@@ -2284,10 +2459,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2284
2459
|
}[] | undefined;
|
|
2285
2460
|
} & {
|
|
2286
2461
|
css?: Record<string, string> | undefined;
|
|
2287
|
-
widgets
|
|
2288
|
-
}>
|
|
2289
|
-
title: string;
|
|
2290
|
-
}) | ({
|
|
2462
|
+
widgets?: any[] | undefined;
|
|
2463
|
+
}>) | ({
|
|
2291
2464
|
layers?: string[] | undefined;
|
|
2292
2465
|
} & {
|
|
2293
2466
|
name: import("../types").WidgetsName.ArticleTitle;
|
|
@@ -2316,10 +2489,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2316
2489
|
}[] | undefined;
|
|
2317
2490
|
} & {
|
|
2318
2491
|
css?: Record<string, string> | undefined;
|
|
2319
|
-
widgets
|
|
2320
|
-
}>
|
|
2321
|
-
title: string;
|
|
2322
|
-
}) | ({
|
|
2492
|
+
widgets?: any[] | undefined;
|
|
2493
|
+
}>) | ({
|
|
2323
2494
|
layers?: string[] | undefined;
|
|
2324
2495
|
} & {
|
|
2325
2496
|
name: import("../types").WidgetsName.ArticleText;
|
|
@@ -2348,10 +2519,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2348
2519
|
}[] | undefined;
|
|
2349
2520
|
} & {
|
|
2350
2521
|
css?: Record<string, string> | undefined;
|
|
2351
|
-
widgets
|
|
2352
|
-
}>
|
|
2353
|
-
title: string;
|
|
2354
|
-
}) | ({
|
|
2522
|
+
widgets?: any[] | undefined;
|
|
2523
|
+
}>) | ({
|
|
2355
2524
|
layers?: string[] | undefined;
|
|
2356
2525
|
} & {
|
|
2357
2526
|
name: import("../types").WidgetsName.ArticleImage;
|
|
@@ -2389,10 +2558,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2389
2558
|
}[] | undefined;
|
|
2390
2559
|
} & {
|
|
2391
2560
|
css?: Record<string, string> | undefined;
|
|
2392
|
-
widgets
|
|
2393
|
-
}>
|
|
2394
|
-
title: string;
|
|
2395
|
-
}) | ({
|
|
2561
|
+
widgets?: any[] | undefined;
|
|
2562
|
+
}>) | ({
|
|
2396
2563
|
layers?: string[] | undefined;
|
|
2397
2564
|
} & {
|
|
2398
2565
|
name: import("../types").WidgetsName.ArticleAttachment;
|
|
@@ -2430,10 +2597,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2430
2597
|
}[] | undefined;
|
|
2431
2598
|
} & {
|
|
2432
2599
|
css?: Record<string, string> | undefined;
|
|
2433
|
-
widgets
|
|
2434
|
-
}>
|
|
2435
|
-
title: string;
|
|
2436
|
-
}) | ({
|
|
2600
|
+
widgets?: any[] | undefined;
|
|
2601
|
+
}>) | ({
|
|
2437
2602
|
layers?: string[] | undefined;
|
|
2438
2603
|
} & {
|
|
2439
2604
|
name: import("../types").WidgetsName.Api;
|
|
@@ -2461,10 +2626,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2461
2626
|
}[] | undefined;
|
|
2462
2627
|
} & {
|
|
2463
2628
|
css?: Record<string, string> | undefined;
|
|
2464
|
-
widgets
|
|
2465
|
-
}>
|
|
2466
|
-
title: string;
|
|
2467
|
-
}) | ({
|
|
2629
|
+
widgets?: any[] | undefined;
|
|
2630
|
+
}>) | ({
|
|
2468
2631
|
layers?: string[] | undefined;
|
|
2469
2632
|
} & {
|
|
2470
2633
|
name: import("../types").WidgetsName.ArticleSlider;
|
|
@@ -2513,10 +2676,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2513
2676
|
}[] | undefined;
|
|
2514
2677
|
} & {
|
|
2515
2678
|
css?: Record<string, string> | undefined;
|
|
2516
|
-
widgets
|
|
2517
|
-
}>
|
|
2518
|
-
title: string;
|
|
2519
|
-
}) | ({
|
|
2679
|
+
widgets?: any[] | undefined;
|
|
2680
|
+
}>) | ({
|
|
2520
2681
|
layers?: string[] | undefined;
|
|
2521
2682
|
} & import("../types").WidgetType<{
|
|
2522
2683
|
arr?: {
|
|
@@ -2535,10 +2696,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2535
2696
|
}[] | undefined;
|
|
2536
2697
|
} & {
|
|
2537
2698
|
css?: Record<string, string> | undefined;
|
|
2538
|
-
widgets
|
|
2699
|
+
widgets?: any[] | undefined;
|
|
2539
2700
|
}> & {
|
|
2540
|
-
title: string;
|
|
2541
|
-
} & {
|
|
2542
2701
|
name: import("../types").WidgetsName.ArticleButton;
|
|
2543
2702
|
uniqid: string;
|
|
2544
2703
|
content: {
|
|
@@ -2583,10 +2742,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2583
2742
|
}[] | undefined;
|
|
2584
2743
|
} & {
|
|
2585
2744
|
css?: Record<string, string> | undefined;
|
|
2586
|
-
widgets
|
|
2745
|
+
widgets?: any[] | undefined;
|
|
2587
2746
|
}> & {
|
|
2588
|
-
title: string;
|
|
2589
|
-
} & {
|
|
2590
2747
|
name: import("../types").WidgetsName.ArticleGallery;
|
|
2591
2748
|
uniqid: string;
|
|
2592
2749
|
content: {
|
|
@@ -2625,10 +2782,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2625
2782
|
}[] | undefined;
|
|
2626
2783
|
} & {
|
|
2627
2784
|
css?: Record<string, string> | undefined;
|
|
2628
|
-
widgets
|
|
2785
|
+
widgets?: any[] | undefined;
|
|
2629
2786
|
}> & {
|
|
2630
|
-
title: string;
|
|
2631
|
-
} & {
|
|
2632
2787
|
name: import("../types").WidgetsName.ArticleTitle;
|
|
2633
2788
|
uniqid: string;
|
|
2634
2789
|
content: {
|
|
@@ -2657,10 +2812,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2657
2812
|
}[] | undefined;
|
|
2658
2813
|
} & {
|
|
2659
2814
|
css?: Record<string, string> | undefined;
|
|
2660
|
-
widgets
|
|
2815
|
+
widgets?: any[] | undefined;
|
|
2661
2816
|
}> & {
|
|
2662
|
-
title: string;
|
|
2663
|
-
} & {
|
|
2664
2817
|
name: import("../types").WidgetsName.ArticleText;
|
|
2665
2818
|
uniqid: string;
|
|
2666
2819
|
content: {
|
|
@@ -2689,10 +2842,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2689
2842
|
}[] | undefined;
|
|
2690
2843
|
} & {
|
|
2691
2844
|
css?: Record<string, string> | undefined;
|
|
2692
|
-
widgets
|
|
2845
|
+
widgets?: any[] | undefined;
|
|
2693
2846
|
}> & {
|
|
2694
|
-
title: string;
|
|
2695
|
-
} & {
|
|
2696
2847
|
name: import("../types").WidgetsName.ArticleImage;
|
|
2697
2848
|
uniqid: string;
|
|
2698
2849
|
content: {
|
|
@@ -2730,10 +2881,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2730
2881
|
}[] | undefined;
|
|
2731
2882
|
} & {
|
|
2732
2883
|
css?: Record<string, string> | undefined;
|
|
2733
|
-
widgets
|
|
2884
|
+
widgets?: any[] | undefined;
|
|
2734
2885
|
}> & {
|
|
2735
|
-
title: string;
|
|
2736
|
-
} & {
|
|
2737
2886
|
name: import("../types").WidgetsName.ArticleAttachment;
|
|
2738
2887
|
uniqid: string;
|
|
2739
2888
|
content: {
|
|
@@ -2771,10 +2920,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2771
2920
|
}[] | undefined;
|
|
2772
2921
|
} & {
|
|
2773
2922
|
css?: Record<string, string> | undefined;
|
|
2774
|
-
widgets
|
|
2923
|
+
widgets?: any[] | undefined;
|
|
2775
2924
|
}> & {
|
|
2776
|
-
title: string;
|
|
2777
|
-
} & {
|
|
2778
2925
|
name: import("../types").WidgetsName.Api;
|
|
2779
2926
|
uniqid: string;
|
|
2780
2927
|
content: {
|
|
@@ -2802,10 +2949,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2802
2949
|
}[] | undefined;
|
|
2803
2950
|
} & {
|
|
2804
2951
|
css?: Record<string, string> | undefined;
|
|
2805
|
-
widgets
|
|
2952
|
+
widgets?: any[] | undefined;
|
|
2806
2953
|
}> & {
|
|
2807
|
-
title: string;
|
|
2808
|
-
} & {
|
|
2809
2954
|
name: import("../types").WidgetsName.ArticleSlider;
|
|
2810
2955
|
uniqid: string;
|
|
2811
2956
|
content: {
|
|
@@ -2835,7 +2980,93 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
2835
2980
|
useDots?: boolean | undefined;
|
|
2836
2981
|
startAt?: number | undefined;
|
|
2837
2982
|
};
|
|
2838
|
-
})
|
|
2983
|
+
}) | ({
|
|
2984
|
+
layers?: string[] | undefined;
|
|
2985
|
+
} & import("../types").WidgetType<{
|
|
2986
|
+
arr?: {
|
|
2987
|
+
title: string;
|
|
2988
|
+
value?: boolean | undefined;
|
|
2989
|
+
links?: {
|
|
2990
|
+
href: string;
|
|
2991
|
+
target: string;
|
|
2992
|
+
}[] | undefined;
|
|
2993
|
+
id?: number | undefined;
|
|
2994
|
+
user?: {
|
|
2995
|
+
type: "user";
|
|
2996
|
+
id: number;
|
|
2997
|
+
mainType: "user";
|
|
2998
|
+
} | undefined;
|
|
2999
|
+
}[] | undefined;
|
|
3000
|
+
} & {
|
|
3001
|
+
css?: Record<string, string> | undefined;
|
|
3002
|
+
widgets?: any[] | undefined;
|
|
3003
|
+
}> & {
|
|
3004
|
+
name: import("../types").WidgetsName.DatasourceTable;
|
|
3005
|
+
uniqid: string;
|
|
3006
|
+
content: {
|
|
3007
|
+
limit?: number | undefined;
|
|
3008
|
+
tableColumnsData?: {
|
|
3009
|
+
name?: string | undefined;
|
|
3010
|
+
isVisible?: boolean | undefined;
|
|
3011
|
+
textEllipsis?: boolean | undefined;
|
|
3012
|
+
label?: string | undefined;
|
|
3013
|
+
dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
|
|
3014
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
3015
|
+
}[] | undefined;
|
|
3016
|
+
tableHeadColor?: string | undefined;
|
|
3017
|
+
tableHeadTextColor?: string | undefined;
|
|
3018
|
+
tableHeadIconColor?: string | undefined;
|
|
3019
|
+
tableRowColor?: string | undefined;
|
|
3020
|
+
tableRowTextColor?: string | undefined;
|
|
3021
|
+
tableBorderRadius?: number | undefined;
|
|
3022
|
+
tableSizedColumns?: boolean | undefined;
|
|
3023
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
3024
|
+
uri?: string | undefined;
|
|
3025
|
+
};
|
|
3026
|
+
}) | ({
|
|
3027
|
+
layers?: string[] | undefined;
|
|
3028
|
+
} & {
|
|
3029
|
+
name: import("../types").WidgetsName.DatasourceTable;
|
|
3030
|
+
uniqid: string;
|
|
3031
|
+
content: {
|
|
3032
|
+
limit?: number | undefined;
|
|
3033
|
+
tableColumnsData?: {
|
|
3034
|
+
name?: string | undefined;
|
|
3035
|
+
isVisible?: boolean | undefined;
|
|
3036
|
+
textEllipsis?: boolean | undefined;
|
|
3037
|
+
label?: string | undefined;
|
|
3038
|
+
dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
|
|
3039
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
3040
|
+
}[] | undefined;
|
|
3041
|
+
tableHeadColor?: string | undefined;
|
|
3042
|
+
tableHeadTextColor?: string | undefined;
|
|
3043
|
+
tableHeadIconColor?: string | undefined;
|
|
3044
|
+
tableRowColor?: string | undefined;
|
|
3045
|
+
tableRowTextColor?: string | undefined;
|
|
3046
|
+
tableBorderRadius?: number | undefined;
|
|
3047
|
+
tableSizedColumns?: boolean | undefined;
|
|
3048
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
3049
|
+
uri?: string | undefined;
|
|
3050
|
+
};
|
|
3051
|
+
} & import("../types").WidgetType<{
|
|
3052
|
+
arr?: {
|
|
3053
|
+
title: string;
|
|
3054
|
+
value?: boolean | undefined;
|
|
3055
|
+
links?: {
|
|
3056
|
+
href: string;
|
|
3057
|
+
target: string;
|
|
3058
|
+
}[] | undefined;
|
|
3059
|
+
id?: number | undefined;
|
|
3060
|
+
user?: {
|
|
3061
|
+
type: "user";
|
|
3062
|
+
id: number;
|
|
3063
|
+
mainType: "user";
|
|
3064
|
+
} | undefined;
|
|
3065
|
+
}[] | undefined;
|
|
3066
|
+
} & {
|
|
3067
|
+
css?: Record<string, string> | undefined;
|
|
3068
|
+
widgets?: any[] | undefined;
|
|
3069
|
+
}>);
|
|
2839
3070
|
}[] | undefined;
|
|
2840
3071
|
} = {
|
|
2841
3072
|
type: string;
|
|
@@ -3094,9 +3325,32 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3094
3325
|
}[] | undefined;
|
|
3095
3326
|
} & {
|
|
3096
3327
|
css?: Record<string, string> | undefined;
|
|
3097
|
-
widgets
|
|
3098
|
-
}>
|
|
3099
|
-
|
|
3328
|
+
widgets?: any[] | undefined;
|
|
3329
|
+
}>) | ({
|
|
3330
|
+
layers?: string[] | undefined;
|
|
3331
|
+
} & {
|
|
3332
|
+
name: import("../types").WidgetsName.DatasourceTable;
|
|
3333
|
+
uniqid: string;
|
|
3334
|
+
content: {
|
|
3335
|
+
limit?: number | undefined;
|
|
3336
|
+
tableColumnsData?: {
|
|
3337
|
+
name?: string | undefined;
|
|
3338
|
+
isVisible?: boolean | undefined;
|
|
3339
|
+
textEllipsis?: boolean | undefined;
|
|
3340
|
+
label?: string | undefined;
|
|
3341
|
+
dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
|
|
3342
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
3343
|
+
}[] | undefined;
|
|
3344
|
+
tableHeadColor?: string | undefined;
|
|
3345
|
+
tableHeadTextColor?: string | undefined;
|
|
3346
|
+
tableHeadIconColor?: string | undefined;
|
|
3347
|
+
tableRowColor?: string | undefined;
|
|
3348
|
+
tableRowTextColor?: string | undefined;
|
|
3349
|
+
tableBorderRadius?: number | undefined;
|
|
3350
|
+
tableSizedColumns?: boolean | undefined;
|
|
3351
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
3352
|
+
uri?: string | undefined;
|
|
3353
|
+
};
|
|
3100
3354
|
}) | ({
|
|
3101
3355
|
layers?: string[] | undefined;
|
|
3102
3356
|
} & {
|
|
@@ -3142,10 +3396,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3142
3396
|
}[] | undefined;
|
|
3143
3397
|
} & {
|
|
3144
3398
|
css?: Record<string, string> | undefined;
|
|
3145
|
-
widgets
|
|
3146
|
-
}>
|
|
3147
|
-
title: string;
|
|
3148
|
-
}) | ({
|
|
3399
|
+
widgets?: any[] | undefined;
|
|
3400
|
+
}>) | ({
|
|
3149
3401
|
layers?: string[] | undefined;
|
|
3150
3402
|
} & {
|
|
3151
3403
|
name: import("../types").WidgetsName.ArticleGallery;
|
|
@@ -3184,10 +3436,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3184
3436
|
}[] | undefined;
|
|
3185
3437
|
} & {
|
|
3186
3438
|
css?: Record<string, string> | undefined;
|
|
3187
|
-
widgets
|
|
3188
|
-
}>
|
|
3189
|
-
title: string;
|
|
3190
|
-
}) | ({
|
|
3439
|
+
widgets?: any[] | undefined;
|
|
3440
|
+
}>) | ({
|
|
3191
3441
|
layers?: string[] | undefined;
|
|
3192
3442
|
} & {
|
|
3193
3443
|
name: import("../types").WidgetsName.ArticleTitle;
|
|
@@ -3216,10 +3466,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3216
3466
|
}[] | undefined;
|
|
3217
3467
|
} & {
|
|
3218
3468
|
css?: Record<string, string> | undefined;
|
|
3219
|
-
widgets
|
|
3220
|
-
}>
|
|
3221
|
-
title: string;
|
|
3222
|
-
}) | ({
|
|
3469
|
+
widgets?: any[] | undefined;
|
|
3470
|
+
}>) | ({
|
|
3223
3471
|
layers?: string[] | undefined;
|
|
3224
3472
|
} & {
|
|
3225
3473
|
name: import("../types").WidgetsName.ArticleText;
|
|
@@ -3248,10 +3496,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3248
3496
|
}[] | undefined;
|
|
3249
3497
|
} & {
|
|
3250
3498
|
css?: Record<string, string> | undefined;
|
|
3251
|
-
widgets
|
|
3252
|
-
}>
|
|
3253
|
-
title: string;
|
|
3254
|
-
}) | ({
|
|
3499
|
+
widgets?: any[] | undefined;
|
|
3500
|
+
}>) | ({
|
|
3255
3501
|
layers?: string[] | undefined;
|
|
3256
3502
|
} & {
|
|
3257
3503
|
name: import("../types").WidgetsName.ArticleImage;
|
|
@@ -3289,10 +3535,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3289
3535
|
}[] | undefined;
|
|
3290
3536
|
} & {
|
|
3291
3537
|
css?: Record<string, string> | undefined;
|
|
3292
|
-
widgets
|
|
3293
|
-
}>
|
|
3294
|
-
title: string;
|
|
3295
|
-
}) | ({
|
|
3538
|
+
widgets?: any[] | undefined;
|
|
3539
|
+
}>) | ({
|
|
3296
3540
|
layers?: string[] | undefined;
|
|
3297
3541
|
} & {
|
|
3298
3542
|
name: import("../types").WidgetsName.ArticleAttachment;
|
|
@@ -3330,10 +3574,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3330
3574
|
}[] | undefined;
|
|
3331
3575
|
} & {
|
|
3332
3576
|
css?: Record<string, string> | undefined;
|
|
3333
|
-
widgets
|
|
3334
|
-
}>
|
|
3335
|
-
title: string;
|
|
3336
|
-
}) | ({
|
|
3577
|
+
widgets?: any[] | undefined;
|
|
3578
|
+
}>) | ({
|
|
3337
3579
|
layers?: string[] | undefined;
|
|
3338
3580
|
} & {
|
|
3339
3581
|
name: import("../types").WidgetsName.Api;
|
|
@@ -3361,10 +3603,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3361
3603
|
}[] | undefined;
|
|
3362
3604
|
} & {
|
|
3363
3605
|
css?: Record<string, string> | undefined;
|
|
3364
|
-
widgets
|
|
3365
|
-
}>
|
|
3366
|
-
title: string;
|
|
3367
|
-
}) | ({
|
|
3606
|
+
widgets?: any[] | undefined;
|
|
3607
|
+
}>) | ({
|
|
3368
3608
|
layers?: string[] | undefined;
|
|
3369
3609
|
} & {
|
|
3370
3610
|
name: import("../types").WidgetsName.ArticleSlider;
|
|
@@ -3413,10 +3653,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3413
3653
|
}[] | undefined;
|
|
3414
3654
|
} & {
|
|
3415
3655
|
css?: Record<string, string> | undefined;
|
|
3416
|
-
widgets
|
|
3417
|
-
}>
|
|
3418
|
-
title: string;
|
|
3419
|
-
}) | ({
|
|
3656
|
+
widgets?: any[] | undefined;
|
|
3657
|
+
}>) | ({
|
|
3420
3658
|
layers?: string[] | undefined;
|
|
3421
3659
|
} & import("../types").WidgetType<{
|
|
3422
3660
|
arr?: {
|
|
@@ -3435,10 +3673,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3435
3673
|
}[] | undefined;
|
|
3436
3674
|
} & {
|
|
3437
3675
|
css?: Record<string, string> | undefined;
|
|
3438
|
-
widgets
|
|
3676
|
+
widgets?: any[] | undefined;
|
|
3439
3677
|
}> & {
|
|
3440
|
-
title: string;
|
|
3441
|
-
} & {
|
|
3442
3678
|
name: import("../types").WidgetsName.ArticleButton;
|
|
3443
3679
|
uniqid: string;
|
|
3444
3680
|
content: {
|
|
@@ -3483,10 +3719,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3483
3719
|
}[] | undefined;
|
|
3484
3720
|
} & {
|
|
3485
3721
|
css?: Record<string, string> | undefined;
|
|
3486
|
-
widgets
|
|
3722
|
+
widgets?: any[] | undefined;
|
|
3487
3723
|
}> & {
|
|
3488
|
-
title: string;
|
|
3489
|
-
} & {
|
|
3490
3724
|
name: import("../types").WidgetsName.ArticleGallery;
|
|
3491
3725
|
uniqid: string;
|
|
3492
3726
|
content: {
|
|
@@ -3525,10 +3759,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3525
3759
|
}[] | undefined;
|
|
3526
3760
|
} & {
|
|
3527
3761
|
css?: Record<string, string> | undefined;
|
|
3528
|
-
widgets
|
|
3762
|
+
widgets?: any[] | undefined;
|
|
3529
3763
|
}> & {
|
|
3530
|
-
title: string;
|
|
3531
|
-
} & {
|
|
3532
3764
|
name: import("../types").WidgetsName.ArticleTitle;
|
|
3533
3765
|
uniqid: string;
|
|
3534
3766
|
content: {
|
|
@@ -3557,10 +3789,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3557
3789
|
}[] | undefined;
|
|
3558
3790
|
} & {
|
|
3559
3791
|
css?: Record<string, string> | undefined;
|
|
3560
|
-
widgets
|
|
3792
|
+
widgets?: any[] | undefined;
|
|
3561
3793
|
}> & {
|
|
3562
|
-
title: string;
|
|
3563
|
-
} & {
|
|
3564
3794
|
name: import("../types").WidgetsName.ArticleText;
|
|
3565
3795
|
uniqid: string;
|
|
3566
3796
|
content: {
|
|
@@ -3589,10 +3819,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3589
3819
|
}[] | undefined;
|
|
3590
3820
|
} & {
|
|
3591
3821
|
css?: Record<string, string> | undefined;
|
|
3592
|
-
widgets
|
|
3822
|
+
widgets?: any[] | undefined;
|
|
3593
3823
|
}> & {
|
|
3594
|
-
title: string;
|
|
3595
|
-
} & {
|
|
3596
3824
|
name: import("../types").WidgetsName.ArticleImage;
|
|
3597
3825
|
uniqid: string;
|
|
3598
3826
|
content: {
|
|
@@ -3630,10 +3858,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3630
3858
|
}[] | undefined;
|
|
3631
3859
|
} & {
|
|
3632
3860
|
css?: Record<string, string> | undefined;
|
|
3633
|
-
widgets
|
|
3861
|
+
widgets?: any[] | undefined;
|
|
3634
3862
|
}> & {
|
|
3635
|
-
title: string;
|
|
3636
|
-
} & {
|
|
3637
3863
|
name: import("../types").WidgetsName.ArticleAttachment;
|
|
3638
3864
|
uniqid: string;
|
|
3639
3865
|
content: {
|
|
@@ -3671,10 +3897,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3671
3897
|
}[] | undefined;
|
|
3672
3898
|
} & {
|
|
3673
3899
|
css?: Record<string, string> | undefined;
|
|
3674
|
-
widgets
|
|
3900
|
+
widgets?: any[] | undefined;
|
|
3675
3901
|
}> & {
|
|
3676
|
-
title: string;
|
|
3677
|
-
} & {
|
|
3678
3902
|
name: import("../types").WidgetsName.Api;
|
|
3679
3903
|
uniqid: string;
|
|
3680
3904
|
content: {
|
|
@@ -3702,10 +3926,8 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3702
3926
|
}[] | undefined;
|
|
3703
3927
|
} & {
|
|
3704
3928
|
css?: Record<string, string> | undefined;
|
|
3705
|
-
widgets
|
|
3929
|
+
widgets?: any[] | undefined;
|
|
3706
3930
|
}> & {
|
|
3707
|
-
title: string;
|
|
3708
|
-
} & {
|
|
3709
3931
|
name: import("../types").WidgetsName.ArticleSlider;
|
|
3710
3932
|
uniqid: string;
|
|
3711
3933
|
content: {
|
|
@@ -3735,7 +3957,93 @@ export declare const validateArticleIsFormatView: <T extends {
|
|
|
3735
3957
|
useDots?: boolean | undefined;
|
|
3736
3958
|
startAt?: number | undefined;
|
|
3737
3959
|
};
|
|
3738
|
-
})
|
|
3960
|
+
}) | ({
|
|
3961
|
+
layers?: string[] | undefined;
|
|
3962
|
+
} & import("../types").WidgetType<{
|
|
3963
|
+
arr?: {
|
|
3964
|
+
title: string;
|
|
3965
|
+
value?: boolean | undefined;
|
|
3966
|
+
links?: {
|
|
3967
|
+
href: string;
|
|
3968
|
+
target: string;
|
|
3969
|
+
}[] | undefined;
|
|
3970
|
+
id?: number | undefined;
|
|
3971
|
+
user?: {
|
|
3972
|
+
type: "user";
|
|
3973
|
+
id: number;
|
|
3974
|
+
mainType: "user";
|
|
3975
|
+
} | undefined;
|
|
3976
|
+
}[] | undefined;
|
|
3977
|
+
} & {
|
|
3978
|
+
css?: Record<string, string> | undefined;
|
|
3979
|
+
widgets?: any[] | undefined;
|
|
3980
|
+
}> & {
|
|
3981
|
+
name: import("../types").WidgetsName.DatasourceTable;
|
|
3982
|
+
uniqid: string;
|
|
3983
|
+
content: {
|
|
3984
|
+
limit?: number | undefined;
|
|
3985
|
+
tableColumnsData?: {
|
|
3986
|
+
name?: string | undefined;
|
|
3987
|
+
isVisible?: boolean | undefined;
|
|
3988
|
+
textEllipsis?: boolean | undefined;
|
|
3989
|
+
label?: string | undefined;
|
|
3990
|
+
dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
|
|
3991
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
3992
|
+
}[] | undefined;
|
|
3993
|
+
tableHeadColor?: string | undefined;
|
|
3994
|
+
tableHeadTextColor?: string | undefined;
|
|
3995
|
+
tableHeadIconColor?: string | undefined;
|
|
3996
|
+
tableRowColor?: string | undefined;
|
|
3997
|
+
tableRowTextColor?: string | undefined;
|
|
3998
|
+
tableBorderRadius?: number | undefined;
|
|
3999
|
+
tableSizedColumns?: boolean | undefined;
|
|
4000
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
4001
|
+
uri?: string | undefined;
|
|
4002
|
+
};
|
|
4003
|
+
}) | ({
|
|
4004
|
+
layers?: string[] | undefined;
|
|
4005
|
+
} & {
|
|
4006
|
+
name: import("../types").WidgetsName.DatasourceTable;
|
|
4007
|
+
uniqid: string;
|
|
4008
|
+
content: {
|
|
4009
|
+
limit?: number | undefined;
|
|
4010
|
+
tableColumnsData?: {
|
|
4011
|
+
name?: string | undefined;
|
|
4012
|
+
isVisible?: boolean | undefined;
|
|
4013
|
+
textEllipsis?: boolean | undefined;
|
|
4014
|
+
label?: string | undefined;
|
|
4015
|
+
dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
|
|
4016
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
4017
|
+
}[] | undefined;
|
|
4018
|
+
tableHeadColor?: string | undefined;
|
|
4019
|
+
tableHeadTextColor?: string | undefined;
|
|
4020
|
+
tableHeadIconColor?: string | undefined;
|
|
4021
|
+
tableRowColor?: string | undefined;
|
|
4022
|
+
tableRowTextColor?: string | undefined;
|
|
4023
|
+
tableBorderRadius?: number | undefined;
|
|
4024
|
+
tableSizedColumns?: boolean | undefined;
|
|
4025
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
4026
|
+
uri?: string | undefined;
|
|
4027
|
+
};
|
|
4028
|
+
} & import("../types").WidgetType<{
|
|
4029
|
+
arr?: {
|
|
4030
|
+
title: string;
|
|
4031
|
+
value?: boolean | undefined;
|
|
4032
|
+
links?: {
|
|
4033
|
+
href: string;
|
|
4034
|
+
target: string;
|
|
4035
|
+
}[] | undefined;
|
|
4036
|
+
id?: number | undefined;
|
|
4037
|
+
user?: {
|
|
4038
|
+
type: "user";
|
|
4039
|
+
id: number;
|
|
4040
|
+
mainType: "user";
|
|
4041
|
+
} | undefined;
|
|
4042
|
+
}[] | undefined;
|
|
4043
|
+
} & {
|
|
4044
|
+
css?: Record<string, string> | undefined;
|
|
4045
|
+
widgets?: any[] | undefined;
|
|
4046
|
+
}>);
|
|
3739
4047
|
}[] | undefined;
|
|
3740
4048
|
}>(object: T) => void;
|
|
3741
4049
|
export declare const validateObjectIsFormatAutocomplete: <T extends {
|