@pitcher/js-api 1.26.0-beta.1 → 1.26.0-beta.2
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 +28 -5
- package/js-api.esm.js.map +1 -1
- package/js-api.umd.min.js +10 -10
- package/js-api.umd.min.js.map +1 -1
- package/lib/apps/assets-manager/App.vue.d.ts +75 -0
- package/lib/apps/assets-manager/AssetsTab.vue.d.ts +22 -0
- package/lib/apps/assets-manager/components/AssetGridItem.vue.d.ts +16 -0
- package/lib/apps/browser/App.vue.d.ts +3 -1
- package/lib/apps/browser/appTypes.d.ts +4 -0
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +9 -5
- package/lib/apps/browser/stores/api.d.ts +29 -11
- package/lib/apps/browser/stores/app.d.ts +3 -0
- package/lib/apps/browser/stores/upload.d.ts +16 -20
- package/lib/apps/browser/types/actionKeys.d.ts +22 -0
- package/lib/apps/canvas-builder/App.vue.d.ts +302 -261
- package/lib/apps/canvas-builder/components/container/AnnotationMenu/AnnotationMenu.vue.d.ts +60 -0
- package/lib/apps/canvas-builder/components/container/CanvasContent/AnnotationContent.vue.d.ts +8 -0
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponent.vue.d.ts +11 -0
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentActionToolbar.vue.d.ts +7 -0
- package/lib/apps/canvas-builder/components/container/EditableComponent/{EditableComponentRevamp.vue.d.ts → EditableComponentContent.vue.d.ts} +13 -0
- package/lib/apps/canvas-builder/components/container/EditableComponent/ResizeHandles.vue.d.ts +4 -0
- package/lib/apps/canvas-builder/components/container/PopupApps/AdaptivePopupAppsButtons.vue.d.ts +17 -0
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +2 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.utils.d.ts +16 -0
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.raw.vue.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.settings.vue.d.ts +9 -5
- package/lib/apps/canvas-builder/components/ui/Html/CAiHtmlActions.vue.d.ts +23 -0
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.raw.vue.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/Root/Root.settings.vue.d.ts +9 -5
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionItemModal.vue.d.ts +6 -2
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorToolbar.vue.d.ts +7 -7
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorWithDragAndDrop.vue.d.ts +154 -0
- package/lib/apps/canvas-builder/composables/useAnnotation.d.ts +29 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +631 -29
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +12 -16
- package/lib/apps/canvas-builder/composables/useCanvasCompletionWizard.d.ts +3 -1
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +6 -4
- package/lib/apps/canvas-builder/composables/useCanvasPages.d.ts +2 -0
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +18 -4
- package/lib/apps/canvas-builder/composables/useCanvasVisibility.d.ts +2 -1
- package/lib/apps/canvas-builder/composables/useCrmShape.d.ts +1 -2
- package/lib/apps/canvas-builder/composables/useCrmShapeWithSectionContext.d.ts +5 -0
- package/lib/apps/canvas-builder/composables/useInstalledEmbeddables.d.ts +1 -0
- package/lib/apps/canvas-builder/composables/usePopupApps.d.ts +0 -4
- package/lib/apps/canvas-builder/composables/useReorderComponent.d.ts +1 -1
- package/lib/apps/canvas-builder/composables/useScribbleChild.d.ts +98 -0
- package/lib/apps/canvas-builder/composables/useScribbleToolbar.d.ts +11 -0
- package/lib/apps/canvas-builder/composables/useSectionPopularity.d.ts +1 -0
- package/lib/apps/canvas-builder/types/canvas.d.ts +22 -0
- package/lib/apps/canvas-builder/util/canvas.util.d.ts +1 -0
- package/lib/apps/canvas-builder/util/iframe.util.d.ts +16 -0
- package/lib/apps/canvas-selector/components/CanvasSelectionArea.vue.d.ts +171 -1
- package/lib/apps/canvas-selector/components/Sections.vue.d.ts +160 -1
- package/lib/apps/canvas-selector/stores/app.d.ts +14 -14
- package/lib/apps/collection-player/App.vue.d.ts +1 -0
- package/lib/apps/collection-player/components/ImageWithAnnotations.vue.d.ts +5 -1
- package/lib/apps/collection-player/stores/app.store.d.ts +3 -0
- package/lib/apps/collection-player/types/collection-player.type.d.ts +17 -0
- package/lib/apps/collection-selector/App.vue.d.ts +7 -7
- package/lib/apps/collection-selector/stores/app.store.d.ts +4 -2
- package/lib/apps/collection-selector/utils/content-selector-adapter.util.d.ts +16 -7
- package/lib/apps/collection-selector/utils/data.util.d.ts +4 -4
- package/lib/apps/content-selector/App.vue.d.ts +2 -0
- package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesListItem.vue.d.ts +1 -0
- package/lib/apps/content-selector/components/Content.vue.d.ts +74 -1
- package/lib/apps/content-selector/components/ui/GridItem.vue.d.ts +12 -2
- package/lib/apps/content-selector/stores/app.d.ts +16 -1
- package/lib/apps/ppt-conversion-selector/stores/app.store.d.ts +4 -1
- package/lib/apps/ppt-conversion-selector/utils/thumbnail.util.d.ts +1 -0
- package/lib/components/CAlgoliaSearch/CAlgoliaSearch.vue.d.ts +15 -0
- package/lib/components/CCarousel/CCarousel.vue.d.ts +20 -0
- package/lib/components/CComponentListItem/CComponentListItem.vue.d.ts +3 -0
- package/lib/components/CConfigEditor/CConfigEditor.vue.d.ts +5 -3
- package/lib/components/CContactSelector/CContactAccountListItem.vue.d.ts +2 -0
- package/lib/components/CContactSelector/CContactSelector.vue.d.ts +3 -0
- package/lib/components/CContactSelector/CContactSelectorAccountsWithContacts.vue.d.ts +31 -0
- package/lib/components/CFileViewer/CFileViewer.vue.d.ts +1 -9
- package/lib/components/CFileViewer/CFileViewerTop.vue.d.ts +0 -5
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.use.d.ts +2 -6
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawer.pdf.vue.d.ts +9 -5
- package/lib/components/CImage/CImage.vue.d.ts +11 -0
- package/lib/components/CKnockNotificationsAppWrapper/CKnockNotificationsAppWrapper.vue.d.ts +1 -1
- package/lib/components/CPillSelect/CPillSelect.vue.d.ts +14 -0
- package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementExtended.vue.d.ts +1 -1
- package/lib/components/CProcessingOverlay/CProcessingOverlay.vue.d.ts +19 -0
- package/lib/components/CRenameModal/CRenameModal.vue.d.ts +28 -0
- package/lib/components/CRichTextEditor/components/CDynamicValueTreeSelect.vue.d.ts +2 -0
- package/lib/components/CSectionSelectionActions/CSectionSelectionActions.vue.d.ts +19 -0
- package/lib/components/CSectionSmartFolders/CSectionSmartFolders.vue.d.ts +27 -1
- package/lib/components/CSectionSmartFolders/CSectionSmartFoldersToolbar.vue.d.ts +11 -0
- package/lib/components/CSlideViewer/CSlideViewer.pdfjs.vue.d.ts +18 -0
- package/lib/components/CSlideViewer/CSlideViewer.pspdfkit.vue.d.ts +14 -0
- package/lib/components/CSlideViewer/CSlideViewer.vue.d.ts +2 -7
- package/lib/components/CUserMenu/CUserMenu.vue.d.ts +1 -0
- package/lib/components/assignedCanvases/CAssignedCanvasesManagement.vue.d.ts +438 -0
- package/lib/components/assignedCanvases/CAssignedCanvasesManagementToolbar.vue.d.ts +41 -0
- package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +44 -60
- package/lib/components/canvas-blocks/CBlockManagementToolbar.vue.d.ts +13 -19
- package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +17 -17
- package/lib/components/canvas-templates/CTemplateManagementToolbar.vue.d.ts +2 -2
- package/lib/components/filters/CSearchFilter.vue.d.ts +3 -1
- package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +7 -7
- package/lib/components/savedCanvases/CSavedCanvasesManagementActionsCell.vue.d.ts +2 -2
- package/lib/components/savedCanvases/CSavedCanvasesManagementShareCanvas.use.d.ts +2 -0
- package/lib/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +12 -8
- package/lib/components/sections/CSectionManagement.vue.d.ts +24 -0
- package/lib/components/sections/CSectionManagementToolbar.vue.d.ts +7 -0
- package/lib/components/themes/CThemeManagement.vue.d.ts +96 -10
- package/lib/components/themes/CThemeManagementToolbar.vue.d.ts +31 -3
- package/lib/composables/appsDb.use.d.ts +2 -2
- package/lib/composables/bulkActions.use.d.ts +2 -2
- package/lib/composables/useBroadcastRouteChange.d.ts +4 -0
- package/lib/composables/useCanvasStandardFilters.d.ts +35 -0
- package/lib/composables/useDeleteUsedCanvasesConfirmation.d.ts +23 -0
- package/lib/composables/useFileDisplayHelpers.d.ts +6 -2
- package/lib/composables/useFileInfo.d.ts +30 -0
- package/lib/composables/useFilterSuggestions.d.ts +8 -16
- package/lib/composables/useFolderNameDescription.d.ts +25 -0
- package/lib/composables/useLegacyCollectionFileLoader.d.ts +31 -0
- package/lib/composables/useMetadataSearch.d.ts +1 -0
- package/lib/composables/usePolling.d.ts +23 -0
- package/lib/composables/useWindowEvents.d.ts +1 -0
- package/lib/constants/cdp.const.d.ts +2 -0
- package/lib/constants/tables.const.d.ts +1 -1
- package/lib/custom-naive-locales/it.d.ts +124 -0
- package/lib/custom-naive-locales/ja.d.ts +124 -0
- package/lib/custom-naive-locales/nl.d.ts +124 -0
- package/lib/custom-naive-locales/pt.d.ts +124 -0
- package/lib/custom-naive-locales/th.d.ts +124 -0
- package/lib/custom-naive-locales/zh.d.ts +124 -0
- package/lib/main.lib.d.ts +16 -3
- package/lib/modules/algolia-instantsearch.d.ts +1 -0
- package/lib/sdk/api/HighLevelApi.d.ts +3 -2
- package/lib/sdk/api/modules/dsr/files.dsr.d.ts +12 -0
- package/lib/sdk/api/modules/dsr/index.d.ts +3 -0
- package/lib/sdk/api/modules/dsr/types.dsr.d.ts +1 -0
- package/lib/sdk/api/modules/files.d.ts +2 -2
- package/lib/sdk/api/modules/ui/types.ui.d.ts +2 -0
- package/lib/sdk/api/modules/webView.d.ts +2 -1
- package/lib/sdk/interfaces.d.ts +46 -2
- package/lib/sdk/main.d.ts +15 -6
- package/lib/sdk/payload.types.d.ts +17 -0
- package/lib/stores/sectionSmartFolderStore.d.ts +2 -0
- package/lib/types/files.d.ts +2 -0
- package/lib/types/i18n.types.d.ts +1 -1
- package/lib/types/instanceSettings.types.d.ts +6 -1
- package/lib/types/launchDarkly.types.d.ts +2 -4
- package/lib/types/organizationSettings.types.d.ts +23 -0
- package/lib/types/sfdc.d.ts +1 -0
- package/lib/util/soql.util.d.ts +2 -0
- package/lib/util/storage.util.d.ts +2 -0
- package/lib/util/string.d.ts +1 -1
- package/lib/util/toCssClassKey.d.ts +1 -0
- package/lib/utils/defaultThumbnail.util.d.ts +3 -0
- package/lib/utils/iframeInitialize.d.ts +12 -0
- package/package.json +1 -1
- package/types/openapi/index.d.ts +7 -0
- package/types/openapi/models/Canvas.d.ts +1 -1
- package/types/openapi/models/CanvasCreate.d.ts +2 -2
- package/types/openapi/models/CanvasCreateRequest.d.ts +2 -2
- package/types/openapi/models/CanvasRecommendedFile.d.ts +0 -2
- package/types/openapi/models/CanvasRetrieve.d.ts +2 -2
- package/types/openapi/models/CanvasSection.d.ts +1 -0
- package/types/openapi/models/CanvasUpdate.d.ts +2 -2
- package/types/openapi/models/CanvasUpdateRequest.d.ts +2 -2
- package/types/openapi/models/ContentDistributionGroup.d.ts +1 -0
- package/types/openapi/models/ContentDistributionGroupCreate.d.ts +1 -0
- package/types/openapi/models/DeletedCanvas.d.ts +1 -1
- package/types/openapi/models/DeletedContentDistributionGroup.d.ts +1 -0
- package/types/openapi/models/DeletedFile.d.ts +0 -2
- package/types/openapi/models/DeletedFolder.d.ts +3 -0
- package/types/openapi/models/DeletedInstance.d.ts +2 -0
- package/types/openapi/models/DeletedRegion.d.ts +12 -0
- package/types/openapi/models/FavoriteFolder.d.ts +3 -0
- package/types/openapi/models/FavoriteFolderRequest.d.ts +3 -0
- package/types/openapi/models/File.d.ts +0 -2
- package/types/openapi/models/FileCreate.d.ts +0 -2
- package/types/openapi/models/FileCreateRequest.d.ts +0 -1
- package/types/openapi/models/FileRetrieve.d.ts +0 -2
- package/types/openapi/models/FileUpdate.d.ts +0 -2
- package/types/openapi/models/FileUpdateRequest.d.ts +0 -1
- package/types/openapi/models/Folder.d.ts +3 -0
- package/types/openapi/models/FolderCreate.d.ts +2 -1
- package/types/openapi/models/FolderFolder.d.ts +5 -0
- package/types/openapi/models/FolderRetrieve.d.ts +5 -1
- package/types/openapi/models/FolderUpdate.d.ts +2 -1
- package/types/openapi/models/Instance.d.ts +2 -0
- package/types/openapi/models/InstanceMembership.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipCreate.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipCreateRequest.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipRequest.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipUser.d.ts +0 -2
- package/types/openapi/models/InstanceRequest.d.ts +1 -0
- package/types/openapi/models/InstanceUpdate.d.ts +2 -0
- package/types/openapi/models/InstanceUpdateRequest.d.ts +1 -0
- package/types/openapi/models/MiniRegion.d.ts +4 -0
- package/types/openapi/models/MiniRegionRequest.d.ts +3 -0
- package/types/openapi/models/OrganizationAnalyticsInstance.d.ts +2 -0
- package/types/openapi/models/OrganizationAnalyticsTop3Instances.d.ts +2 -0
- package/types/openapi/models/PaginatedRegionList.d.ts +7 -0
- package/types/openapi/models/PatchedCanvasUpdateRequest.d.ts +2 -2
- package/types/openapi/models/PatchedFileUpdateRequest.d.ts +0 -1
- package/types/openapi/models/PatchedInstanceMembershipRequest.d.ts +4 -0
- package/types/openapi/models/PatchedInstanceUpdateRequest.d.ts +1 -0
- package/types/openapi/models/PatchedRegionRequest.d.ts +3 -0
- package/types/openapi/models/Region.d.ts +10 -0
- package/types/openapi/models/RegionRequest.d.ts +3 -0
- package/types/openapi/models/SharedLinkCanvas.d.ts +1 -1
- package/types/openapi/models/SharedLinkCanvasRequest.d.ts +1 -1
- package/types/openapi/models/User.d.ts +1 -0
- package/lib/components/CFileViewer/pdf/CFileViewer.pageThumbFavorite.pdf.use.d.ts +0 -10
- package/lib/components/CImage/CBrokenImage.vue.d.ts +0 -10
- package/lib/directives/usage-track.directive.d.ts +0 -10
- package/lib/util/usage-tracking.util.d.ts +0 -5
|
@@ -143,6 +143,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
143
143
|
readonly src: string | null;
|
|
144
144
|
readonly height?: string | undefined;
|
|
145
145
|
readonly width?: string | undefined;
|
|
146
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
146
147
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
147
148
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
148
149
|
readonly properties_by_embed_location?: {
|
|
@@ -242,6 +243,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
242
243
|
})[];
|
|
243
244
|
readonly size?: "medium" | undefined;
|
|
244
245
|
readonly layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
246
|
+
readonly data_accessor?: string | undefined;
|
|
245
247
|
} | {
|
|
246
248
|
readonly sections: readonly {
|
|
247
249
|
readonly id: string;
|
|
@@ -261,6 +263,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
261
263
|
readonly src: string | null;
|
|
262
264
|
readonly height?: string | undefined;
|
|
263
265
|
readonly width?: string | undefined;
|
|
266
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
264
267
|
readonly add_session_context?: boolean | undefined;
|
|
265
268
|
} | {
|
|
266
269
|
readonly alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
@@ -298,8 +301,6 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
298
301
|
readonly [x: string]: any;
|
|
299
302
|
} | undefined;
|
|
300
303
|
readonly tags?: readonly string[] | undefined;
|
|
301
|
-
readonly transcript?: string | undefined;
|
|
302
|
-
readonly search?: string | null | undefined;
|
|
303
304
|
readonly published_at?: string | null | undefined;
|
|
304
305
|
readonly expires_at?: string | null | undefined;
|
|
305
306
|
readonly instance_id?: string | undefined;
|
|
@@ -527,6 +528,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
527
528
|
readonly src: string | null;
|
|
528
529
|
readonly height?: string | undefined;
|
|
529
530
|
readonly width?: string | undefined;
|
|
531
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
530
532
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
531
533
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
532
534
|
readonly properties_by_embed_location?: {
|
|
@@ -626,6 +628,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
626
628
|
})[];
|
|
627
629
|
readonly size?: "medium" | undefined;
|
|
628
630
|
readonly layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
631
|
+
readonly data_accessor?: string | undefined;
|
|
629
632
|
} | {
|
|
630
633
|
readonly sections: readonly {
|
|
631
634
|
readonly id: string;
|
|
@@ -645,6 +648,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
645
648
|
readonly src: string | null;
|
|
646
649
|
readonly height?: string | undefined;
|
|
647
650
|
readonly width?: string | undefined;
|
|
651
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
648
652
|
readonly add_session_context?: boolean | undefined;
|
|
649
653
|
} | {
|
|
650
654
|
readonly alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
@@ -682,8 +686,6 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
682
686
|
readonly [x: string]: any;
|
|
683
687
|
} | undefined;
|
|
684
688
|
readonly tags?: readonly string[] | undefined;
|
|
685
|
-
readonly transcript?: string | undefined;
|
|
686
|
-
readonly search?: string | null | undefined;
|
|
687
689
|
readonly published_at?: string | null | undefined;
|
|
688
690
|
readonly expires_at?: string | null | undefined;
|
|
689
691
|
readonly instance_id?: string | undefined;
|
|
@@ -777,8 +779,12 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
777
779
|
};
|
|
778
780
|
};
|
|
779
781
|
}>;
|
|
780
|
-
declare function exitFullscreen(
|
|
781
|
-
|
|
782
|
+
declare function exitFullscreen(options?: {
|
|
783
|
+
skipJsApiEvent?: boolean;
|
|
784
|
+
}): void;
|
|
785
|
+
declare function enterFullscreen(options?: {
|
|
786
|
+
skipJsApiEvent?: boolean;
|
|
787
|
+
}): void;
|
|
782
788
|
declare function saveCanvasContent({ showToast }?: {
|
|
783
789
|
showToast: boolean;
|
|
784
790
|
}): Promise<void>;
|
|
@@ -787,14 +793,14 @@ declare function saveCanvasContext(context: any, { showToast }?: {
|
|
|
787
793
|
}): Promise<undefined>;
|
|
788
794
|
declare function saveCanvasContentWithContext(context: any, { showToast }?: {
|
|
789
795
|
showToast?: boolean;
|
|
790
|
-
}): Promise<undefined>;
|
|
791
|
-
declare function getMaxWidth(pitcherSettings: OrganizationSettings & InstanceSettings): string | undefined;
|
|
796
|
+
}, extraMetadata?: Record<string, any>): Promise<undefined>;
|
|
797
|
+
declare function getMaxWidth(pitcherSettings: OrganizationSettings & InstanceSettings, enableScaleContent?: boolean): string | undefined;
|
|
792
798
|
export default function useCanvas(): {
|
|
793
799
|
activeCanvas: Ref<{
|
|
794
800
|
readonly id: string;
|
|
795
801
|
name: string;
|
|
796
802
|
content?: Record<string, any> | undefined;
|
|
797
|
-
context?:
|
|
803
|
+
context?: any;
|
|
798
804
|
indicators?: (Record<string, any> | null) | undefined;
|
|
799
805
|
theme?: (Record<string, any> | null) | undefined;
|
|
800
806
|
is_draft?: boolean | undefined;
|
|
@@ -803,7 +809,7 @@ export default function useCanvas(): {
|
|
|
803
809
|
is_block?: boolean | undefined;
|
|
804
810
|
is_editable?: boolean | undefined;
|
|
805
811
|
is_default?: boolean | undefined;
|
|
806
|
-
metadata?:
|
|
812
|
+
metadata?: any;
|
|
807
813
|
tags?: Array<string> | undefined;
|
|
808
814
|
start_at?: string | null | undefined;
|
|
809
815
|
expires_at?: string | null | undefined;
|
|
@@ -820,6 +826,7 @@ export default function useCanvas(): {
|
|
|
820
826
|
content: Record<string, any>;
|
|
821
827
|
theme?: (Record<string, any> | null) | undefined;
|
|
822
828
|
metadata?: Record<string, any> | undefined;
|
|
829
|
+
is_draft: boolean;
|
|
823
830
|
}[];
|
|
824
831
|
readonly shared_link: {
|
|
825
832
|
readonly url: string;
|
|
@@ -856,7 +863,7 @@ export default function useCanvas(): {
|
|
|
856
863
|
readonly id: string;
|
|
857
864
|
name: string;
|
|
858
865
|
content?: Record<string, any> | undefined;
|
|
859
|
-
context?:
|
|
866
|
+
context?: any;
|
|
860
867
|
indicators?: (Record<string, any> | null) | undefined;
|
|
861
868
|
theme?: (Record<string, any> | null) | undefined;
|
|
862
869
|
is_draft?: boolean | undefined;
|
|
@@ -865,7 +872,7 @@ export default function useCanvas(): {
|
|
|
865
872
|
is_block?: boolean | undefined;
|
|
866
873
|
is_editable?: boolean | undefined;
|
|
867
874
|
is_default?: boolean | undefined;
|
|
868
|
-
metadata?:
|
|
875
|
+
metadata?: any;
|
|
869
876
|
tags?: Array<string> | undefined;
|
|
870
877
|
start_at?: string | null | undefined;
|
|
871
878
|
expires_at?: string | null | undefined;
|
|
@@ -882,6 +889,7 @@ export default function useCanvas(): {
|
|
|
882
889
|
content: Record<string, any>;
|
|
883
890
|
theme?: (Record<string, any> | null) | undefined;
|
|
884
891
|
metadata?: Record<string, any> | undefined;
|
|
892
|
+
is_draft: boolean;
|
|
885
893
|
}[];
|
|
886
894
|
readonly shared_link: {
|
|
887
895
|
readonly url: string;
|
|
@@ -921,6 +929,7 @@ export default function useCanvas(): {
|
|
|
921
929
|
content: Record<string, any>;
|
|
922
930
|
theme?: (Record<string, any> | null) | undefined;
|
|
923
931
|
metadata?: Record<string, any> | undefined;
|
|
932
|
+
is_draft: boolean;
|
|
924
933
|
}>>;
|
|
925
934
|
activeEditNode: import('vue').ComputedRef<{
|
|
926
935
|
readonly id: string;
|
|
@@ -1054,6 +1063,7 @@ export default function useCanvas(): {
|
|
|
1054
1063
|
readonly src: string | null;
|
|
1055
1064
|
readonly height?: string | undefined;
|
|
1056
1065
|
readonly width?: string | undefined;
|
|
1066
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
1057
1067
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
1058
1068
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
1059
1069
|
readonly properties_by_embed_location?: {
|
|
@@ -1153,6 +1163,7 @@ export default function useCanvas(): {
|
|
|
1153
1163
|
})[];
|
|
1154
1164
|
readonly size?: "medium" | undefined;
|
|
1155
1165
|
readonly layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
1166
|
+
readonly data_accessor?: string | undefined;
|
|
1156
1167
|
} | {
|
|
1157
1168
|
readonly sections: readonly {
|
|
1158
1169
|
readonly id: string;
|
|
@@ -1172,6 +1183,7 @@ export default function useCanvas(): {
|
|
|
1172
1183
|
readonly src: string | null;
|
|
1173
1184
|
readonly height?: string | undefined;
|
|
1174
1185
|
readonly width?: string | undefined;
|
|
1186
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
1175
1187
|
readonly add_session_context?: boolean | undefined;
|
|
1176
1188
|
} | {
|
|
1177
1189
|
readonly alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
@@ -1209,8 +1221,6 @@ export default function useCanvas(): {
|
|
|
1209
1221
|
readonly [x: string]: any;
|
|
1210
1222
|
} | undefined;
|
|
1211
1223
|
readonly tags?: readonly string[] | undefined;
|
|
1212
|
-
readonly transcript?: string | undefined;
|
|
1213
|
-
readonly search?: string | null | undefined;
|
|
1214
1224
|
readonly published_at?: string | null | undefined;
|
|
1215
1225
|
readonly expires_at?: string | null | undefined;
|
|
1216
1226
|
readonly instance_id?: string | undefined;
|
|
@@ -1450,6 +1460,7 @@ export default function useCanvas(): {
|
|
|
1450
1460
|
readonly src: string | null;
|
|
1451
1461
|
readonly height?: string | undefined;
|
|
1452
1462
|
readonly width?: string | undefined;
|
|
1463
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
1453
1464
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
1454
1465
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
1455
1466
|
readonly properties_by_embed_location?: {
|
|
@@ -1549,6 +1560,7 @@ export default function useCanvas(): {
|
|
|
1549
1560
|
})[];
|
|
1550
1561
|
readonly size?: "medium" | undefined;
|
|
1551
1562
|
readonly layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
1563
|
+
readonly data_accessor?: string | undefined;
|
|
1552
1564
|
} | {
|
|
1553
1565
|
readonly sections: readonly {
|
|
1554
1566
|
readonly id: string;
|
|
@@ -1568,6 +1580,7 @@ export default function useCanvas(): {
|
|
|
1568
1580
|
readonly src: string | null;
|
|
1569
1581
|
readonly height?: string | undefined;
|
|
1570
1582
|
readonly width?: string | undefined;
|
|
1583
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
1571
1584
|
readonly add_session_context?: boolean | undefined;
|
|
1572
1585
|
} | {
|
|
1573
1586
|
readonly alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
@@ -1605,8 +1618,6 @@ export default function useCanvas(): {
|
|
|
1605
1618
|
readonly [x: string]: any;
|
|
1606
1619
|
} | undefined;
|
|
1607
1620
|
readonly tags?: readonly string[] | undefined;
|
|
1608
|
-
readonly transcript?: string | undefined;
|
|
1609
|
-
readonly search?: string | null | undefined;
|
|
1610
1621
|
readonly published_at?: string | null | undefined;
|
|
1611
1622
|
readonly expires_at?: string | null | undefined;
|
|
1612
1623
|
readonly instance_id?: string | undefined;
|
|
@@ -1832,6 +1843,7 @@ export default function useCanvas(): {
|
|
|
1832
1843
|
src: string | null;
|
|
1833
1844
|
height?: string | undefined;
|
|
1834
1845
|
width?: string | undefined;
|
|
1846
|
+
full_screen_mode?: boolean | undefined;
|
|
1835
1847
|
embed_locations?: EmbedLocation[] | undefined;
|
|
1836
1848
|
headless_locations?: EmbedLocation[] | undefined;
|
|
1837
1849
|
properties_by_embed_location?: {
|
|
@@ -1925,6 +1937,7 @@ export default function useCanvas(): {
|
|
|
1925
1937
|
})[];
|
|
1926
1938
|
size?: "medium" | undefined;
|
|
1927
1939
|
layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
1940
|
+
data_accessor?: string | undefined;
|
|
1928
1941
|
} | {
|
|
1929
1942
|
sections: {
|
|
1930
1943
|
id: string;
|
|
@@ -1942,6 +1955,7 @@ export default function useCanvas(): {
|
|
|
1942
1955
|
src: string | null;
|
|
1943
1956
|
height?: string | undefined;
|
|
1944
1957
|
width?: string | undefined;
|
|
1958
|
+
full_screen_mode?: boolean | undefined;
|
|
1945
1959
|
add_session_context?: boolean | undefined;
|
|
1946
1960
|
} | {
|
|
1947
1961
|
alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
@@ -1975,8 +1989,6 @@ export default function useCanvas(): {
|
|
|
1975
1989
|
metadata?: Record<string, any> | undefined;
|
|
1976
1990
|
app_metadata?: Record<string, any> | undefined;
|
|
1977
1991
|
tags?: Array<string> | undefined;
|
|
1978
|
-
transcript?: string | undefined;
|
|
1979
|
-
readonly search?: string | null | undefined;
|
|
1980
1992
|
readonly published_at?: string | null | undefined;
|
|
1981
1993
|
expires_at?: string | null | undefined;
|
|
1982
1994
|
readonly instance_id?: string | undefined;
|
|
@@ -2171,6 +2183,7 @@ export default function useCanvas(): {
|
|
|
2171
2183
|
src: string | null;
|
|
2172
2184
|
height?: string | undefined;
|
|
2173
2185
|
width?: string | undefined;
|
|
2186
|
+
full_screen_mode?: boolean | undefined;
|
|
2174
2187
|
embed_locations?: EmbedLocation[] | undefined;
|
|
2175
2188
|
headless_locations?: EmbedLocation[] | undefined;
|
|
2176
2189
|
properties_by_embed_location?: {
|
|
@@ -2264,6 +2277,7 @@ export default function useCanvas(): {
|
|
|
2264
2277
|
})[];
|
|
2265
2278
|
size?: "medium" | undefined;
|
|
2266
2279
|
layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
2280
|
+
data_accessor?: string | undefined;
|
|
2267
2281
|
} | {
|
|
2268
2282
|
sections: {
|
|
2269
2283
|
id: string;
|
|
@@ -2281,6 +2295,7 @@ export default function useCanvas(): {
|
|
|
2281
2295
|
src: string | null;
|
|
2282
2296
|
height?: string | undefined;
|
|
2283
2297
|
width?: string | undefined;
|
|
2298
|
+
full_screen_mode?: boolean | undefined;
|
|
2284
2299
|
add_session_context?: boolean | undefined;
|
|
2285
2300
|
} | {
|
|
2286
2301
|
alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
@@ -2314,8 +2329,6 @@ export default function useCanvas(): {
|
|
|
2314
2329
|
metadata?: Record<string, any> | undefined;
|
|
2315
2330
|
app_metadata?: Record<string, any> | undefined;
|
|
2316
2331
|
tags?: Array<string> | undefined;
|
|
2317
|
-
transcript?: string | undefined;
|
|
2318
|
-
readonly search?: string | null | undefined;
|
|
2319
2332
|
readonly published_at?: string | null | undefined;
|
|
2320
2333
|
expires_at?: string | null | undefined;
|
|
2321
2334
|
readonly instance_id?: string | undefined;
|
|
@@ -2562,6 +2575,7 @@ export default function useCanvas(): {
|
|
|
2562
2575
|
readonly src: string | null;
|
|
2563
2576
|
readonly height?: string | undefined;
|
|
2564
2577
|
readonly width?: string | undefined;
|
|
2578
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
2565
2579
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
2566
2580
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
2567
2581
|
readonly properties_by_embed_location?: {
|
|
@@ -2661,6 +2675,7 @@ export default function useCanvas(): {
|
|
|
2661
2675
|
})[];
|
|
2662
2676
|
readonly size?: "medium" | undefined;
|
|
2663
2677
|
readonly layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
2678
|
+
readonly data_accessor?: string | undefined;
|
|
2664
2679
|
} | {
|
|
2665
2680
|
readonly sections: readonly {
|
|
2666
2681
|
readonly id: string;
|
|
@@ -2680,6 +2695,7 @@ export default function useCanvas(): {
|
|
|
2680
2695
|
readonly src: string | null;
|
|
2681
2696
|
readonly height?: string | undefined;
|
|
2682
2697
|
readonly width?: string | undefined;
|
|
2698
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
2683
2699
|
readonly add_session_context?: boolean | undefined;
|
|
2684
2700
|
} | {
|
|
2685
2701
|
readonly alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
@@ -2717,8 +2733,6 @@ export default function useCanvas(): {
|
|
|
2717
2733
|
readonly [x: string]: any;
|
|
2718
2734
|
} | undefined;
|
|
2719
2735
|
readonly tags?: readonly string[] | undefined;
|
|
2720
|
-
readonly transcript?: string | undefined;
|
|
2721
|
-
readonly search?: string | null | undefined;
|
|
2722
2736
|
readonly published_at?: string | null | undefined;
|
|
2723
2737
|
readonly expires_at?: string | null | undefined;
|
|
2724
2738
|
readonly instance_id?: string | undefined;
|
|
@@ -2845,6 +2859,7 @@ export default function useCanvas(): {
|
|
|
2845
2859
|
isFullscreen: Ref<boolean, boolean>;
|
|
2846
2860
|
isHomeMode: import('vue').ComputedRef<boolean>;
|
|
2847
2861
|
isImpact: import('vue').ComputedRef<boolean>;
|
|
2862
|
+
isCanvasPreviewMode: Ref<boolean, boolean>;
|
|
2848
2863
|
isPrintDisplayMode: import('vue').ComputedRef<boolean>;
|
|
2849
2864
|
isRedirectEvent: Ref<boolean, boolean>;
|
|
2850
2865
|
isSameAsSaved: import('vue').ComputedRef<any>;
|
|
@@ -3123,6 +3138,7 @@ export default function useCanvas(): {
|
|
|
3123
3138
|
readonly src: string | null;
|
|
3124
3139
|
readonly height?: string | undefined;
|
|
3125
3140
|
readonly width?: string | undefined;
|
|
3141
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
3126
3142
|
readonly embed_locations?: readonly EmbedLocation[] | undefined;
|
|
3127
3143
|
readonly headless_locations?: readonly EmbedLocation[] | undefined;
|
|
3128
3144
|
readonly properties_by_embed_location?: {
|
|
@@ -3222,6 +3238,7 @@ export default function useCanvas(): {
|
|
|
3222
3238
|
})[];
|
|
3223
3239
|
readonly size?: "medium" | undefined;
|
|
3224
3240
|
readonly layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
3241
|
+
readonly data_accessor?: string | undefined;
|
|
3225
3242
|
} | {
|
|
3226
3243
|
readonly sections: readonly {
|
|
3227
3244
|
readonly id: string;
|
|
@@ -3241,6 +3258,7 @@ export default function useCanvas(): {
|
|
|
3241
3258
|
readonly src: string | null;
|
|
3242
3259
|
readonly height?: string | undefined;
|
|
3243
3260
|
readonly width?: string | undefined;
|
|
3261
|
+
readonly full_screen_mode?: boolean | undefined;
|
|
3244
3262
|
readonly add_session_context?: boolean | undefined;
|
|
3245
3263
|
} | {
|
|
3246
3264
|
readonly alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
@@ -3278,8 +3296,6 @@ export default function useCanvas(): {
|
|
|
3278
3296
|
readonly [x: string]: any;
|
|
3279
3297
|
} | undefined;
|
|
3280
3298
|
readonly tags?: readonly string[] | undefined;
|
|
3281
|
-
readonly transcript?: string | undefined;
|
|
3282
|
-
readonly search?: string | null | undefined;
|
|
3283
3299
|
readonly published_at?: string | null | undefined;
|
|
3284
3300
|
readonly expires_at?: string | null | undefined;
|
|
3285
3301
|
readonly instance_id?: string | undefined;
|
|
@@ -3375,6 +3391,349 @@ export default function useCanvas(): {
|
|
|
3375
3391
|
}>;
|
|
3376
3392
|
sectionComponentOverrides: Ref<SectionComponentOverrides, SectionComponentOverrides>;
|
|
3377
3393
|
selectedComponentType: import('vue').ComputedRef<ComponentTypes | null>;
|
|
3394
|
+
selectedComponentParentType: import('vue').ComputedRef<ComponentTypes | undefined>;
|
|
3395
|
+
activeEditNodeParentType: import('vue').ComputedRef<ComponentTypes | undefined>;
|
|
3396
|
+
selectedComponentParent: import('vue').ComputedRef<{
|
|
3397
|
+
id: string;
|
|
3398
|
+
type: ComponentTypes;
|
|
3399
|
+
tracking_id: string;
|
|
3400
|
+
visible?: {
|
|
3401
|
+
edit_mode: boolean;
|
|
3402
|
+
presentation_mode: boolean;
|
|
3403
|
+
pdf: boolean;
|
|
3404
|
+
web: boolean;
|
|
3405
|
+
} | undefined;
|
|
3406
|
+
linkable?: {
|
|
3407
|
+
linkable_in_templates: boolean;
|
|
3408
|
+
} | undefined;
|
|
3409
|
+
print?: {
|
|
3410
|
+
scale_to_fit_page?: boolean | undefined;
|
|
3411
|
+
} | undefined;
|
|
3412
|
+
allow_admins_to_overwrite?: boolean | undefined;
|
|
3413
|
+
autofill?: "off" | "ai" | "matching_metadata" | "matching_tags" | "matching_metadata_or_tags" | undefined;
|
|
3414
|
+
autofill_content_types?: import('../../../../types/openapi').FileContentTypeEnum[] | null | undefined;
|
|
3415
|
+
data?: import('../types/canvas').PageBreakProps | {
|
|
3416
|
+
groups: {
|
|
3417
|
+
id: string;
|
|
3418
|
+
name: string;
|
|
3419
|
+
slides: ({
|
|
3420
|
+
id: string;
|
|
3421
|
+
type: "slide";
|
|
3422
|
+
file: {
|
|
3423
|
+
metadata?: Record<string, any> | undefined;
|
|
3424
|
+
readonly id: string;
|
|
3425
|
+
name?: string | undefined;
|
|
3426
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
3427
|
+
tags?: Array<string> | undefined;
|
|
3428
|
+
readonly thumbnail_url: string | null;
|
|
3429
|
+
permissions?: {
|
|
3430
|
+
can_download?: boolean | undefined;
|
|
3431
|
+
can_share?: boolean | undefined;
|
|
3432
|
+
} | undefined;
|
|
3433
|
+
readonly content_url: string | null;
|
|
3434
|
+
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
3435
|
+
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
3436
|
+
readonly pspdfkit_document_id: string | null;
|
|
3437
|
+
readonly pspdfkit_server_url: string | null;
|
|
3438
|
+
};
|
|
3439
|
+
slide: {
|
|
3440
|
+
index: number;
|
|
3441
|
+
url: import('../../../../types/openapi').FileRetrieve["thumbnail_url"];
|
|
3442
|
+
};
|
|
3443
|
+
} | {
|
|
3444
|
+
id: string;
|
|
3445
|
+
type: "file";
|
|
3446
|
+
file: {
|
|
3447
|
+
metadata?: Record<string, any> | undefined;
|
|
3448
|
+
readonly id: string;
|
|
3449
|
+
name?: string | undefined;
|
|
3450
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
3451
|
+
tags?: Array<string> | undefined;
|
|
3452
|
+
readonly thumbnail_url: string | null;
|
|
3453
|
+
permissions?: {
|
|
3454
|
+
can_download?: boolean | undefined;
|
|
3455
|
+
can_share?: boolean | undefined;
|
|
3456
|
+
} | undefined;
|
|
3457
|
+
readonly content_url: string | null;
|
|
3458
|
+
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
3459
|
+
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
3460
|
+
readonly pspdfkit_document_id: string | null;
|
|
3461
|
+
readonly pspdfkit_server_url: string | null;
|
|
3462
|
+
};
|
|
3463
|
+
})[];
|
|
3464
|
+
}[];
|
|
3465
|
+
filters?: Record<string, any> | undefined;
|
|
3466
|
+
name: string;
|
|
3467
|
+
hide_footer?: boolean | undefined;
|
|
3468
|
+
data_accessor?: string | undefined;
|
|
3469
|
+
} | {
|
|
3470
|
+
layout_type: import('../types/canvas').GridLayoutTypes;
|
|
3471
|
+
columns: number;
|
|
3472
|
+
} | {
|
|
3473
|
+
span: number;
|
|
3474
|
+
tooltips?: {
|
|
3475
|
+
content?: string | undefined;
|
|
3476
|
+
content_style?: Record<string, any> | undefined;
|
|
3477
|
+
trigger?: string | undefined;
|
|
3478
|
+
trigger_style?: Record<string, any> | undefined;
|
|
3479
|
+
}[] | undefined;
|
|
3480
|
+
} | {
|
|
3481
|
+
content?: string | undefined;
|
|
3482
|
+
} | {
|
|
3483
|
+
images?: {
|
|
3484
|
+
url: string;
|
|
3485
|
+
is_uploaded_asset?: boolean | undefined;
|
|
3486
|
+
}[] | undefined;
|
|
3487
|
+
placeholder_height?: string | undefined;
|
|
3488
|
+
include_all_images_in_pdf?: boolean | undefined;
|
|
3489
|
+
} | {
|
|
3490
|
+
asset_type: "external";
|
|
3491
|
+
external_url: string;
|
|
3492
|
+
type: "image" | "video";
|
|
3493
|
+
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
3494
|
+
from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
3495
|
+
poster_url?: string | undefined;
|
|
3496
|
+
poster_background_size?: BackgroundSize | undefined;
|
|
3497
|
+
} | {
|
|
3498
|
+
asset_type: "pitcher_asset";
|
|
3499
|
+
file: {
|
|
3500
|
+
id: import('../../../../types/openapi').File["id"];
|
|
3501
|
+
name: import('../../../../types/openapi').File["name"];
|
|
3502
|
+
content_url?: import('../../../../types/openapi').File["content_url"] | undefined;
|
|
3503
|
+
};
|
|
3504
|
+
type: "image" | "video";
|
|
3505
|
+
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
3506
|
+
poster_url?: string | undefined;
|
|
3507
|
+
poster_background_size?: BackgroundSize | undefined;
|
|
3508
|
+
} | {
|
|
3509
|
+
type: "app";
|
|
3510
|
+
app_name: string;
|
|
3511
|
+
src: string | null;
|
|
3512
|
+
height?: string | undefined;
|
|
3513
|
+
width?: string | undefined;
|
|
3514
|
+
full_screen_mode?: boolean | undefined;
|
|
3515
|
+
embed_locations?: EmbedLocation[] | undefined;
|
|
3516
|
+
headless_locations?: EmbedLocation[] | undefined;
|
|
3517
|
+
properties_by_embed_location?: {
|
|
3518
|
+
dsr?: {
|
|
3519
|
+
start_in_loading_mode?: boolean | undefined;
|
|
3520
|
+
} | undefined;
|
|
3521
|
+
canvas?: {
|
|
3522
|
+
start_in_loading_mode?: boolean | undefined;
|
|
3523
|
+
} | undefined;
|
|
3524
|
+
ui_app?: {
|
|
3525
|
+
start_in_loading_mode?: boolean | undefined;
|
|
3526
|
+
} | undefined;
|
|
3527
|
+
admin_instance?: {
|
|
3528
|
+
start_in_loading_mode?: boolean | undefined;
|
|
3529
|
+
} | undefined;
|
|
3530
|
+
overlay_app?: {
|
|
3531
|
+
start_in_loading_mode?: boolean | undefined;
|
|
3532
|
+
} | undefined;
|
|
3533
|
+
canvas_section_execution?: {
|
|
3534
|
+
start_in_loading_mode?: boolean | undefined;
|
|
3535
|
+
} | undefined;
|
|
3536
|
+
canvas_drawer?: {
|
|
3537
|
+
start_in_loading_mode?: boolean | undefined;
|
|
3538
|
+
} | undefined;
|
|
3539
|
+
} | undefined;
|
|
3540
|
+
file: {
|
|
3541
|
+
id: import('../../../../types/openapi').FileRetrieve["id"];
|
|
3542
|
+
snapshot_id?: import('../../../../types/openapi').FileRetrieve["id"] | undefined;
|
|
3543
|
+
name: import('../../../../types/openapi').FileRetrieve["name"];
|
|
3544
|
+
is_deleted?: boolean | undefined;
|
|
3545
|
+
expires_at?: string | null | undefined;
|
|
3546
|
+
content_url: import('../../../../types/openapi').FileRetrieve["content_url"];
|
|
3547
|
+
content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
3548
|
+
content_extension: import('../../../../types/openapi').FileRetrieve["content_extension"];
|
|
3549
|
+
permissions?: {
|
|
3550
|
+
can_download?: boolean | undefined;
|
|
3551
|
+
can_share?: boolean | undefined;
|
|
3552
|
+
} | undefined;
|
|
3553
|
+
tags?: string[] | undefined;
|
|
3554
|
+
thumbnail_url?: import('../../../../types/openapi').FileRetrieve["thumbnail_url"] | undefined;
|
|
3555
|
+
readonly content_length?: import('../../../../types/openapi').FileRetrieve["content_length"] | undefined;
|
|
3556
|
+
content_thumbnails?: (import('../../../../types/openapi').FileRetrieve["content_thumbnails"] | null) | undefined;
|
|
3557
|
+
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
3558
|
+
readonly pspdfkit_auth_payload?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_auth_payload"] | undefined;
|
|
3559
|
+
} | null;
|
|
3560
|
+
settings?: Record<string, unknown> | undefined;
|
|
3561
|
+
} | {
|
|
3562
|
+
items: ({
|
|
3563
|
+
file: {
|
|
3564
|
+
id: import('../../../../types/openapi').FileRetrieve["id"];
|
|
3565
|
+
snapshot_id?: import('../../../../types/openapi').FileRetrieve["id"] | undefined;
|
|
3566
|
+
name: import('../../../../types/openapi').FileRetrieve["name"];
|
|
3567
|
+
is_deleted?: boolean | undefined;
|
|
3568
|
+
expires_at?: string | null | undefined;
|
|
3569
|
+
content_url?: import('../../../../types/openapi').FileRetrieve["content_url"] | undefined;
|
|
3570
|
+
content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
3571
|
+
content_extension?: import('../../../../types/openapi').FileRetrieve["content_extension"] | undefined;
|
|
3572
|
+
permissions?: {
|
|
3573
|
+
can_download?: boolean | undefined;
|
|
3574
|
+
can_share?: boolean | undefined;
|
|
3575
|
+
} | undefined;
|
|
3576
|
+
tags?: string[] | undefined;
|
|
3577
|
+
};
|
|
3578
|
+
slide: {
|
|
3579
|
+
index: number;
|
|
3580
|
+
url?: import('../../../../types/openapi').FileRetrieve["content_thumbnails"][number] | undefined;
|
|
3581
|
+
};
|
|
3582
|
+
type: "slide";
|
|
3583
|
+
} | {
|
|
3584
|
+
file: {
|
|
3585
|
+
id: import('../../../../types/openapi').FileRetrieve["id"];
|
|
3586
|
+
snapshot_id?: import('../../../../types/openapi').FileRetrieve["id"] | undefined;
|
|
3587
|
+
name: import('../../../../types/openapi').FileRetrieve["name"];
|
|
3588
|
+
is_deleted?: boolean | undefined;
|
|
3589
|
+
expires_at?: string | null | undefined;
|
|
3590
|
+
content_url: import('../../../../types/openapi').FileRetrieve["content_url"];
|
|
3591
|
+
content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
3592
|
+
content_extension: import('../../../../types/openapi').FileRetrieve["content_extension"];
|
|
3593
|
+
permissions?: {
|
|
3594
|
+
can_download?: boolean | undefined;
|
|
3595
|
+
can_share?: boolean | undefined;
|
|
3596
|
+
} | undefined;
|
|
3597
|
+
tags?: string[] | undefined;
|
|
3598
|
+
thumbnail_url?: import('../../../../types/openapi').FileRetrieve["thumbnail_url"] | undefined;
|
|
3599
|
+
readonly content_length?: import('../../../../types/openapi').FileRetrieve["content_length"] | undefined;
|
|
3600
|
+
content_thumbnails?: (import('../../../../types/openapi').FileRetrieve["content_thumbnails"] | null) | undefined;
|
|
3601
|
+
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
3602
|
+
readonly pspdfkit_auth_payload?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_auth_payload"] | undefined;
|
|
3603
|
+
};
|
|
3604
|
+
type: "file";
|
|
3605
|
+
})[];
|
|
3606
|
+
size?: "medium" | undefined;
|
|
3607
|
+
layout_type?: import('../types/canvas').ContentGridLayoutTypes | undefined;
|
|
3608
|
+
data_accessor?: string | undefined;
|
|
3609
|
+
} | {
|
|
3610
|
+
sections: {
|
|
3611
|
+
id: string;
|
|
3612
|
+
style?: Record<string, any> | undefined;
|
|
3613
|
+
aspect_ratio?: ("contain" | "unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
3614
|
+
background_video_url?: string | undefined;
|
|
3615
|
+
}[];
|
|
3616
|
+
animation_in?: string | undefined;
|
|
3617
|
+
selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
3618
|
+
selection_app_name?: string | undefined;
|
|
3619
|
+
is_restricted_to_preselections?: boolean | undefined;
|
|
3620
|
+
} | {
|
|
3621
|
+
html: string;
|
|
3622
|
+
} | {
|
|
3623
|
+
src: string | null;
|
|
3624
|
+
height?: string | undefined;
|
|
3625
|
+
width?: string | undefined;
|
|
3626
|
+
full_screen_mode?: boolean | undefined;
|
|
3627
|
+
add_session_context?: boolean | undefined;
|
|
3628
|
+
} | {
|
|
3629
|
+
alignment?: import('../types/canvas').LinkAlignmentTypes | undefined;
|
|
3630
|
+
background_color?: string | undefined;
|
|
3631
|
+
canvas_anchor?: string | undefined;
|
|
3632
|
+
color?: string | undefined;
|
|
3633
|
+
display_text?: string | undefined;
|
|
3634
|
+
file?: {
|
|
3635
|
+
readonly id?: string | undefined;
|
|
3636
|
+
readonly global_id?: string | undefined;
|
|
3637
|
+
name?: string | undefined;
|
|
3638
|
+
readonly type?: import('../../../../types/openapi').FileTypeEnum | undefined;
|
|
3639
|
+
readonly size?: number | null | undefined;
|
|
3640
|
+
readonly status?: import('../../../../types/openapi').FileStatusEnum | undefined;
|
|
3641
|
+
readonly content_type?: import('../../../../types/openapi').FileContentTypeEnum | undefined;
|
|
3642
|
+
readonly content_extension?: string | null | undefined;
|
|
3643
|
+
readonly content_length?: number | null | undefined;
|
|
3644
|
+
readonly content_url?: string | null | undefined;
|
|
3645
|
+
readonly original_extension?: string | null | undefined;
|
|
3646
|
+
readonly original_url?: string | null | undefined;
|
|
3647
|
+
readonly thumbnail_url?: string | null | undefined;
|
|
3648
|
+
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
3649
|
+
readonly zip_size?: number | null | undefined;
|
|
3650
|
+
readonly zip_url?: string | null | undefined;
|
|
3651
|
+
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
3652
|
+
readonly role?: import('../../../../types/openapi').CollaborationRoleEnum | undefined;
|
|
3653
|
+
permissions?: {
|
|
3654
|
+
can_download?: boolean | undefined;
|
|
3655
|
+
can_share?: boolean | undefined;
|
|
3656
|
+
} | undefined;
|
|
3657
|
+
metadata?: Record<string, any> | undefined;
|
|
3658
|
+
app_metadata?: Record<string, any> | undefined;
|
|
3659
|
+
tags?: Array<string> | undefined;
|
|
3660
|
+
readonly published_at?: string | null | undefined;
|
|
3661
|
+
expires_at?: string | null | undefined;
|
|
3662
|
+
readonly instance_id?: string | undefined;
|
|
3663
|
+
folder_id?: string | undefined;
|
|
3664
|
+
readonly folder?: {
|
|
3665
|
+
readonly id: string;
|
|
3666
|
+
name: string;
|
|
3667
|
+
} | undefined;
|
|
3668
|
+
readonly shared_link?: {
|
|
3669
|
+
readonly url: string;
|
|
3670
|
+
short_url?: string | null | undefined;
|
|
3671
|
+
} | undefined;
|
|
3672
|
+
readonly owned_by?: {
|
|
3673
|
+
readonly id: number;
|
|
3674
|
+
readonly name: string;
|
|
3675
|
+
email?: string | undefined;
|
|
3676
|
+
} | undefined;
|
|
3677
|
+
readonly created_at?: string | undefined;
|
|
3678
|
+
readonly created_by?: {
|
|
3679
|
+
readonly id: number;
|
|
3680
|
+
readonly name: string;
|
|
3681
|
+
email?: string | undefined;
|
|
3682
|
+
} | undefined;
|
|
3683
|
+
readonly modified_at?: string | undefined;
|
|
3684
|
+
readonly modified_by?: {
|
|
3685
|
+
readonly id: number;
|
|
3686
|
+
readonly name: string;
|
|
3687
|
+
email?: string | undefined;
|
|
3688
|
+
} | undefined;
|
|
3689
|
+
page_index?: number | undefined;
|
|
3690
|
+
} | null | undefined;
|
|
3691
|
+
font_family?: string | undefined;
|
|
3692
|
+
font_size?: number | undefined;
|
|
3693
|
+
link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
3694
|
+
page_index?: number | undefined;
|
|
3695
|
+
preview_type?: import('../types/canvas').LinkPreviewTypes | undefined;
|
|
3696
|
+
target?: "_self" | "_blank" | undefined;
|
|
3697
|
+
url?: string | undefined;
|
|
3698
|
+
} | {
|
|
3699
|
+
aspect_ratio?: ("contain" | "unlocked" | "16:9" | "16:10" | "4:3" | "1:1") | undefined;
|
|
3700
|
+
background_video_url?: string | undefined;
|
|
3701
|
+
} | {
|
|
3702
|
+
events: {
|
|
3703
|
+
top_hint?: string | undefined;
|
|
3704
|
+
top_hint_style?: Record<string, any> | undefined;
|
|
3705
|
+
title?: string | undefined;
|
|
3706
|
+
title_style?: Record<string, any> | undefined;
|
|
3707
|
+
description?: string | undefined;
|
|
3708
|
+
description_style?: Record<string, any> | undefined;
|
|
3709
|
+
image_url?: string | undefined;
|
|
3710
|
+
image_style?: Record<string, any> | undefined;
|
|
3711
|
+
icon?: string | undefined;
|
|
3712
|
+
icon_style?: Record<string, any> | undefined;
|
|
3713
|
+
card_style?: Record<string, any> | undefined;
|
|
3714
|
+
}[];
|
|
3715
|
+
layout: "vertical" | "horizontal";
|
|
3716
|
+
} | undefined;
|
|
3717
|
+
children?: /*elided*/ any[] | undefined;
|
|
3718
|
+
when_used_in_section?: {
|
|
3719
|
+
is_editable: boolean;
|
|
3720
|
+
is_removable: boolean;
|
|
3721
|
+
} | undefined;
|
|
3722
|
+
style?: Record<string, any> | undefined;
|
|
3723
|
+
tags?: string[] | undefined;
|
|
3724
|
+
theme_meta?: {
|
|
3725
|
+
bg_color_palette_index?: number | undefined;
|
|
3726
|
+
} | {
|
|
3727
|
+
dt_header_bg_palette_index?: number | undefined;
|
|
3728
|
+
dt_group_header_bg_palette_index?: number | undefined;
|
|
3729
|
+
bg_color_palette_index?: number | undefined;
|
|
3730
|
+
} | {
|
|
3731
|
+
is_theme_logo?: boolean | undefined;
|
|
3732
|
+
theme_asset_index?: number | undefined;
|
|
3733
|
+
bg_color_palette_index?: number | undefined;
|
|
3734
|
+
} | undefined;
|
|
3735
|
+
height?: string | undefined;
|
|
3736
|
+
} | null>;
|
|
3378
3737
|
share: Ref<((canvasId: CanvasRetrieve["id"]) => Promise<import('../../../../types/openapi').SharedLink>) | undefined, ((canvasId: CanvasRetrieve["id"]) => Promise<import('../../../../types/openapi').SharedLink>) | undefined>;
|
|
3379
3738
|
singletonsInCanvasMap: import('vue').ComputedRef<Record<ComponentTypes, boolean>>;
|
|
3380
3739
|
startPage: Ref<number | undefined, number | undefined>;
|
|
@@ -3427,12 +3786,21 @@ export default function useCanvas(): {
|
|
|
3427
3786
|
groups?: string[] | undefined;
|
|
3428
3787
|
}[] | undefined;
|
|
3429
3788
|
canvas?: {
|
|
3789
|
+
enable_read_only_canvas_creation_account?: boolean | undefined;
|
|
3790
|
+
scribble_file_renderer?: "image" | "pdfjs" | "pspdfkit" | undefined;
|
|
3791
|
+
enable_wizard_preview_button?: boolean | undefined;
|
|
3430
3792
|
locks_polling_interval?: number | undefined;
|
|
3431
3793
|
shared_link?: {
|
|
3432
3794
|
title?: string | undefined;
|
|
3433
3795
|
email_disclaimer?: string | undefined;
|
|
3434
3796
|
logo_url?: string | undefined;
|
|
3435
3797
|
logo_style?: Record<string, any> | undefined;
|
|
3798
|
+
valid_until_options?: {
|
|
3799
|
+
label: string;
|
|
3800
|
+
value: number;
|
|
3801
|
+
}[] | undefined;
|
|
3802
|
+
disable_rep_changing_allow_download?: boolean | undefined;
|
|
3803
|
+
initial_allow_download?: boolean | undefined;
|
|
3436
3804
|
} | undefined;
|
|
3437
3805
|
hide_page_break_in_toc?: boolean | undefined;
|
|
3438
3806
|
disable_display_index_in_toc?: boolean | undefined;
|
|
@@ -3547,20 +3915,29 @@ export default function useCanvas(): {
|
|
|
3547
3915
|
enable_collection_player_component?: boolean | undefined;
|
|
3548
3916
|
autoselect_selected_canvas_account?: boolean | undefined;
|
|
3549
3917
|
require_account_on_canvas_creation?: boolean | undefined;
|
|
3918
|
+
enable_canvases_account_filtering?: boolean | undefined;
|
|
3550
3919
|
pptx_slide_image_width?: number | undefined;
|
|
3551
|
-
enable_download_in_presentation_mode?: boolean | undefined;
|
|
3552
3920
|
correlation_id_cleanup_delay?: number | undefined;
|
|
3553
3921
|
async_download_expiration_hours?: number | undefined;
|
|
3554
3922
|
async_download_api_url?: string | undefined;
|
|
3555
3923
|
async_download_callback_url?: string | undefined;
|
|
3924
|
+
section_list_mode?: "pagination" | "collapsibles" | undefined;
|
|
3925
|
+
disable_rep_canvas_creation?: boolean | undefined;
|
|
3926
|
+
disable_shared_link_creation?: boolean | undefined;
|
|
3927
|
+
hide_meeting_bar?: boolean | undefined;
|
|
3556
3928
|
} | undefined;
|
|
3929
|
+
allow_revoke_shared_link?: boolean | undefined;
|
|
3930
|
+
enable_slotty_ui_asset_manager?: boolean | undefined;
|
|
3931
|
+
enable_admin_asset_manager?: boolean | undefined;
|
|
3557
3932
|
api_client_timeout?: number | undefined;
|
|
3558
3933
|
enable_monaco_html_editor?: boolean | undefined;
|
|
3559
3934
|
skip_metadata_keys_in_list_item?: string[] | undefined;
|
|
3560
3935
|
enable_multi_language?: boolean | undefined;
|
|
3561
3936
|
enable_multipeer_connectivity?: boolean | undefined;
|
|
3937
|
+
enable_syncbox?: boolean | undefined;
|
|
3562
3938
|
canvases_route_order?: number | undefined;
|
|
3563
3939
|
content_browser_route_order?: number | undefined;
|
|
3940
|
+
assets_route_order?: number | undefined;
|
|
3564
3941
|
impact_show_only_saved_canvases_in_canvas_manager?: boolean | undefined;
|
|
3565
3942
|
translation_overrides?: {
|
|
3566
3943
|
en?: Record<string, string> | undefined;
|
|
@@ -3570,10 +3947,17 @@ export default function useCanvas(): {
|
|
|
3570
3947
|
el?: Record<string, string> | undefined;
|
|
3571
3948
|
fr?: Record<string, string> | undefined;
|
|
3572
3949
|
es?: Record<string, string> | undefined;
|
|
3950
|
+
th?: Record<string, string> | undefined;
|
|
3951
|
+
ja?: Record<string, string> | undefined;
|
|
3952
|
+
zh?: Record<string, string> | undefined;
|
|
3953
|
+
it?: Record<string, string> | undefined;
|
|
3954
|
+
pt?: Record<string, string> | undefined;
|
|
3955
|
+
nl?: Record<string, string> | undefined;
|
|
3573
3956
|
} | undefined;
|
|
3574
3957
|
file_annotations_mode?: "admin" | "personal" | undefined;
|
|
3575
3958
|
minimum_event_duration_in_call?: number | undefined;
|
|
3576
3959
|
enable_content_rating_in_call?: boolean | undefined;
|
|
3960
|
+
enable_speaker_notes?: boolean | undefined;
|
|
3577
3961
|
display_metadata_filters_in_modal?: boolean | undefined;
|
|
3578
3962
|
enable_js_api_recommended_files?: boolean | undefined;
|
|
3579
3963
|
metadata_highlight_properties?: {
|
|
@@ -3644,6 +4028,14 @@ export default function useCanvas(): {
|
|
|
3644
4028
|
location_prompt_message?: string | undefined;
|
|
3645
4029
|
use_collection_player_with_annotations?: boolean | undefined;
|
|
3646
4030
|
disable_core_canvas_metadata?: boolean | undefined;
|
|
4031
|
+
enable_folder_description_via_name?: boolean | undefined;
|
|
4032
|
+
enable_download_original_file_in_impact?: boolean | undefined;
|
|
4033
|
+
alternative_canvas_fullscreen?: boolean | undefined;
|
|
4034
|
+
enable_presentation_annotations?: boolean | undefined;
|
|
4035
|
+
max_files_limit?: number | undefined;
|
|
4036
|
+
is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
4037
|
+
disable_postcall?: boolean | undefined;
|
|
4038
|
+
launch_in_present_mode_on_creation?: boolean | undefined;
|
|
3647
4039
|
enable_recents?: boolean | undefined;
|
|
3648
4040
|
enable_favorites?: boolean | undefined;
|
|
3649
4041
|
}, (OrganizationSettings & {
|
|
@@ -3668,16 +4060,21 @@ export default function useCanvas(): {
|
|
|
3668
4060
|
enable_collection_player_component?: boolean;
|
|
3669
4061
|
autoselect_selected_canvas_account?: boolean;
|
|
3670
4062
|
require_account_on_canvas_creation?: boolean;
|
|
4063
|
+
enable_canvases_account_filtering?: boolean;
|
|
3671
4064
|
pptx_slide_image_width?: number;
|
|
3672
|
-
enable_download_in_presentation_mode?: boolean;
|
|
3673
4065
|
correlation_id_cleanup_delay?: number;
|
|
3674
4066
|
async_download_expiration_hours?: number;
|
|
3675
4067
|
async_download_api_url?: string;
|
|
3676
4068
|
async_download_callback_url?: string;
|
|
4069
|
+
section_list_mode?: "pagination" | "collapsibles";
|
|
4070
|
+
disable_rep_canvas_creation?: boolean;
|
|
4071
|
+
disable_shared_link_creation?: boolean;
|
|
4072
|
+
hide_meeting_bar?: boolean;
|
|
3677
4073
|
};
|
|
3678
4074
|
enable_recents?: boolean;
|
|
3679
4075
|
enable_favorites?: boolean;
|
|
3680
4076
|
enable_multipeer_connectivity?: boolean;
|
|
4077
|
+
enable_syncbox?: boolean;
|
|
3681
4078
|
ios?: InstanceSettings;
|
|
3682
4079
|
}) | {
|
|
3683
4080
|
auto_assignment_rules?: {
|
|
@@ -3686,12 +4083,21 @@ export default function useCanvas(): {
|
|
|
3686
4083
|
groups?: string[] | undefined;
|
|
3687
4084
|
}[] | undefined;
|
|
3688
4085
|
canvas?: {
|
|
4086
|
+
enable_read_only_canvas_creation_account?: boolean | undefined;
|
|
4087
|
+
scribble_file_renderer?: "image" | "pdfjs" | "pspdfkit" | undefined;
|
|
4088
|
+
enable_wizard_preview_button?: boolean | undefined;
|
|
3689
4089
|
locks_polling_interval?: number | undefined;
|
|
3690
4090
|
shared_link?: {
|
|
3691
4091
|
title?: string | undefined;
|
|
3692
4092
|
email_disclaimer?: string | undefined;
|
|
3693
4093
|
logo_url?: string | undefined;
|
|
3694
4094
|
logo_style?: Record<string, any> | undefined;
|
|
4095
|
+
valid_until_options?: {
|
|
4096
|
+
label: string;
|
|
4097
|
+
value: number;
|
|
4098
|
+
}[] | undefined;
|
|
4099
|
+
disable_rep_changing_allow_download?: boolean | undefined;
|
|
4100
|
+
initial_allow_download?: boolean | undefined;
|
|
3695
4101
|
} | undefined;
|
|
3696
4102
|
hide_page_break_in_toc?: boolean | undefined;
|
|
3697
4103
|
disable_display_index_in_toc?: boolean | undefined;
|
|
@@ -3806,20 +4212,29 @@ export default function useCanvas(): {
|
|
|
3806
4212
|
enable_collection_player_component?: boolean | undefined;
|
|
3807
4213
|
autoselect_selected_canvas_account?: boolean | undefined;
|
|
3808
4214
|
require_account_on_canvas_creation?: boolean | undefined;
|
|
4215
|
+
enable_canvases_account_filtering?: boolean | undefined;
|
|
3809
4216
|
pptx_slide_image_width?: number | undefined;
|
|
3810
|
-
enable_download_in_presentation_mode?: boolean | undefined;
|
|
3811
4217
|
correlation_id_cleanup_delay?: number | undefined;
|
|
3812
4218
|
async_download_expiration_hours?: number | undefined;
|
|
3813
4219
|
async_download_api_url?: string | undefined;
|
|
3814
4220
|
async_download_callback_url?: string | undefined;
|
|
4221
|
+
section_list_mode?: "pagination" | "collapsibles" | undefined;
|
|
4222
|
+
disable_rep_canvas_creation?: boolean | undefined;
|
|
4223
|
+
disable_shared_link_creation?: boolean | undefined;
|
|
4224
|
+
hide_meeting_bar?: boolean | undefined;
|
|
3815
4225
|
} | undefined;
|
|
4226
|
+
allow_revoke_shared_link?: boolean | undefined;
|
|
4227
|
+
enable_slotty_ui_asset_manager?: boolean | undefined;
|
|
4228
|
+
enable_admin_asset_manager?: boolean | undefined;
|
|
3816
4229
|
api_client_timeout?: number | undefined;
|
|
3817
4230
|
enable_monaco_html_editor?: boolean | undefined;
|
|
3818
4231
|
skip_metadata_keys_in_list_item?: string[] | undefined;
|
|
3819
4232
|
enable_multi_language?: boolean | undefined;
|
|
3820
4233
|
enable_multipeer_connectivity?: boolean | undefined;
|
|
4234
|
+
enable_syncbox?: boolean | undefined;
|
|
3821
4235
|
canvases_route_order?: number | undefined;
|
|
3822
4236
|
content_browser_route_order?: number | undefined;
|
|
4237
|
+
assets_route_order?: number | undefined;
|
|
3823
4238
|
impact_show_only_saved_canvases_in_canvas_manager?: boolean | undefined;
|
|
3824
4239
|
translation_overrides?: {
|
|
3825
4240
|
en?: Record<string, string> | undefined;
|
|
@@ -3829,10 +4244,17 @@ export default function useCanvas(): {
|
|
|
3829
4244
|
el?: Record<string, string> | undefined;
|
|
3830
4245
|
fr?: Record<string, string> | undefined;
|
|
3831
4246
|
es?: Record<string, string> | undefined;
|
|
4247
|
+
th?: Record<string, string> | undefined;
|
|
4248
|
+
ja?: Record<string, string> | undefined;
|
|
4249
|
+
zh?: Record<string, string> | undefined;
|
|
4250
|
+
it?: Record<string, string> | undefined;
|
|
4251
|
+
pt?: Record<string, string> | undefined;
|
|
4252
|
+
nl?: Record<string, string> | undefined;
|
|
3832
4253
|
} | undefined;
|
|
3833
4254
|
file_annotations_mode?: "admin" | "personal" | undefined;
|
|
3834
4255
|
minimum_event_duration_in_call?: number | undefined;
|
|
3835
4256
|
enable_content_rating_in_call?: boolean | undefined;
|
|
4257
|
+
enable_speaker_notes?: boolean | undefined;
|
|
3836
4258
|
display_metadata_filters_in_modal?: boolean | undefined;
|
|
3837
4259
|
enable_js_api_recommended_files?: boolean | undefined;
|
|
3838
4260
|
metadata_highlight_properties?: {
|
|
@@ -3903,6 +4325,14 @@ export default function useCanvas(): {
|
|
|
3903
4325
|
location_prompt_message?: string | undefined;
|
|
3904
4326
|
use_collection_player_with_annotations?: boolean | undefined;
|
|
3905
4327
|
disable_core_canvas_metadata?: boolean | undefined;
|
|
4328
|
+
enable_folder_description_via_name?: boolean | undefined;
|
|
4329
|
+
enable_download_original_file_in_impact?: boolean | undefined;
|
|
4330
|
+
alternative_canvas_fullscreen?: boolean | undefined;
|
|
4331
|
+
enable_presentation_annotations?: boolean | undefined;
|
|
4332
|
+
max_files_limit?: number | undefined;
|
|
4333
|
+
is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
4334
|
+
disable_postcall?: boolean | undefined;
|
|
4335
|
+
launch_in_present_mode_on_creation?: boolean | undefined;
|
|
3906
4336
|
enable_recents?: boolean | undefined;
|
|
3907
4337
|
enable_favorites?: boolean | undefined;
|
|
3908
4338
|
}>;
|
|
@@ -3913,6 +4343,9 @@ export default function useCanvas(): {
|
|
|
3913
4343
|
readonly groups?: readonly string[] | undefined;
|
|
3914
4344
|
}[] | undefined;
|
|
3915
4345
|
readonly canvas?: {
|
|
4346
|
+
readonly enable_read_only_canvas_creation_account?: boolean | undefined;
|
|
4347
|
+
readonly scribble_file_renderer?: "image" | "pdfjs" | "pspdfkit" | undefined;
|
|
4348
|
+
readonly enable_wizard_preview_button?: boolean | undefined;
|
|
3916
4349
|
readonly locks_polling_interval?: number | undefined;
|
|
3917
4350
|
readonly shared_link?: {
|
|
3918
4351
|
readonly title?: string | undefined;
|
|
@@ -3921,6 +4354,12 @@ export default function useCanvas(): {
|
|
|
3921
4354
|
readonly logo_style?: {
|
|
3922
4355
|
readonly [x: string]: any;
|
|
3923
4356
|
} | undefined;
|
|
4357
|
+
readonly valid_until_options?: readonly {
|
|
4358
|
+
readonly label: string;
|
|
4359
|
+
readonly value: number;
|
|
4360
|
+
}[] | undefined;
|
|
4361
|
+
readonly disable_rep_changing_allow_download?: boolean | undefined;
|
|
4362
|
+
readonly initial_allow_download?: boolean | undefined;
|
|
3924
4363
|
} | undefined;
|
|
3925
4364
|
readonly hide_page_break_in_toc?: boolean | undefined;
|
|
3926
4365
|
readonly disable_display_index_in_toc?: boolean | undefined;
|
|
@@ -4039,20 +4478,29 @@ export default function useCanvas(): {
|
|
|
4039
4478
|
readonly enable_collection_player_component?: boolean | undefined;
|
|
4040
4479
|
readonly autoselect_selected_canvas_account?: boolean | undefined;
|
|
4041
4480
|
readonly require_account_on_canvas_creation?: boolean | undefined;
|
|
4481
|
+
readonly enable_canvases_account_filtering?: boolean | undefined;
|
|
4042
4482
|
readonly pptx_slide_image_width?: number | undefined;
|
|
4043
|
-
readonly enable_download_in_presentation_mode?: boolean | undefined;
|
|
4044
4483
|
readonly correlation_id_cleanup_delay?: number | undefined;
|
|
4045
4484
|
readonly async_download_expiration_hours?: number | undefined;
|
|
4046
4485
|
readonly async_download_api_url?: string | undefined;
|
|
4047
4486
|
readonly async_download_callback_url?: string | undefined;
|
|
4487
|
+
readonly section_list_mode?: "pagination" | "collapsibles" | undefined;
|
|
4488
|
+
readonly disable_rep_canvas_creation?: boolean | undefined;
|
|
4489
|
+
readonly disable_shared_link_creation?: boolean | undefined;
|
|
4490
|
+
readonly hide_meeting_bar?: boolean | undefined;
|
|
4048
4491
|
} | undefined;
|
|
4492
|
+
readonly allow_revoke_shared_link?: boolean | undefined;
|
|
4493
|
+
readonly enable_slotty_ui_asset_manager?: boolean | undefined;
|
|
4494
|
+
readonly enable_admin_asset_manager?: boolean | undefined;
|
|
4049
4495
|
readonly api_client_timeout?: number | undefined;
|
|
4050
4496
|
readonly enable_monaco_html_editor?: boolean | undefined;
|
|
4051
4497
|
readonly skip_metadata_keys_in_list_item?: readonly string[] | undefined;
|
|
4052
4498
|
readonly enable_multi_language?: boolean | undefined;
|
|
4053
4499
|
readonly enable_multipeer_connectivity?: boolean | undefined;
|
|
4500
|
+
readonly enable_syncbox?: boolean | undefined;
|
|
4054
4501
|
readonly canvases_route_order?: number | undefined;
|
|
4055
4502
|
readonly content_browser_route_order?: number | undefined;
|
|
4503
|
+
readonly assets_route_order?: number | undefined;
|
|
4056
4504
|
readonly impact_show_only_saved_canvases_in_canvas_manager?: boolean | undefined;
|
|
4057
4505
|
readonly translation_overrides?: {
|
|
4058
4506
|
readonly en?: {
|
|
@@ -4076,10 +4524,29 @@ export default function useCanvas(): {
|
|
|
4076
4524
|
readonly es?: {
|
|
4077
4525
|
readonly [x: string]: string;
|
|
4078
4526
|
} | undefined;
|
|
4527
|
+
readonly th?: {
|
|
4528
|
+
readonly [x: string]: string;
|
|
4529
|
+
} | undefined;
|
|
4530
|
+
readonly ja?: {
|
|
4531
|
+
readonly [x: string]: string;
|
|
4532
|
+
} | undefined;
|
|
4533
|
+
readonly zh?: {
|
|
4534
|
+
readonly [x: string]: string;
|
|
4535
|
+
} | undefined;
|
|
4536
|
+
readonly it?: {
|
|
4537
|
+
readonly [x: string]: string;
|
|
4538
|
+
} | undefined;
|
|
4539
|
+
readonly pt?: {
|
|
4540
|
+
readonly [x: string]: string;
|
|
4541
|
+
} | undefined;
|
|
4542
|
+
readonly nl?: {
|
|
4543
|
+
readonly [x: string]: string;
|
|
4544
|
+
} | undefined;
|
|
4079
4545
|
} | undefined;
|
|
4080
4546
|
readonly file_annotations_mode?: "admin" | "personal" | undefined;
|
|
4081
4547
|
readonly minimum_event_duration_in_call?: number | undefined;
|
|
4082
4548
|
readonly enable_content_rating_in_call?: boolean | undefined;
|
|
4549
|
+
readonly enable_speaker_notes?: boolean | undefined;
|
|
4083
4550
|
readonly display_metadata_filters_in_modal?: boolean | undefined;
|
|
4084
4551
|
readonly enable_js_api_recommended_files?: boolean | undefined;
|
|
4085
4552
|
readonly metadata_highlight_properties?: readonly {
|
|
@@ -4150,6 +4617,14 @@ export default function useCanvas(): {
|
|
|
4150
4617
|
readonly location_prompt_message?: string | undefined;
|
|
4151
4618
|
readonly use_collection_player_with_annotations?: boolean | undefined;
|
|
4152
4619
|
readonly disable_core_canvas_metadata?: boolean | undefined;
|
|
4620
|
+
readonly enable_folder_description_via_name?: boolean | undefined;
|
|
4621
|
+
readonly enable_download_original_file_in_impact?: boolean | undefined;
|
|
4622
|
+
readonly alternative_canvas_fullscreen?: boolean | undefined;
|
|
4623
|
+
readonly enable_presentation_annotations?: boolean | undefined;
|
|
4624
|
+
readonly max_files_limit?: number | undefined;
|
|
4625
|
+
readonly is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
4626
|
+
readonly disable_postcall?: boolean | undefined;
|
|
4627
|
+
readonly launch_in_present_mode_on_creation?: boolean | undefined;
|
|
4153
4628
|
readonly enable_recents?: boolean | undefined;
|
|
4154
4629
|
readonly enable_favorites?: boolean | undefined;
|
|
4155
4630
|
}, {
|
|
@@ -4159,6 +4634,9 @@ export default function useCanvas(): {
|
|
|
4159
4634
|
readonly groups?: readonly string[] | undefined;
|
|
4160
4635
|
}[] | undefined;
|
|
4161
4636
|
readonly canvas?: {
|
|
4637
|
+
readonly enable_read_only_canvas_creation_account?: boolean | undefined;
|
|
4638
|
+
readonly scribble_file_renderer?: "image" | "pdfjs" | "pspdfkit" | undefined;
|
|
4639
|
+
readonly enable_wizard_preview_button?: boolean | undefined;
|
|
4162
4640
|
readonly locks_polling_interval?: number | undefined;
|
|
4163
4641
|
readonly shared_link?: {
|
|
4164
4642
|
readonly title?: string | undefined;
|
|
@@ -4167,6 +4645,12 @@ export default function useCanvas(): {
|
|
|
4167
4645
|
readonly logo_style?: {
|
|
4168
4646
|
readonly [x: string]: any;
|
|
4169
4647
|
} | undefined;
|
|
4648
|
+
readonly valid_until_options?: readonly {
|
|
4649
|
+
readonly label: string;
|
|
4650
|
+
readonly value: number;
|
|
4651
|
+
}[] | undefined;
|
|
4652
|
+
readonly disable_rep_changing_allow_download?: boolean | undefined;
|
|
4653
|
+
readonly initial_allow_download?: boolean | undefined;
|
|
4170
4654
|
} | undefined;
|
|
4171
4655
|
readonly hide_page_break_in_toc?: boolean | undefined;
|
|
4172
4656
|
readonly disable_display_index_in_toc?: boolean | undefined;
|
|
@@ -4285,20 +4769,29 @@ export default function useCanvas(): {
|
|
|
4285
4769
|
readonly enable_collection_player_component?: boolean | undefined;
|
|
4286
4770
|
readonly autoselect_selected_canvas_account?: boolean | undefined;
|
|
4287
4771
|
readonly require_account_on_canvas_creation?: boolean | undefined;
|
|
4772
|
+
readonly enable_canvases_account_filtering?: boolean | undefined;
|
|
4288
4773
|
readonly pptx_slide_image_width?: number | undefined;
|
|
4289
|
-
readonly enable_download_in_presentation_mode?: boolean | undefined;
|
|
4290
4774
|
readonly correlation_id_cleanup_delay?: number | undefined;
|
|
4291
4775
|
readonly async_download_expiration_hours?: number | undefined;
|
|
4292
4776
|
readonly async_download_api_url?: string | undefined;
|
|
4293
4777
|
readonly async_download_callback_url?: string | undefined;
|
|
4778
|
+
readonly section_list_mode?: "pagination" | "collapsibles" | undefined;
|
|
4779
|
+
readonly disable_rep_canvas_creation?: boolean | undefined;
|
|
4780
|
+
readonly disable_shared_link_creation?: boolean | undefined;
|
|
4781
|
+
readonly hide_meeting_bar?: boolean | undefined;
|
|
4294
4782
|
} | undefined;
|
|
4783
|
+
readonly allow_revoke_shared_link?: boolean | undefined;
|
|
4784
|
+
readonly enable_slotty_ui_asset_manager?: boolean | undefined;
|
|
4785
|
+
readonly enable_admin_asset_manager?: boolean | undefined;
|
|
4295
4786
|
readonly api_client_timeout?: number | undefined;
|
|
4296
4787
|
readonly enable_monaco_html_editor?: boolean | undefined;
|
|
4297
4788
|
readonly skip_metadata_keys_in_list_item?: readonly string[] | undefined;
|
|
4298
4789
|
readonly enable_multi_language?: boolean | undefined;
|
|
4299
4790
|
readonly enable_multipeer_connectivity?: boolean | undefined;
|
|
4791
|
+
readonly enable_syncbox?: boolean | undefined;
|
|
4300
4792
|
readonly canvases_route_order?: number | undefined;
|
|
4301
4793
|
readonly content_browser_route_order?: number | undefined;
|
|
4794
|
+
readonly assets_route_order?: number | undefined;
|
|
4302
4795
|
readonly impact_show_only_saved_canvases_in_canvas_manager?: boolean | undefined;
|
|
4303
4796
|
readonly translation_overrides?: {
|
|
4304
4797
|
readonly en?: {
|
|
@@ -4322,10 +4815,29 @@ export default function useCanvas(): {
|
|
|
4322
4815
|
readonly es?: {
|
|
4323
4816
|
readonly [x: string]: string;
|
|
4324
4817
|
} | undefined;
|
|
4818
|
+
readonly th?: {
|
|
4819
|
+
readonly [x: string]: string;
|
|
4820
|
+
} | undefined;
|
|
4821
|
+
readonly ja?: {
|
|
4822
|
+
readonly [x: string]: string;
|
|
4823
|
+
} | undefined;
|
|
4824
|
+
readonly zh?: {
|
|
4825
|
+
readonly [x: string]: string;
|
|
4826
|
+
} | undefined;
|
|
4827
|
+
readonly it?: {
|
|
4828
|
+
readonly [x: string]: string;
|
|
4829
|
+
} | undefined;
|
|
4830
|
+
readonly pt?: {
|
|
4831
|
+
readonly [x: string]: string;
|
|
4832
|
+
} | undefined;
|
|
4833
|
+
readonly nl?: {
|
|
4834
|
+
readonly [x: string]: string;
|
|
4835
|
+
} | undefined;
|
|
4325
4836
|
} | undefined;
|
|
4326
4837
|
readonly file_annotations_mode?: "admin" | "personal" | undefined;
|
|
4327
4838
|
readonly minimum_event_duration_in_call?: number | undefined;
|
|
4328
4839
|
readonly enable_content_rating_in_call?: boolean | undefined;
|
|
4840
|
+
readonly enable_speaker_notes?: boolean | undefined;
|
|
4329
4841
|
readonly display_metadata_filters_in_modal?: boolean | undefined;
|
|
4330
4842
|
readonly enable_js_api_recommended_files?: boolean | undefined;
|
|
4331
4843
|
readonly metadata_highlight_properties?: readonly {
|
|
@@ -4396,6 +4908,14 @@ export default function useCanvas(): {
|
|
|
4396
4908
|
readonly location_prompt_message?: string | undefined;
|
|
4397
4909
|
readonly use_collection_player_with_annotations?: boolean | undefined;
|
|
4398
4910
|
readonly disable_core_canvas_metadata?: boolean | undefined;
|
|
4911
|
+
readonly enable_folder_description_via_name?: boolean | undefined;
|
|
4912
|
+
readonly enable_download_original_file_in_impact?: boolean | undefined;
|
|
4913
|
+
readonly alternative_canvas_fullscreen?: boolean | undefined;
|
|
4914
|
+
readonly enable_presentation_annotations?: boolean | undefined;
|
|
4915
|
+
readonly max_files_limit?: number | undefined;
|
|
4916
|
+
readonly is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
4917
|
+
readonly disable_postcall?: boolean | undefined;
|
|
4918
|
+
readonly launch_in_present_mode_on_creation?: boolean | undefined;
|
|
4399
4919
|
readonly enable_recents?: boolean | undefined;
|
|
4400
4920
|
readonly enable_favorites?: boolean | undefined;
|
|
4401
4921
|
}>>;
|
|
@@ -4451,5 +4971,87 @@ export default function useCanvas(): {
|
|
|
4451
4971
|
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;
|
|
4452
4972
|
updateNodeInSection: (sectionId: string, nodeId: string, newData: ComponentNode["data"]) => boolean;
|
|
4453
4973
|
getMaxWidth: typeof getMaxWidth;
|
|
4974
|
+
getParentType: (nodeId: Ref<ComponentNode["id"] | null | undefined>) => import('vue').ComputedRef<ComponentTypes | undefined>;
|
|
4975
|
+
onWizardEnter: Ref<(() => void) | undefined, (() => void) | undefined>;
|
|
4976
|
+
onWizardExit: Ref<(() => void) | undefined, (() => void) | undefined>;
|
|
4977
|
+
contentAnnotation: Ref<{
|
|
4978
|
+
isVisibleMenu: boolean;
|
|
4979
|
+
markerTools: {
|
|
4980
|
+
[key: string]: {
|
|
4981
|
+
marker: typeof import('@markerjs/markerjs3').MarkerBase | "selection" | "eraseSelected" | "eraseAll" | null;
|
|
4982
|
+
icon: string;
|
|
4983
|
+
translationKey: string;
|
|
4984
|
+
action?: () => void;
|
|
4985
|
+
dividerBefore?: boolean;
|
|
4986
|
+
};
|
|
4987
|
+
};
|
|
4988
|
+
activeToolIcon: string;
|
|
4989
|
+
activeTool: string | typeof import('@markerjs/markerjs3').MarkerBase | null;
|
|
4990
|
+
isReady: boolean;
|
|
4991
|
+
handleAnnotationSelect: (action: string) => void;
|
|
4992
|
+
setActiveMarker: (marker: null | import('@markerjs/markerjs3').MarkerArea) => void;
|
|
4993
|
+
activeMarker: import('@markerjs/markerjs3').MarkerArea | null;
|
|
4994
|
+
showMenu: (value: boolean) => boolean;
|
|
4995
|
+
toggleMenu: () => boolean;
|
|
4996
|
+
storage: Map<string, any> & Omit<Map<string, any>, keyof Map<any, any>>;
|
|
4997
|
+
resetAnnotations: (notify?: boolean) => void;
|
|
4998
|
+
triggerToolUpdate: () => void;
|
|
4999
|
+
clearStorage: () => void;
|
|
5000
|
+
applyShadowRootStyles: (shadowRoot: ShadowRoot) => void;
|
|
5001
|
+
createNewImage: (width: number, height: number) => string;
|
|
5002
|
+
isDrawingActive: boolean;
|
|
5003
|
+
} | null, {
|
|
5004
|
+
isVisibleMenu: Ref<boolean, boolean>;
|
|
5005
|
+
markerTools: import('vue').ComputedRef<{
|
|
5006
|
+
[key: string]: {
|
|
5007
|
+
marker: typeof import('@markerjs/markerjs3').MarkerBase | "selection" | "eraseSelected" | "eraseAll" | null;
|
|
5008
|
+
icon: string;
|
|
5009
|
+
translationKey: string;
|
|
5010
|
+
action?: () => void;
|
|
5011
|
+
dividerBefore?: boolean;
|
|
5012
|
+
};
|
|
5013
|
+
}>;
|
|
5014
|
+
activeToolIcon: import('vue').ComputedRef<string>;
|
|
5015
|
+
activeTool: Ref<string | typeof import('@markerjs/markerjs3').MarkerBase | null, string | typeof import('@markerjs/markerjs3').MarkerBase | null>;
|
|
5016
|
+
isReady: Ref<boolean, boolean>;
|
|
5017
|
+
handleAnnotationSelect: (action: string) => void;
|
|
5018
|
+
setActiveMarker: (marker: null | import('@markerjs/markerjs3').MarkerArea) => void;
|
|
5019
|
+
activeMarker: Ref<import('@markerjs/markerjs3').MarkerArea | null, import('@markerjs/markerjs3').MarkerArea | null>;
|
|
5020
|
+
showMenu: (value: boolean) => boolean;
|
|
5021
|
+
toggleMenu: () => boolean;
|
|
5022
|
+
storage: Map<string, any>;
|
|
5023
|
+
resetAnnotations: (notify?: boolean) => void;
|
|
5024
|
+
triggerToolUpdate: () => void;
|
|
5025
|
+
clearStorage: () => void;
|
|
5026
|
+
applyShadowRootStyles: (shadowRoot: ShadowRoot) => void;
|
|
5027
|
+
createNewImage: (width: number, height: number) => string;
|
|
5028
|
+
isDrawingActive: import('vue').ComputedRef<boolean>;
|
|
5029
|
+
} | {
|
|
5030
|
+
isVisibleMenu: boolean;
|
|
5031
|
+
markerTools: {
|
|
5032
|
+
[key: string]: {
|
|
5033
|
+
marker: typeof import('@markerjs/markerjs3').MarkerBase | "selection" | "eraseSelected" | "eraseAll" | null;
|
|
5034
|
+
icon: string;
|
|
5035
|
+
translationKey: string;
|
|
5036
|
+
action?: () => void;
|
|
5037
|
+
dividerBefore?: boolean;
|
|
5038
|
+
};
|
|
5039
|
+
};
|
|
5040
|
+
activeToolIcon: string;
|
|
5041
|
+
activeTool: string | typeof import('@markerjs/markerjs3').MarkerBase | null;
|
|
5042
|
+
isReady: boolean;
|
|
5043
|
+
handleAnnotationSelect: (action: string) => void;
|
|
5044
|
+
setActiveMarker: (marker: null | import('@markerjs/markerjs3').MarkerArea) => void;
|
|
5045
|
+
activeMarker: import('@markerjs/markerjs3').MarkerArea | null;
|
|
5046
|
+
showMenu: (value: boolean) => boolean;
|
|
5047
|
+
toggleMenu: () => boolean;
|
|
5048
|
+
storage: Map<string, any> & Omit<Map<string, any>, keyof Map<any, any>>;
|
|
5049
|
+
resetAnnotations: (notify?: boolean) => void;
|
|
5050
|
+
triggerToolUpdate: () => void;
|
|
5051
|
+
clearStorage: () => void;
|
|
5052
|
+
applyShadowRootStyles: (shadowRoot: ShadowRoot) => void;
|
|
5053
|
+
createNewImage: (width: number, height: number) => string;
|
|
5054
|
+
isDrawingActive: boolean;
|
|
5055
|
+
} | null>;
|
|
4454
5056
|
};
|
|
4455
5057
|
export {};
|