@pitcher/js-api 1.26.0-beta.4 → 1.26.0-beta.6
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/js-api.esm.js +27 -5
- package/js-api.esm.js.map +1 -1
- package/js-api.umd.min.js +8 -8
- package/js-api.umd.min.js.map +1 -1
- package/lib/apps/browser/components/Content/ActionsToolbar/BulkShareboxWarningModal.vue.d.ts +15 -0
- package/lib/apps/browser/components/Content/ActionsToolbar/SelectionActions.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/App.vue.d.ts +2 -0
- package/lib/apps/canvas-builder/components/container/NavigationWrapper/NavigationWrapper.vue.d.ts +5 -1
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.edit.vue.d.ts +2 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.raw.header.vue.d.ts +19 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.raw.vue.d.ts +13 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.settings.vue.d.ts +10 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.utils.d.ts +32 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.vue.d.ts +27 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +723 -9
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +150 -0
- package/lib/apps/canvas-builder/composables/useCanvasCompletionWizard.d.ts +1 -1
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +150 -0
- package/lib/apps/canvas-builder/composables/useCanvasPages.d.ts +1 -1
- package/lib/apps/canvas-builder/composables/useCanvasSectionOverrides.d.ts +1 -1
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +3 -0
- package/lib/apps/canvas-builder/composables/useCanvasVisibility.d.ts +1 -1
- package/lib/apps/canvas-builder/composables/useControlBarCollapse.d.ts +8 -0
- package/lib/apps/canvas-builder/composables/useReorderComponent.d.ts +3 -3
- package/lib/apps/canvas-builder/composables/useScribbleChild.d.ts +1 -1
- package/lib/apps/canvas-builder/composables/useTemporaryContext.d.ts +14 -0
- package/lib/apps/canvas-builder/constants/theme.const.d.ts +34 -0
- package/lib/apps/canvas-builder/types/canvas.d.ts +29 -1
- package/lib/apps/canvas-builder/util/canvas.util.d.ts +4 -4
- package/lib/apps/canvas-builder/util/print.util.d.ts +2 -9
- package/lib/components/CAlgoliaSearch/CAlgoliaSearch.vue.d.ts +6 -3
- package/lib/components/CBulkToolbar/CBulkToolbar.vue.d.ts +2 -0
- package/lib/components/CComponentListItem/CComponentListItem.vue.d.ts +8 -8
- package/lib/components/CContentError/CContentError.vue.d.ts +1 -0
- package/lib/components/CFileViewer/CFileViewer.vue.d.ts +4 -0
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.link.types.d.ts +3 -2
- package/lib/components/CFileViewer/pdf/CFileViewerBottom.pdf.vue.d.ts +1 -0
- package/lib/components/CMonacoEditor/CMonacoEditor.vue.d.ts +2 -0
- package/lib/components/CPdfDimensionsSelector/CPdfDimensionsSelector.vue.d.ts +27 -0
- package/lib/components/CTable/CTable.vue.d.ts +6 -5
- package/lib/components/assignedCanvases/CAssignedCanvasesManagement.vue.d.ts +2 -0
- package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +2 -0
- package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +2 -0
- package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +4 -0
- package/lib/components/savedCanvases/smartFolders/SmartFolders.vue.d.ts +1 -0
- package/lib/components/sections/CSectionManagement.vue.d.ts +2 -0
- package/lib/components/themes/CThemeManagement.vue.d.ts +2 -0
- package/lib/constants/dimensions.const.d.ts +23 -0
- package/lib/directives/vTrustedHtml.d.ts +6 -0
- package/lib/main.lib.d.ts +1 -0
- package/lib/sdk/api/HighLevelApi.d.ts +18 -0
- package/lib/sdk/api/modules/dsr/types.dsr.d.ts +5 -1
- package/lib/sdk/api/modules/ui/types.ui.d.ts +2 -0
- package/lib/sdk/interfaces.d.ts +12 -1
- package/lib/sdk/main.d.ts +15 -11
- package/lib/types/instanceSettings.types.d.ts +2 -0
- package/lib/types/launchDarkly.types.d.ts +1 -1
- package/lib/types/organizationSettings.types.d.ts +2 -0
- package/package.json +1 -1
- package/lib/modules/algolia-instantsearch.d.ts +0 -1
|
@@ -369,6 +369,81 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
369
369
|
} | undefined;
|
|
370
370
|
}[];
|
|
371
371
|
readonly layout: "vertical" | "horizontal";
|
|
372
|
+
} | {
|
|
373
|
+
readonly filters?: readonly {
|
|
374
|
+
readonly property: string;
|
|
375
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
376
|
+
readonly value: string;
|
|
377
|
+
}[] | undefined;
|
|
378
|
+
readonly layout: "column" | "row";
|
|
379
|
+
readonly page_size?: number | undefined;
|
|
380
|
+
readonly path: string;
|
|
381
|
+
readonly properties: readonly {
|
|
382
|
+
readonly key: string;
|
|
383
|
+
readonly display_name?: string | undefined;
|
|
384
|
+
readonly sort: {
|
|
385
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
386
|
+
readonly default?: boolean | undefined;
|
|
387
|
+
readonly enabled: boolean;
|
|
388
|
+
};
|
|
389
|
+
readonly group?: boolean | undefined;
|
|
390
|
+
readonly printable?: boolean | undefined;
|
|
391
|
+
readonly format?: {
|
|
392
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
393
|
+
readonly currency?: string | undefined;
|
|
394
|
+
readonly decimals?: number | undefined;
|
|
395
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
396
|
+
readonly dateFormat?: string | undefined;
|
|
397
|
+
} | undefined;
|
|
398
|
+
}[];
|
|
399
|
+
readonly theme?: {
|
|
400
|
+
readonly background_color?: string | null | undefined;
|
|
401
|
+
readonly group_header_color?: string | null | undefined;
|
|
402
|
+
readonly font_family?: string | undefined;
|
|
403
|
+
} | undefined;
|
|
404
|
+
readonly break_groups_on_new_page?: boolean | undefined;
|
|
405
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
406
|
+
readonly striping_color?: string | null | undefined;
|
|
407
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
408
|
+
} | {
|
|
409
|
+
readonly hierarchy: readonly {
|
|
410
|
+
readonly type: "group" | "data";
|
|
411
|
+
readonly path: string;
|
|
412
|
+
readonly group_by_key?: string | undefined;
|
|
413
|
+
}[];
|
|
414
|
+
readonly columns: readonly {
|
|
415
|
+
readonly key: string;
|
|
416
|
+
readonly display_name?: string | undefined;
|
|
417
|
+
readonly sort: {
|
|
418
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
419
|
+
readonly default?: boolean | undefined;
|
|
420
|
+
readonly enabled: boolean;
|
|
421
|
+
};
|
|
422
|
+
readonly group?: boolean | undefined;
|
|
423
|
+
readonly printable?: boolean | undefined;
|
|
424
|
+
readonly format?: {
|
|
425
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
426
|
+
readonly currency?: string | undefined;
|
|
427
|
+
readonly decimals?: number | undefined;
|
|
428
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
429
|
+
readonly dateFormat?: string | undefined;
|
|
430
|
+
} | undefined;
|
|
431
|
+
}[];
|
|
432
|
+
readonly header_path?: string | undefined;
|
|
433
|
+
readonly footer_path?: string | undefined;
|
|
434
|
+
readonly filters?: readonly {
|
|
435
|
+
readonly property: string;
|
|
436
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
437
|
+
readonly value: string;
|
|
438
|
+
}[] | undefined;
|
|
439
|
+
readonly theme?: {
|
|
440
|
+
readonly background_color?: string | null | undefined;
|
|
441
|
+
readonly group_header_color?: string | null | undefined;
|
|
442
|
+
readonly font_family?: string | undefined;
|
|
443
|
+
} | undefined;
|
|
444
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
445
|
+
readonly striping_color?: string | null | undefined;
|
|
446
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
372
447
|
} | undefined;
|
|
373
448
|
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
374
449
|
readonly when_used_in_section?: {
|
|
@@ -754,6 +829,81 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
754
829
|
} | undefined;
|
|
755
830
|
}[];
|
|
756
831
|
readonly layout: "vertical" | "horizontal";
|
|
832
|
+
} | {
|
|
833
|
+
readonly filters?: readonly {
|
|
834
|
+
readonly property: string;
|
|
835
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
836
|
+
readonly value: string;
|
|
837
|
+
}[] | undefined;
|
|
838
|
+
readonly layout: "column" | "row";
|
|
839
|
+
readonly page_size?: number | undefined;
|
|
840
|
+
readonly path: string;
|
|
841
|
+
readonly properties: readonly {
|
|
842
|
+
readonly key: string;
|
|
843
|
+
readonly display_name?: string | undefined;
|
|
844
|
+
readonly sort: {
|
|
845
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
846
|
+
readonly default?: boolean | undefined;
|
|
847
|
+
readonly enabled: boolean;
|
|
848
|
+
};
|
|
849
|
+
readonly group?: boolean | undefined;
|
|
850
|
+
readonly printable?: boolean | undefined;
|
|
851
|
+
readonly format?: {
|
|
852
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
853
|
+
readonly currency?: string | undefined;
|
|
854
|
+
readonly decimals?: number | undefined;
|
|
855
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
856
|
+
readonly dateFormat?: string | undefined;
|
|
857
|
+
} | undefined;
|
|
858
|
+
}[];
|
|
859
|
+
readonly theme?: {
|
|
860
|
+
readonly background_color?: string | null | undefined;
|
|
861
|
+
readonly group_header_color?: string | null | undefined;
|
|
862
|
+
readonly font_family?: string | undefined;
|
|
863
|
+
} | undefined;
|
|
864
|
+
readonly break_groups_on_new_page?: boolean | undefined;
|
|
865
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
866
|
+
readonly striping_color?: string | null | undefined;
|
|
867
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
868
|
+
} | {
|
|
869
|
+
readonly hierarchy: readonly {
|
|
870
|
+
readonly type: "group" | "data";
|
|
871
|
+
readonly path: string;
|
|
872
|
+
readonly group_by_key?: string | undefined;
|
|
873
|
+
}[];
|
|
874
|
+
readonly columns: readonly {
|
|
875
|
+
readonly key: string;
|
|
876
|
+
readonly display_name?: string | undefined;
|
|
877
|
+
readonly sort: {
|
|
878
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
879
|
+
readonly default?: boolean | undefined;
|
|
880
|
+
readonly enabled: boolean;
|
|
881
|
+
};
|
|
882
|
+
readonly group?: boolean | undefined;
|
|
883
|
+
readonly printable?: boolean | undefined;
|
|
884
|
+
readonly format?: {
|
|
885
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
886
|
+
readonly currency?: string | undefined;
|
|
887
|
+
readonly decimals?: number | undefined;
|
|
888
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
889
|
+
readonly dateFormat?: string | undefined;
|
|
890
|
+
} | undefined;
|
|
891
|
+
}[];
|
|
892
|
+
readonly header_path?: string | undefined;
|
|
893
|
+
readonly footer_path?: string | undefined;
|
|
894
|
+
readonly filters?: readonly {
|
|
895
|
+
readonly property: string;
|
|
896
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
897
|
+
readonly value: string;
|
|
898
|
+
}[] | undefined;
|
|
899
|
+
readonly theme?: {
|
|
900
|
+
readonly background_color?: string | null | undefined;
|
|
901
|
+
readonly group_header_color?: string | null | undefined;
|
|
902
|
+
readonly font_family?: string | undefined;
|
|
903
|
+
} | undefined;
|
|
904
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
905
|
+
readonly striping_color?: string | null | undefined;
|
|
906
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
757
907
|
} | undefined;
|
|
758
908
|
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
759
909
|
readonly when_used_in_section?: {
|
|
@@ -779,6 +929,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
779
929
|
};
|
|
780
930
|
};
|
|
781
931
|
}>;
|
|
932
|
+
declare const onSave: Ref<CanvasBuilderProps['onSave'] | ((...data: any[]) => Promise<void>)>;
|
|
782
933
|
declare function exitFullscreen(options?: {
|
|
783
934
|
skipJsApiEvent?: boolean;
|
|
784
935
|
}): void;
|
|
@@ -788,6 +939,7 @@ declare function enterFullscreen(options?: {
|
|
|
788
939
|
declare function saveCanvasContent({ showToast }?: {
|
|
789
940
|
showToast: boolean;
|
|
790
941
|
}): Promise<void>;
|
|
942
|
+
declare function save(canvasId: Parameters<NonNullable<typeof onSave.value>>[0], canvas: Parameters<NonNullable<typeof onSave.value>>[1], showToast?: Parameters<NonNullable<typeof onSave.value>>[2]): Promise<void | CanvasRetrieve>;
|
|
791
943
|
declare function saveCanvasContext(context: any, { showToast }?: {
|
|
792
944
|
showToast?: boolean;
|
|
793
945
|
}): Promise<undefined>;
|
|
@@ -1289,6 +1441,81 @@ export default function useCanvas(): {
|
|
|
1289
1441
|
} | undefined;
|
|
1290
1442
|
}[];
|
|
1291
1443
|
readonly layout: "vertical" | "horizontal";
|
|
1444
|
+
} | {
|
|
1445
|
+
readonly filters?: readonly {
|
|
1446
|
+
readonly property: string;
|
|
1447
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
1448
|
+
readonly value: string;
|
|
1449
|
+
}[] | undefined;
|
|
1450
|
+
readonly layout: "column" | "row";
|
|
1451
|
+
readonly page_size?: number | undefined;
|
|
1452
|
+
readonly path: string;
|
|
1453
|
+
readonly properties: readonly {
|
|
1454
|
+
readonly key: string;
|
|
1455
|
+
readonly display_name?: string | undefined;
|
|
1456
|
+
readonly sort: {
|
|
1457
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
1458
|
+
readonly default?: boolean | undefined;
|
|
1459
|
+
readonly enabled: boolean;
|
|
1460
|
+
};
|
|
1461
|
+
readonly group?: boolean | undefined;
|
|
1462
|
+
readonly printable?: boolean | undefined;
|
|
1463
|
+
readonly format?: {
|
|
1464
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
1465
|
+
readonly currency?: string | undefined;
|
|
1466
|
+
readonly decimals?: number | undefined;
|
|
1467
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
1468
|
+
readonly dateFormat?: string | undefined;
|
|
1469
|
+
} | undefined;
|
|
1470
|
+
}[];
|
|
1471
|
+
readonly theme?: {
|
|
1472
|
+
readonly background_color?: string | null | undefined;
|
|
1473
|
+
readonly group_header_color?: string | null | undefined;
|
|
1474
|
+
readonly font_family?: string | undefined;
|
|
1475
|
+
} | undefined;
|
|
1476
|
+
readonly break_groups_on_new_page?: boolean | undefined;
|
|
1477
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
1478
|
+
readonly striping_color?: string | null | undefined;
|
|
1479
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
1480
|
+
} | {
|
|
1481
|
+
readonly hierarchy: readonly {
|
|
1482
|
+
readonly type: "group" | "data";
|
|
1483
|
+
readonly path: string;
|
|
1484
|
+
readonly group_by_key?: string | undefined;
|
|
1485
|
+
}[];
|
|
1486
|
+
readonly columns: readonly {
|
|
1487
|
+
readonly key: string;
|
|
1488
|
+
readonly display_name?: string | undefined;
|
|
1489
|
+
readonly sort: {
|
|
1490
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
1491
|
+
readonly default?: boolean | undefined;
|
|
1492
|
+
readonly enabled: boolean;
|
|
1493
|
+
};
|
|
1494
|
+
readonly group?: boolean | undefined;
|
|
1495
|
+
readonly printable?: boolean | undefined;
|
|
1496
|
+
readonly format?: {
|
|
1497
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
1498
|
+
readonly currency?: string | undefined;
|
|
1499
|
+
readonly decimals?: number | undefined;
|
|
1500
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
1501
|
+
readonly dateFormat?: string | undefined;
|
|
1502
|
+
} | undefined;
|
|
1503
|
+
}[];
|
|
1504
|
+
readonly header_path?: string | undefined;
|
|
1505
|
+
readonly footer_path?: string | undefined;
|
|
1506
|
+
readonly filters?: readonly {
|
|
1507
|
+
readonly property: string;
|
|
1508
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
1509
|
+
readonly value: string;
|
|
1510
|
+
}[] | undefined;
|
|
1511
|
+
readonly theme?: {
|
|
1512
|
+
readonly background_color?: string | null | undefined;
|
|
1513
|
+
readonly group_header_color?: string | null | undefined;
|
|
1514
|
+
readonly font_family?: string | undefined;
|
|
1515
|
+
} | undefined;
|
|
1516
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
1517
|
+
readonly striping_color?: string | null | undefined;
|
|
1518
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
1292
1519
|
} | undefined;
|
|
1293
1520
|
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
1294
1521
|
readonly when_used_in_section?: {
|
|
@@ -1686,6 +1913,81 @@ export default function useCanvas(): {
|
|
|
1686
1913
|
} | undefined;
|
|
1687
1914
|
}[];
|
|
1688
1915
|
readonly layout: "vertical" | "horizontal";
|
|
1916
|
+
} | {
|
|
1917
|
+
readonly filters?: readonly {
|
|
1918
|
+
readonly property: string;
|
|
1919
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
1920
|
+
readonly value: string;
|
|
1921
|
+
}[] | undefined;
|
|
1922
|
+
readonly layout: "column" | "row";
|
|
1923
|
+
readonly page_size?: number | undefined;
|
|
1924
|
+
readonly path: string;
|
|
1925
|
+
readonly properties: readonly {
|
|
1926
|
+
readonly key: string;
|
|
1927
|
+
readonly display_name?: string | undefined;
|
|
1928
|
+
readonly sort: {
|
|
1929
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
1930
|
+
readonly default?: boolean | undefined;
|
|
1931
|
+
readonly enabled: boolean;
|
|
1932
|
+
};
|
|
1933
|
+
readonly group?: boolean | undefined;
|
|
1934
|
+
readonly printable?: boolean | undefined;
|
|
1935
|
+
readonly format?: {
|
|
1936
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
1937
|
+
readonly currency?: string | undefined;
|
|
1938
|
+
readonly decimals?: number | undefined;
|
|
1939
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
1940
|
+
readonly dateFormat?: string | undefined;
|
|
1941
|
+
} | undefined;
|
|
1942
|
+
}[];
|
|
1943
|
+
readonly theme?: {
|
|
1944
|
+
readonly background_color?: string | null | undefined;
|
|
1945
|
+
readonly group_header_color?: string | null | undefined;
|
|
1946
|
+
readonly font_family?: string | undefined;
|
|
1947
|
+
} | undefined;
|
|
1948
|
+
readonly break_groups_on_new_page?: boolean | undefined;
|
|
1949
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
1950
|
+
readonly striping_color?: string | null | undefined;
|
|
1951
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
1952
|
+
} | {
|
|
1953
|
+
readonly hierarchy: readonly {
|
|
1954
|
+
readonly type: "group" | "data";
|
|
1955
|
+
readonly path: string;
|
|
1956
|
+
readonly group_by_key?: string | undefined;
|
|
1957
|
+
}[];
|
|
1958
|
+
readonly columns: readonly {
|
|
1959
|
+
readonly key: string;
|
|
1960
|
+
readonly display_name?: string | undefined;
|
|
1961
|
+
readonly sort: {
|
|
1962
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
1963
|
+
readonly default?: boolean | undefined;
|
|
1964
|
+
readonly enabled: boolean;
|
|
1965
|
+
};
|
|
1966
|
+
readonly group?: boolean | undefined;
|
|
1967
|
+
readonly printable?: boolean | undefined;
|
|
1968
|
+
readonly format?: {
|
|
1969
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
1970
|
+
readonly currency?: string | undefined;
|
|
1971
|
+
readonly decimals?: number | undefined;
|
|
1972
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
1973
|
+
readonly dateFormat?: string | undefined;
|
|
1974
|
+
} | undefined;
|
|
1975
|
+
}[];
|
|
1976
|
+
readonly header_path?: string | undefined;
|
|
1977
|
+
readonly footer_path?: string | undefined;
|
|
1978
|
+
readonly filters?: readonly {
|
|
1979
|
+
readonly property: string;
|
|
1980
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
1981
|
+
readonly value: string;
|
|
1982
|
+
}[] | undefined;
|
|
1983
|
+
readonly theme?: {
|
|
1984
|
+
readonly background_color?: string | null | undefined;
|
|
1985
|
+
readonly group_header_color?: string | null | undefined;
|
|
1986
|
+
readonly font_family?: string | undefined;
|
|
1987
|
+
} | undefined;
|
|
1988
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
1989
|
+
readonly striping_color?: string | null | undefined;
|
|
1990
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
1689
1991
|
} | undefined;
|
|
1690
1992
|
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
1691
1993
|
readonly when_used_in_section?: {
|
|
@@ -2045,6 +2347,81 @@ export default function useCanvas(): {
|
|
|
2045
2347
|
card_style?: Record<string, any> | undefined;
|
|
2046
2348
|
}[];
|
|
2047
2349
|
layout: "vertical" | "horizontal";
|
|
2350
|
+
} | {
|
|
2351
|
+
filters?: {
|
|
2352
|
+
property: string;
|
|
2353
|
+
operator: import('../../../types/query-builder.types').QueryOperator;
|
|
2354
|
+
value: string;
|
|
2355
|
+
}[] | undefined;
|
|
2356
|
+
layout: "column" | "row";
|
|
2357
|
+
page_size?: number | undefined;
|
|
2358
|
+
path: string;
|
|
2359
|
+
properties: {
|
|
2360
|
+
key: string;
|
|
2361
|
+
display_name?: string | undefined;
|
|
2362
|
+
sort: {
|
|
2363
|
+
direction?: "asc" | "desc" | undefined;
|
|
2364
|
+
default?: boolean | undefined;
|
|
2365
|
+
enabled: boolean;
|
|
2366
|
+
};
|
|
2367
|
+
group?: boolean | undefined;
|
|
2368
|
+
printable?: boolean | undefined;
|
|
2369
|
+
format?: {
|
|
2370
|
+
type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
2371
|
+
currency?: string | undefined;
|
|
2372
|
+
decimals?: number | undefined;
|
|
2373
|
+
thousandsSeparator?: boolean | undefined;
|
|
2374
|
+
dateFormat?: string | undefined;
|
|
2375
|
+
} | undefined;
|
|
2376
|
+
}[];
|
|
2377
|
+
theme?: {
|
|
2378
|
+
background_color?: string | null | undefined;
|
|
2379
|
+
group_header_color?: string | null | undefined;
|
|
2380
|
+
font_family?: string | undefined;
|
|
2381
|
+
} | undefined;
|
|
2382
|
+
break_groups_on_new_page?: boolean | undefined;
|
|
2383
|
+
enable_row_striping?: boolean | undefined;
|
|
2384
|
+
striping_color?: string | null | undefined;
|
|
2385
|
+
striping_start_from_first?: boolean | undefined;
|
|
2386
|
+
} | {
|
|
2387
|
+
hierarchy: {
|
|
2388
|
+
type: "group" | "data";
|
|
2389
|
+
path: string;
|
|
2390
|
+
group_by_key?: string | undefined;
|
|
2391
|
+
}[];
|
|
2392
|
+
columns: {
|
|
2393
|
+
key: string;
|
|
2394
|
+
display_name?: string | undefined;
|
|
2395
|
+
sort: {
|
|
2396
|
+
direction?: "asc" | "desc" | undefined;
|
|
2397
|
+
default?: boolean | undefined;
|
|
2398
|
+
enabled: boolean;
|
|
2399
|
+
};
|
|
2400
|
+
group?: boolean | undefined;
|
|
2401
|
+
printable?: boolean | undefined;
|
|
2402
|
+
format?: {
|
|
2403
|
+
type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
2404
|
+
currency?: string | undefined;
|
|
2405
|
+
decimals?: number | undefined;
|
|
2406
|
+
thousandsSeparator?: boolean | undefined;
|
|
2407
|
+
dateFormat?: string | undefined;
|
|
2408
|
+
} | undefined;
|
|
2409
|
+
}[];
|
|
2410
|
+
header_path?: string | undefined;
|
|
2411
|
+
footer_path?: string | undefined;
|
|
2412
|
+
filters?: {
|
|
2413
|
+
property: string;
|
|
2414
|
+
operator: import('../../../types/query-builder.types').QueryOperator;
|
|
2415
|
+
value: string;
|
|
2416
|
+
}[] | undefined;
|
|
2417
|
+
theme?: {
|
|
2418
|
+
background_color?: string | null | undefined;
|
|
2419
|
+
group_header_color?: string | null | undefined;
|
|
2420
|
+
font_family?: string | undefined;
|
|
2421
|
+
} | undefined;
|
|
2422
|
+
enable_row_striping?: boolean | undefined;
|
|
2423
|
+
striping_color?: string | null | undefined;
|
|
2424
|
+
striping_start_from_first?: boolean | undefined;
|
|
2048
2425
|
} | undefined;
|
|
2049
2426
|
children?: /*elided*/ any[] | undefined;
|
|
2050
2427
|
when_used_in_section?: {
|
|
@@ -2065,7 +2442,7 @@ export default function useCanvas(): {
|
|
|
2065
2442
|
bg_color_palette_index?: number | undefined;
|
|
2066
2443
|
} | undefined;
|
|
2067
2444
|
height?: string | undefined;
|
|
2068
|
-
}[], ComponentNode<import('../../collection-player/export').CollectionPlayer | import('../types/canvas').GridProps | import('../types/canvas').GridItemProps | import('../types/canvas').TextProps | import('../types/canvas').CarouselProps | MultimediaProps | import('../types/canvas').EmbeddableProps | ContentGridProps | SectionListProps | import('../types/canvas').HtmlProps | import('../types/canvas').IFrameProps | import('../types/canvas').LinkProps | import('../types/canvas').PageBreakProps | import('../types/canvas').PageProps | import('../types/canvas').TimelineProps>[] | {
|
|
2445
|
+
}[], ComponentNode<import('../../collection-player/export').CollectionPlayer | import('../types/canvas').GridProps | import('../types/canvas').GridItemProps | import('../types/canvas').TextProps | import('../types/canvas').CarouselProps | MultimediaProps | import('../types/canvas').EmbeddableProps | ContentGridProps | SectionListProps | import('../types/canvas').HtmlProps | import('../types/canvas').IFrameProps | import('../types/canvas').LinkProps | import('../types/canvas').PageBreakProps | import('../types/canvas').PageProps | import('../types/canvas').TimelineProps | import('../types/canvas').DynamicDataTableProps | import('../types/canvas').CustomDataTableProps>[] | {
|
|
2069
2446
|
id: string;
|
|
2070
2447
|
type: ComponentTypes;
|
|
2071
2448
|
tracking_id: string;
|
|
@@ -2385,6 +2762,81 @@ export default function useCanvas(): {
|
|
|
2385
2762
|
card_style?: Record<string, any> | undefined;
|
|
2386
2763
|
}[];
|
|
2387
2764
|
layout: "vertical" | "horizontal";
|
|
2765
|
+
} | {
|
|
2766
|
+
filters?: {
|
|
2767
|
+
property: string;
|
|
2768
|
+
operator: import('../../../types/query-builder.types').QueryOperator;
|
|
2769
|
+
value: string;
|
|
2770
|
+
}[] | undefined;
|
|
2771
|
+
layout: "column" | "row";
|
|
2772
|
+
page_size?: number | undefined;
|
|
2773
|
+
path: string;
|
|
2774
|
+
properties: {
|
|
2775
|
+
key: string;
|
|
2776
|
+
display_name?: string | undefined;
|
|
2777
|
+
sort: {
|
|
2778
|
+
direction?: "asc" | "desc" | undefined;
|
|
2779
|
+
default?: boolean | undefined;
|
|
2780
|
+
enabled: boolean;
|
|
2781
|
+
};
|
|
2782
|
+
group?: boolean | undefined;
|
|
2783
|
+
printable?: boolean | undefined;
|
|
2784
|
+
format?: {
|
|
2785
|
+
type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
2786
|
+
currency?: string | undefined;
|
|
2787
|
+
decimals?: number | undefined;
|
|
2788
|
+
thousandsSeparator?: boolean | undefined;
|
|
2789
|
+
dateFormat?: string | undefined;
|
|
2790
|
+
} | undefined;
|
|
2791
|
+
}[];
|
|
2792
|
+
theme?: {
|
|
2793
|
+
background_color?: string | null | undefined;
|
|
2794
|
+
group_header_color?: string | null | undefined;
|
|
2795
|
+
font_family?: string | undefined;
|
|
2796
|
+
} | undefined;
|
|
2797
|
+
break_groups_on_new_page?: boolean | undefined;
|
|
2798
|
+
enable_row_striping?: boolean | undefined;
|
|
2799
|
+
striping_color?: string | null | undefined;
|
|
2800
|
+
striping_start_from_first?: boolean | undefined;
|
|
2801
|
+
} | {
|
|
2802
|
+
hierarchy: {
|
|
2803
|
+
type: "group" | "data";
|
|
2804
|
+
path: string;
|
|
2805
|
+
group_by_key?: string | undefined;
|
|
2806
|
+
}[];
|
|
2807
|
+
columns: {
|
|
2808
|
+
key: string;
|
|
2809
|
+
display_name?: string | undefined;
|
|
2810
|
+
sort: {
|
|
2811
|
+
direction?: "asc" | "desc" | undefined;
|
|
2812
|
+
default?: boolean | undefined;
|
|
2813
|
+
enabled: boolean;
|
|
2814
|
+
};
|
|
2815
|
+
group?: boolean | undefined;
|
|
2816
|
+
printable?: boolean | undefined;
|
|
2817
|
+
format?: {
|
|
2818
|
+
type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
2819
|
+
currency?: string | undefined;
|
|
2820
|
+
decimals?: number | undefined;
|
|
2821
|
+
thousandsSeparator?: boolean | undefined;
|
|
2822
|
+
dateFormat?: string | undefined;
|
|
2823
|
+
} | undefined;
|
|
2824
|
+
}[];
|
|
2825
|
+
header_path?: string | undefined;
|
|
2826
|
+
footer_path?: string | undefined;
|
|
2827
|
+
filters?: {
|
|
2828
|
+
property: string;
|
|
2829
|
+
operator: import('../../../types/query-builder.types').QueryOperator;
|
|
2830
|
+
value: string;
|
|
2831
|
+
}[] | undefined;
|
|
2832
|
+
theme?: {
|
|
2833
|
+
background_color?: string | null | undefined;
|
|
2834
|
+
group_header_color?: string | null | undefined;
|
|
2835
|
+
font_family?: string | undefined;
|
|
2836
|
+
} | undefined;
|
|
2837
|
+
enable_row_striping?: boolean | undefined;
|
|
2838
|
+
striping_color?: string | null | undefined;
|
|
2839
|
+
striping_start_from_first?: boolean | undefined;
|
|
2388
2840
|
} | undefined;
|
|
2389
2841
|
children?: /*elided*/ any[] | undefined;
|
|
2390
2842
|
when_used_in_section?: {
|
|
@@ -2801,6 +3253,81 @@ export default function useCanvas(): {
|
|
|
2801
3253
|
} | undefined;
|
|
2802
3254
|
}[];
|
|
2803
3255
|
readonly layout: "vertical" | "horizontal";
|
|
3256
|
+
} | {
|
|
3257
|
+
readonly filters?: readonly {
|
|
3258
|
+
readonly property: string;
|
|
3259
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
3260
|
+
readonly value: string;
|
|
3261
|
+
}[] | undefined;
|
|
3262
|
+
readonly layout: "column" | "row";
|
|
3263
|
+
readonly page_size?: number | undefined;
|
|
3264
|
+
readonly path: string;
|
|
3265
|
+
readonly properties: readonly {
|
|
3266
|
+
readonly key: string;
|
|
3267
|
+
readonly display_name?: string | undefined;
|
|
3268
|
+
readonly sort: {
|
|
3269
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
3270
|
+
readonly default?: boolean | undefined;
|
|
3271
|
+
readonly enabled: boolean;
|
|
3272
|
+
};
|
|
3273
|
+
readonly group?: boolean | undefined;
|
|
3274
|
+
readonly printable?: boolean | undefined;
|
|
3275
|
+
readonly format?: {
|
|
3276
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
3277
|
+
readonly currency?: string | undefined;
|
|
3278
|
+
readonly decimals?: number | undefined;
|
|
3279
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
3280
|
+
readonly dateFormat?: string | undefined;
|
|
3281
|
+
} | undefined;
|
|
3282
|
+
}[];
|
|
3283
|
+
readonly theme?: {
|
|
3284
|
+
readonly background_color?: string | null | undefined;
|
|
3285
|
+
readonly group_header_color?: string | null | undefined;
|
|
3286
|
+
readonly font_family?: string | undefined;
|
|
3287
|
+
} | undefined;
|
|
3288
|
+
readonly break_groups_on_new_page?: boolean | undefined;
|
|
3289
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
3290
|
+
readonly striping_color?: string | null | undefined;
|
|
3291
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
3292
|
+
} | {
|
|
3293
|
+
readonly hierarchy: readonly {
|
|
3294
|
+
readonly type: "group" | "data";
|
|
3295
|
+
readonly path: string;
|
|
3296
|
+
readonly group_by_key?: string | undefined;
|
|
3297
|
+
}[];
|
|
3298
|
+
readonly columns: readonly {
|
|
3299
|
+
readonly key: string;
|
|
3300
|
+
readonly display_name?: string | undefined;
|
|
3301
|
+
readonly sort: {
|
|
3302
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
3303
|
+
readonly default?: boolean | undefined;
|
|
3304
|
+
readonly enabled: boolean;
|
|
3305
|
+
};
|
|
3306
|
+
readonly group?: boolean | undefined;
|
|
3307
|
+
readonly printable?: boolean | undefined;
|
|
3308
|
+
readonly format?: {
|
|
3309
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
3310
|
+
readonly currency?: string | undefined;
|
|
3311
|
+
readonly decimals?: number | undefined;
|
|
3312
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
3313
|
+
readonly dateFormat?: string | undefined;
|
|
3314
|
+
} | undefined;
|
|
3315
|
+
}[];
|
|
3316
|
+
readonly header_path?: string | undefined;
|
|
3317
|
+
readonly footer_path?: string | undefined;
|
|
3318
|
+
readonly filters?: readonly {
|
|
3319
|
+
readonly property: string;
|
|
3320
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
3321
|
+
readonly value: string;
|
|
3322
|
+
}[] | undefined;
|
|
3323
|
+
readonly theme?: {
|
|
3324
|
+
readonly background_color?: string | null | undefined;
|
|
3325
|
+
readonly group_header_color?: string | null | undefined;
|
|
3326
|
+
readonly font_family?: string | undefined;
|
|
3327
|
+
} | undefined;
|
|
3328
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
3329
|
+
readonly striping_color?: string | null | undefined;
|
|
3330
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
2804
3331
|
} | undefined;
|
|
2805
3332
|
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
2806
3333
|
readonly when_used_in_section?: {
|
|
@@ -2946,13 +3473,10 @@ export default function useCanvas(): {
|
|
|
2946
3473
|
groupsCount: number;
|
|
2947
3474
|
slidesCount: number;
|
|
2948
3475
|
}) => void) | undefined>;
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
fields?: string;
|
|
2954
|
-
include_expired_files?: boolean;
|
|
2955
|
-
}, showToast?: boolean) => Promise<CanvasRetrieve>) | ((...data: any[]) => Promise<void>) | undefined>;
|
|
3476
|
+
save: typeof save;
|
|
3477
|
+
onSave: (canvasId: Parameters<NonNullable<CanvasBuilderProps["onSave"]>>[0], canvasData: Parameters<NonNullable<CanvasBuilderProps["onSave"]>>[1], showToast?: Parameters<NonNullable<CanvasBuilderProps["onSave"]>>[2]) => Promise<void> | Promise<CanvasRetrieve> | undefined;
|
|
3478
|
+
temporaryContextKeys: import('vue').ComputedRef<string[]>;
|
|
3479
|
+
setTemporaryContextKeys: (source: string, context: CanvasRetrieve["context"]) => void;
|
|
2956
3480
|
onSfdcAccountSearch: Ref<((searchTerm?: import('vue').MaybeRef<string>) => {
|
|
2957
3481
|
accountsLoading: Ref<boolean>;
|
|
2958
3482
|
accounts: Ref<{
|
|
@@ -3364,6 +3888,81 @@ export default function useCanvas(): {
|
|
|
3364
3888
|
} | undefined;
|
|
3365
3889
|
}[];
|
|
3366
3890
|
readonly layout: "vertical" | "horizontal";
|
|
3891
|
+
} | {
|
|
3892
|
+
readonly filters?: readonly {
|
|
3893
|
+
readonly property: string;
|
|
3894
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
3895
|
+
readonly value: string;
|
|
3896
|
+
}[] | undefined;
|
|
3897
|
+
readonly layout: "column" | "row";
|
|
3898
|
+
readonly page_size?: number | undefined;
|
|
3899
|
+
readonly path: string;
|
|
3900
|
+
readonly properties: readonly {
|
|
3901
|
+
readonly key: string;
|
|
3902
|
+
readonly display_name?: string | undefined;
|
|
3903
|
+
readonly sort: {
|
|
3904
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
3905
|
+
readonly default?: boolean | undefined;
|
|
3906
|
+
readonly enabled: boolean;
|
|
3907
|
+
};
|
|
3908
|
+
readonly group?: boolean | undefined;
|
|
3909
|
+
readonly printable?: boolean | undefined;
|
|
3910
|
+
readonly format?: {
|
|
3911
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
3912
|
+
readonly currency?: string | undefined;
|
|
3913
|
+
readonly decimals?: number | undefined;
|
|
3914
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
3915
|
+
readonly dateFormat?: string | undefined;
|
|
3916
|
+
} | undefined;
|
|
3917
|
+
}[];
|
|
3918
|
+
readonly theme?: {
|
|
3919
|
+
readonly background_color?: string | null | undefined;
|
|
3920
|
+
readonly group_header_color?: string | null | undefined;
|
|
3921
|
+
readonly font_family?: string | undefined;
|
|
3922
|
+
} | undefined;
|
|
3923
|
+
readonly break_groups_on_new_page?: boolean | undefined;
|
|
3924
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
3925
|
+
readonly striping_color?: string | null | undefined;
|
|
3926
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
3927
|
+
} | {
|
|
3928
|
+
readonly hierarchy: readonly {
|
|
3929
|
+
readonly type: "group" | "data";
|
|
3930
|
+
readonly path: string;
|
|
3931
|
+
readonly group_by_key?: string | undefined;
|
|
3932
|
+
}[];
|
|
3933
|
+
readonly columns: readonly {
|
|
3934
|
+
readonly key: string;
|
|
3935
|
+
readonly display_name?: string | undefined;
|
|
3936
|
+
readonly sort: {
|
|
3937
|
+
readonly direction?: "asc" | "desc" | undefined;
|
|
3938
|
+
readonly default?: boolean | undefined;
|
|
3939
|
+
readonly enabled: boolean;
|
|
3940
|
+
};
|
|
3941
|
+
readonly group?: boolean | undefined;
|
|
3942
|
+
readonly printable?: boolean | undefined;
|
|
3943
|
+
readonly format?: {
|
|
3944
|
+
readonly type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
3945
|
+
readonly currency?: string | undefined;
|
|
3946
|
+
readonly decimals?: number | undefined;
|
|
3947
|
+
readonly thousandsSeparator?: boolean | undefined;
|
|
3948
|
+
readonly dateFormat?: string | undefined;
|
|
3949
|
+
} | undefined;
|
|
3950
|
+
}[];
|
|
3951
|
+
readonly header_path?: string | undefined;
|
|
3952
|
+
readonly footer_path?: string | undefined;
|
|
3953
|
+
readonly filters?: readonly {
|
|
3954
|
+
readonly property: string;
|
|
3955
|
+
readonly operator: import('../../../types/query-builder.types').QueryOperator;
|
|
3956
|
+
readonly value: string;
|
|
3957
|
+
}[] | undefined;
|
|
3958
|
+
readonly theme?: {
|
|
3959
|
+
readonly background_color?: string | null | undefined;
|
|
3960
|
+
readonly group_header_color?: string | null | undefined;
|
|
3961
|
+
readonly font_family?: string | undefined;
|
|
3962
|
+
} | undefined;
|
|
3963
|
+
readonly enable_row_striping?: boolean | undefined;
|
|
3964
|
+
readonly striping_color?: string | null | undefined;
|
|
3965
|
+
readonly striping_start_from_first?: boolean | undefined;
|
|
3367
3966
|
} | undefined;
|
|
3368
3967
|
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
3369
3968
|
readonly when_used_in_section?: {
|
|
@@ -3713,6 +4312,81 @@ export default function useCanvas(): {
|
|
|
3713
4312
|
card_style?: Record<string, any> | undefined;
|
|
3714
4313
|
}[];
|
|
3715
4314
|
layout: "vertical" | "horizontal";
|
|
4315
|
+
} | {
|
|
4316
|
+
filters?: {
|
|
4317
|
+
property: string;
|
|
4318
|
+
operator: import('../../../types/query-builder.types').QueryOperator;
|
|
4319
|
+
value: string;
|
|
4320
|
+
}[] | undefined;
|
|
4321
|
+
layout: "column" | "row";
|
|
4322
|
+
page_size?: number | undefined;
|
|
4323
|
+
path: string;
|
|
4324
|
+
properties: {
|
|
4325
|
+
key: string;
|
|
4326
|
+
display_name?: string | undefined;
|
|
4327
|
+
sort: {
|
|
4328
|
+
direction?: "asc" | "desc" | undefined;
|
|
4329
|
+
default?: boolean | undefined;
|
|
4330
|
+
enabled: boolean;
|
|
4331
|
+
};
|
|
4332
|
+
group?: boolean | undefined;
|
|
4333
|
+
printable?: boolean | undefined;
|
|
4334
|
+
format?: {
|
|
4335
|
+
type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
4336
|
+
currency?: string | undefined;
|
|
4337
|
+
decimals?: number | undefined;
|
|
4338
|
+
thousandsSeparator?: boolean | undefined;
|
|
4339
|
+
dateFormat?: string | undefined;
|
|
4340
|
+
} | undefined;
|
|
4341
|
+
}[];
|
|
4342
|
+
theme?: {
|
|
4343
|
+
background_color?: string | null | undefined;
|
|
4344
|
+
group_header_color?: string | null | undefined;
|
|
4345
|
+
font_family?: string | undefined;
|
|
4346
|
+
} | undefined;
|
|
4347
|
+
break_groups_on_new_page?: boolean | undefined;
|
|
4348
|
+
enable_row_striping?: boolean | undefined;
|
|
4349
|
+
striping_color?: string | null | undefined;
|
|
4350
|
+
striping_start_from_first?: boolean | undefined;
|
|
4351
|
+
} | {
|
|
4352
|
+
hierarchy: {
|
|
4353
|
+
type: "group" | "data";
|
|
4354
|
+
path: string;
|
|
4355
|
+
group_by_key?: string | undefined;
|
|
4356
|
+
}[];
|
|
4357
|
+
columns: {
|
|
4358
|
+
key: string;
|
|
4359
|
+
display_name?: string | undefined;
|
|
4360
|
+
sort: {
|
|
4361
|
+
direction?: "asc" | "desc" | undefined;
|
|
4362
|
+
default?: boolean | undefined;
|
|
4363
|
+
enabled: boolean;
|
|
4364
|
+
};
|
|
4365
|
+
group?: boolean | undefined;
|
|
4366
|
+
printable?: boolean | undefined;
|
|
4367
|
+
format?: {
|
|
4368
|
+
type?: "currency" | "number" | "percentage" | "date" | undefined;
|
|
4369
|
+
currency?: string | undefined;
|
|
4370
|
+
decimals?: number | undefined;
|
|
4371
|
+
thousandsSeparator?: boolean | undefined;
|
|
4372
|
+
dateFormat?: string | undefined;
|
|
4373
|
+
} | undefined;
|
|
4374
|
+
}[];
|
|
4375
|
+
header_path?: string | undefined;
|
|
4376
|
+
footer_path?: string | undefined;
|
|
4377
|
+
filters?: {
|
|
4378
|
+
property: string;
|
|
4379
|
+
operator: import('../../../types/query-builder.types').QueryOperator;
|
|
4380
|
+
value: string;
|
|
4381
|
+
}[] | undefined;
|
|
4382
|
+
theme?: {
|
|
4383
|
+
background_color?: string | null | undefined;
|
|
4384
|
+
group_header_color?: string | null | undefined;
|
|
4385
|
+
font_family?: string | undefined;
|
|
4386
|
+
} | undefined;
|
|
4387
|
+
enable_row_striping?: boolean | undefined;
|
|
4388
|
+
striping_color?: string | null | undefined;
|
|
4389
|
+
striping_start_from_first?: boolean | undefined;
|
|
3716
4390
|
} | undefined;
|
|
3717
4391
|
children?: /*elided*/ any[] | undefined;
|
|
3718
4392
|
when_used_in_section?: {
|
|
@@ -3786,6 +4460,8 @@ export default function useCanvas(): {
|
|
|
3786
4460
|
groups?: string[] | undefined;
|
|
3787
4461
|
}[] | undefined;
|
|
3788
4462
|
canvas?: {
|
|
4463
|
+
use_linkable_in_catalogiq?: boolean | undefined;
|
|
4464
|
+
enable_v_trusted_js_in_html?: boolean | undefined;
|
|
3789
4465
|
enable_read_only_canvas_creation_account?: boolean | undefined;
|
|
3790
4466
|
scribble_file_renderer?: "image" | "pdfjs" | "pspdfkit" | undefined;
|
|
3791
4467
|
enable_wizard_preview_button?: boolean | undefined;
|
|
@@ -3814,6 +4490,7 @@ export default function useCanvas(): {
|
|
|
3814
4490
|
Carousel: boolean;
|
|
3815
4491
|
CollectionPlayer: boolean;
|
|
3816
4492
|
ContentGrid: boolean;
|
|
4493
|
+
CustomDataTable: boolean;
|
|
3817
4494
|
DataCharts: boolean;
|
|
3818
4495
|
DynamicDataTable: boolean;
|
|
3819
4496
|
Embeddable: boolean;
|
|
@@ -3850,6 +4527,10 @@ export default function useCanvas(): {
|
|
|
3850
4527
|
admin?: boolean | undefined;
|
|
3851
4528
|
rep?: boolean | undefined;
|
|
3852
4529
|
};
|
|
4530
|
+
CustomDataTable: {
|
|
4531
|
+
admin?: boolean | undefined;
|
|
4532
|
+
rep?: boolean | undefined;
|
|
4533
|
+
};
|
|
3853
4534
|
DataCharts: {
|
|
3854
4535
|
admin?: boolean | undefined;
|
|
3855
4536
|
rep?: boolean | undefined;
|
|
@@ -4037,8 +4718,10 @@ export default function useCanvas(): {
|
|
|
4037
4718
|
is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
4038
4719
|
disable_postcall?: boolean | undefined;
|
|
4039
4720
|
launch_in_present_mode_on_creation?: boolean | undefined;
|
|
4721
|
+
custom_event?: string | undefined;
|
|
4040
4722
|
enable_recents?: boolean | undefined;
|
|
4041
4723
|
enable_favorites?: boolean | undefined;
|
|
4724
|
+
enable_sync_file_filtering?: boolean | undefined;
|
|
4042
4725
|
}, (OrganizationSettings & {
|
|
4043
4726
|
canvas?: {
|
|
4044
4727
|
hide_page_break_in_toc?: boolean;
|
|
@@ -4072,10 +4755,12 @@ export default function useCanvas(): {
|
|
|
4072
4755
|
disable_shared_link_creation?: boolean;
|
|
4073
4756
|
hide_meeting_bar?: boolean;
|
|
4074
4757
|
};
|
|
4758
|
+
custom_event?: string;
|
|
4075
4759
|
enable_recents?: boolean;
|
|
4076
4760
|
enable_favorites?: boolean;
|
|
4077
4761
|
enable_multipeer_connectivity?: boolean;
|
|
4078
4762
|
enable_syncbox?: boolean;
|
|
4763
|
+
enable_sync_file_filtering?: boolean;
|
|
4079
4764
|
ios?: InstanceSettings;
|
|
4080
4765
|
}) | {
|
|
4081
4766
|
auto_assignment_rules?: {
|
|
@@ -4084,6 +4769,8 @@ export default function useCanvas(): {
|
|
|
4084
4769
|
groups?: string[] | undefined;
|
|
4085
4770
|
}[] | undefined;
|
|
4086
4771
|
canvas?: {
|
|
4772
|
+
use_linkable_in_catalogiq?: boolean | undefined;
|
|
4773
|
+
enable_v_trusted_js_in_html?: boolean | undefined;
|
|
4087
4774
|
enable_read_only_canvas_creation_account?: boolean | undefined;
|
|
4088
4775
|
scribble_file_renderer?: "image" | "pdfjs" | "pspdfkit" | undefined;
|
|
4089
4776
|
enable_wizard_preview_button?: boolean | undefined;
|
|
@@ -4112,6 +4799,7 @@ export default function useCanvas(): {
|
|
|
4112
4799
|
Carousel: boolean;
|
|
4113
4800
|
CollectionPlayer: boolean;
|
|
4114
4801
|
ContentGrid: boolean;
|
|
4802
|
+
CustomDataTable: boolean;
|
|
4115
4803
|
DataCharts: boolean;
|
|
4116
4804
|
DynamicDataTable: boolean;
|
|
4117
4805
|
Embeddable: boolean;
|
|
@@ -4148,6 +4836,10 @@ export default function useCanvas(): {
|
|
|
4148
4836
|
admin?: boolean | undefined;
|
|
4149
4837
|
rep?: boolean | undefined;
|
|
4150
4838
|
};
|
|
4839
|
+
CustomDataTable: {
|
|
4840
|
+
admin?: boolean | undefined;
|
|
4841
|
+
rep?: boolean | undefined;
|
|
4842
|
+
};
|
|
4151
4843
|
DataCharts: {
|
|
4152
4844
|
admin?: boolean | undefined;
|
|
4153
4845
|
rep?: boolean | undefined;
|
|
@@ -4335,8 +5027,10 @@ export default function useCanvas(): {
|
|
|
4335
5027
|
is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
4336
5028
|
disable_postcall?: boolean | undefined;
|
|
4337
5029
|
launch_in_present_mode_on_creation?: boolean | undefined;
|
|
5030
|
+
custom_event?: string | undefined;
|
|
4338
5031
|
enable_recents?: boolean | undefined;
|
|
4339
5032
|
enable_favorites?: boolean | undefined;
|
|
5033
|
+
enable_sync_file_filtering?: boolean | undefined;
|
|
4340
5034
|
}>;
|
|
4341
5035
|
pitcherSettings: Readonly<Ref<{
|
|
4342
5036
|
readonly auto_assignment_rules?: readonly {
|
|
@@ -4345,6 +5039,8 @@ export default function useCanvas(): {
|
|
|
4345
5039
|
readonly groups?: readonly string[] | undefined;
|
|
4346
5040
|
}[] | undefined;
|
|
4347
5041
|
readonly canvas?: {
|
|
5042
|
+
readonly use_linkable_in_catalogiq?: boolean | undefined;
|
|
5043
|
+
readonly enable_v_trusted_js_in_html?: boolean | undefined;
|
|
4348
5044
|
readonly enable_read_only_canvas_creation_account?: boolean | undefined;
|
|
4349
5045
|
readonly scribble_file_renderer?: "image" | "pdfjs" | "pspdfkit" | undefined;
|
|
4350
5046
|
readonly enable_wizard_preview_button?: boolean | undefined;
|
|
@@ -4375,6 +5071,7 @@ export default function useCanvas(): {
|
|
|
4375
5071
|
readonly Carousel: boolean;
|
|
4376
5072
|
readonly CollectionPlayer: boolean;
|
|
4377
5073
|
readonly ContentGrid: boolean;
|
|
5074
|
+
readonly CustomDataTable: boolean;
|
|
4378
5075
|
readonly DataCharts: boolean;
|
|
4379
5076
|
readonly DynamicDataTable: boolean;
|
|
4380
5077
|
readonly Embeddable: boolean;
|
|
@@ -4413,6 +5110,10 @@ export default function useCanvas(): {
|
|
|
4413
5110
|
readonly admin?: boolean | undefined;
|
|
4414
5111
|
readonly rep?: boolean | undefined;
|
|
4415
5112
|
};
|
|
5113
|
+
readonly CustomDataTable: {
|
|
5114
|
+
readonly admin?: boolean | undefined;
|
|
5115
|
+
readonly rep?: boolean | undefined;
|
|
5116
|
+
};
|
|
4416
5117
|
readonly DataCharts: {
|
|
4417
5118
|
readonly admin?: boolean | undefined;
|
|
4418
5119
|
readonly rep?: boolean | undefined;
|
|
@@ -4630,8 +5331,10 @@ export default function useCanvas(): {
|
|
|
4630
5331
|
readonly is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
4631
5332
|
readonly disable_postcall?: boolean | undefined;
|
|
4632
5333
|
readonly launch_in_present_mode_on_creation?: boolean | undefined;
|
|
5334
|
+
readonly custom_event?: string | undefined;
|
|
4633
5335
|
readonly enable_recents?: boolean | undefined;
|
|
4634
5336
|
readonly enable_favorites?: boolean | undefined;
|
|
5337
|
+
readonly enable_sync_file_filtering?: boolean | undefined;
|
|
4635
5338
|
}, {
|
|
4636
5339
|
readonly auto_assignment_rules?: readonly {
|
|
4637
5340
|
readonly connection_id: string;
|
|
@@ -4639,6 +5342,8 @@ export default function useCanvas(): {
|
|
|
4639
5342
|
readonly groups?: readonly string[] | undefined;
|
|
4640
5343
|
}[] | undefined;
|
|
4641
5344
|
readonly canvas?: {
|
|
5345
|
+
readonly use_linkable_in_catalogiq?: boolean | undefined;
|
|
5346
|
+
readonly enable_v_trusted_js_in_html?: boolean | undefined;
|
|
4642
5347
|
readonly enable_read_only_canvas_creation_account?: boolean | undefined;
|
|
4643
5348
|
readonly scribble_file_renderer?: "image" | "pdfjs" | "pspdfkit" | undefined;
|
|
4644
5349
|
readonly enable_wizard_preview_button?: boolean | undefined;
|
|
@@ -4669,6 +5374,7 @@ export default function useCanvas(): {
|
|
|
4669
5374
|
readonly Carousel: boolean;
|
|
4670
5375
|
readonly CollectionPlayer: boolean;
|
|
4671
5376
|
readonly ContentGrid: boolean;
|
|
5377
|
+
readonly CustomDataTable: boolean;
|
|
4672
5378
|
readonly DataCharts: boolean;
|
|
4673
5379
|
readonly DynamicDataTable: boolean;
|
|
4674
5380
|
readonly Embeddable: boolean;
|
|
@@ -4707,6 +5413,10 @@ export default function useCanvas(): {
|
|
|
4707
5413
|
readonly admin?: boolean | undefined;
|
|
4708
5414
|
readonly rep?: boolean | undefined;
|
|
4709
5415
|
};
|
|
5416
|
+
readonly CustomDataTable: {
|
|
5417
|
+
readonly admin?: boolean | undefined;
|
|
5418
|
+
readonly rep?: boolean | undefined;
|
|
5419
|
+
};
|
|
4710
5420
|
readonly DataCharts: {
|
|
4711
5421
|
readonly admin?: boolean | undefined;
|
|
4712
5422
|
readonly rep?: boolean | undefined;
|
|
@@ -4924,8 +5634,10 @@ export default function useCanvas(): {
|
|
|
4924
5634
|
readonly is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
4925
5635
|
readonly disable_postcall?: boolean | undefined;
|
|
4926
5636
|
readonly launch_in_present_mode_on_creation?: boolean | undefined;
|
|
5637
|
+
readonly custom_event?: string | undefined;
|
|
4927
5638
|
readonly enable_recents?: boolean | undefined;
|
|
4928
5639
|
readonly enable_favorites?: boolean | undefined;
|
|
5640
|
+
readonly enable_sync_file_filtering?: boolean | undefined;
|
|
4929
5641
|
}>>;
|
|
4930
5642
|
initialize: (props: CanvasBuilderProps, launchDarkly: LaunchDarklyEnv) => void;
|
|
4931
5643
|
activateNavigationItem: (id: string, sectionId?: string, previewMode?: boolean, index?: number) => void;
|
|
@@ -4976,7 +5688,7 @@ export default function useCanvas(): {
|
|
|
4976
5688
|
node: ComponentNode;
|
|
4977
5689
|
section: CanvasRetrieve["sections"][number];
|
|
4978
5690
|
}) => boolean;
|
|
4979
|
-
findNodeInSection: (sectionId: string, nodeId: string) => ComponentNode<import('../../collection-player/export').CollectionPlayer | import('../types/canvas').GridProps | import('../types/canvas').GridItemProps | import('../types/canvas').TextProps | import('../types/canvas').CarouselProps | MultimediaProps | import('../types/canvas').EmbeddableProps | ContentGridProps | SectionListProps | import('../types/canvas').HtmlProps | import('../types/canvas').IFrameProps | import('../types/canvas').LinkProps | import('../types/canvas').PageBreakProps | import('../types/canvas').PageProps | import('../types/canvas').TimelineProps> | null;
|
|
5691
|
+
findNodeInSection: (sectionId: string, nodeId: string) => ComponentNode<import('../../collection-player/export').CollectionPlayer | import('../types/canvas').GridProps | import('../types/canvas').GridItemProps | import('../types/canvas').TextProps | import('../types/canvas').CarouselProps | MultimediaProps | import('../types/canvas').EmbeddableProps | ContentGridProps | SectionListProps | import('../types/canvas').HtmlProps | import('../types/canvas').IFrameProps | import('../types/canvas').LinkProps | import('../types/canvas').PageBreakProps | import('../types/canvas').PageProps | import('../types/canvas').TimelineProps | import('../types/canvas').DynamicDataTableProps | import('../types/canvas').CustomDataTableProps> | null;
|
|
4980
5692
|
updateNodeInSection: (sectionId: string, nodeId: string, newData: ComponentNode["data"]) => boolean;
|
|
4981
5693
|
getMaxWidth: typeof getMaxWidth;
|
|
4982
5694
|
getParentType: (nodeId: Ref<ComponentNode["id"] | null | undefined>) => import('vue').ComputedRef<ComponentTypes | undefined>;
|
|
@@ -5061,5 +5773,7 @@ export default function useCanvas(): {
|
|
|
5061
5773
|
createNewImage: (width: number, height: number) => string;
|
|
5062
5774
|
isDrawingActive: boolean;
|
|
5063
5775
|
} | null>;
|
|
5776
|
+
getSafeContext: (context?: any, _temporaryContextKeys?: string[]) => any;
|
|
5777
|
+
watchCanvas: () => import('vue').WatchHandle;
|
|
5064
5778
|
};
|
|
5065
5779
|
export {};
|