@pitcher/js-api 1.25.0-beta.3 → 1.25.0
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 +4 -0
- 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/canvas-builder/components/container/ControlBar/ReorderContent.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridFileItem.vue.d.ts +2 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.grouped.vue.d.ts +3 -1
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.simple.vue.d.ts +3 -1
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.vue.d.ts +4 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.vue.d.ts +2 -1
- package/lib/apps/canvas-builder/composables/useCanvasThemeAssets.d.ts +8 -0
- package/lib/apps/canvas-builder/composables/useReorderComponent.d.ts +4 -0
- package/lib/apps/canvas-builder/constants/canvas.const.d.ts +1 -0
- package/lib/apps/canvas-builder/util/canvas.util.d.ts +3 -1
- package/lib/apps/ppt-conversion-selector/components/AppHeader.vue.d.ts +2 -0
- package/lib/components/CFileViewer/CFileViewer.types.d.ts +1 -1
- package/lib/components/CFileViewer/CFileViewer.vue.d.ts +8 -0
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.use.d.ts +1 -0
- package/lib/components/CFileViewer/pdf/CFileViewerBottom.pdf.vue.d.ts +2 -0
- package/lib/components/CTable/CTable.vue.d.ts +0 -4
- package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +0 -8
- package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +0 -8
- package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +0 -16
- package/lib/components/savedCanvases/CSavedCanvasesManagementActionsCell.vue.d.ts +1 -0
- package/lib/components/savedCanvases/smartFolders/SmartFolders.vue.d.ts +0 -4
- package/lib/components/sections/CSectionManagement.vue.d.ts +0 -8
- package/lib/components/themes/CThemeManagement.vue.d.ts +0 -8
- package/lib/directives/element-mounted.d.ts +4 -0
- package/lib/main.lib.d.ts +1 -0
- package/lib/sdk/api/HighLevelApi.d.ts +1 -0
- package/lib/sdk/api/modules/env.d.ts +1 -0
- package/lib/sdk/main.d.ts +3 -0
- package/lib/types/call.d.ts +1 -1
- package/lib/types/launchDarkly.types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
2
|
export default _default;
|
|
@@ -2,8 +2,10 @@ import { ContentGridProps } from '../../../types/canvas';
|
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
item: ContentGridProps['items'][number];
|
|
4
4
|
showPreviewThumbnails?: boolean;
|
|
5
|
+
allowDownload?: boolean;
|
|
5
6
|
};
|
|
6
7
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
7
8
|
showPreviewThumbnails: boolean;
|
|
9
|
+
allowDownload: boolean;
|
|
8
10
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
9
11
|
export default _default;
|
package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.grouped.vue.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ColumnSort } from '@tanstack/table-core';
|
|
2
|
-
import { DynamicDataTableProps } from '../../../types/canvas';
|
|
2
|
+
import { ComponentNode, DynamicDataTableProps } from '../../../types/canvas';
|
|
3
3
|
import { CanvasMetadataRetrieve } from '../../../../../types/canvases';
|
|
4
4
|
type __VLS_Props = {
|
|
5
5
|
data: DynamicDataTableProps;
|
|
@@ -9,6 +9,8 @@ type __VLS_Props = {
|
|
|
9
9
|
canvasMetadata?: CanvasMetadataRetrieve['config'];
|
|
10
10
|
componentId: string;
|
|
11
11
|
breakGroupsOnNewPage?: boolean;
|
|
12
|
+
parentType?: ComponentNode['type'];
|
|
13
|
+
style?: Record<string, any>;
|
|
12
14
|
};
|
|
13
15
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
16
|
sortChanged: (s: ColumnSort | null) => any;
|
package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.simple.vue.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ColumnSort } from '@tanstack/table-core';
|
|
2
|
-
import { DynamicDataTableProps } from '../../../types/canvas';
|
|
2
|
+
import { ComponentNode, DynamicDataTableProps } from '../../../types/canvas';
|
|
3
3
|
interface Column {
|
|
4
4
|
id: string;
|
|
5
5
|
header: string;
|
|
@@ -17,6 +17,8 @@ type __VLS_Props = {
|
|
|
17
17
|
hidePagination?: boolean;
|
|
18
18
|
hideTotalResults?: boolean;
|
|
19
19
|
pageSize?: number;
|
|
20
|
+
parentType?: ComponentNode['type'];
|
|
21
|
+
style?: Record<string, any>;
|
|
20
22
|
loading?: boolean;
|
|
21
23
|
};
|
|
22
24
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.vue.d.ts
CHANGED
|
@@ -4,6 +4,8 @@ import { CanvasMetadataRetrieve } from '../../../../../types/canvases';
|
|
|
4
4
|
import { CanvasRetrieve } from '../../../../../../types/openapi';
|
|
5
5
|
type __VLS_Props = {
|
|
6
6
|
data?: DynamicDataTableProps;
|
|
7
|
+
parentType?: ComponentNode['type'];
|
|
8
|
+
selected?: boolean;
|
|
7
9
|
style?: Record<string, any>;
|
|
8
10
|
theme_meta?: ComponentNode['theme_meta'];
|
|
9
11
|
id?: string;
|
|
@@ -11,8 +13,10 @@ type __VLS_Props = {
|
|
|
11
13
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
12
14
|
};
|
|
13
15
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
style: (s: Record<string, any>) => any;
|
|
14
17
|
sortChanged: (s: ColumnSort | null) => any;
|
|
15
18
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
19
|
+
onStyle?: ((s: Record<string, any>) => any) | undefined;
|
|
16
20
|
onSortChanged?: ((s: ColumnSort | null) => any) | undefined;
|
|
17
21
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
18
22
|
export default _default;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { ComponentNode, DynamicDataTableProps } from '../../../types/canvas';
|
|
1
|
+
import { ComponentTypes, ComponentNode, DynamicDataTableProps } from '../../../types/canvas';
|
|
2
2
|
import { CanvasRetrieve } from '../../../../../../types/openapi';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
id: string;
|
|
5
5
|
data: DynamicDataTableProps;
|
|
6
6
|
children?: ComponentNode[];
|
|
7
|
+
parentType?: ComponentTypes;
|
|
7
8
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
8
9
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
9
10
|
visible?: ComponentNode['visible'];
|
|
@@ -2,6 +2,10 @@ import { ComponentNode, MultimediaProps } from '../types/canvas';
|
|
|
2
2
|
import { CanvasRetrieve } from '../../../../types/openapi';
|
|
3
3
|
import { CanvasThemeRetrieve } from '../../../types/canvasTheme';
|
|
4
4
|
declare function resetProcessedNodes(): void;
|
|
5
|
+
declare function addManuallyChangedThemeAsset(componentId: string): void;
|
|
6
|
+
declare function removeManuallyChangedThemeAsset(componentId: string): void;
|
|
7
|
+
declare function isManuallyChangedThemeAsset(componentId: string): boolean;
|
|
8
|
+
declare function clearManuallyChangedThemeAssets(): void;
|
|
5
9
|
declare function processThemeAssetForNode(node: ComponentNode, theme: CanvasThemeRetrieve, updateNodeFn: (nodeId: string, props: MultimediaProps, directNodeUpdate?: {
|
|
6
10
|
node: ComponentNode;
|
|
7
11
|
section: CanvasRetrieve['sections'][number];
|
|
@@ -19,5 +23,9 @@ export default function useCanvasThemeAssets(): {
|
|
|
19
23
|
processThemeAssetsForNodes: typeof processThemeAssetsForNodes;
|
|
20
24
|
processThemeAssetsForSections: typeof processThemeAssetsForSections;
|
|
21
25
|
resetProcessedNodes: typeof resetProcessedNodes;
|
|
26
|
+
addManuallyChangedThemeAsset: typeof addManuallyChangedThemeAsset;
|
|
27
|
+
removeManuallyChangedThemeAsset: typeof removeManuallyChangedThemeAsset;
|
|
28
|
+
isManuallyChangedThemeAsset: typeof isManuallyChangedThemeAsset;
|
|
29
|
+
clearManuallyChangedThemeAssets: typeof clearManuallyChangedThemeAssets;
|
|
22
30
|
};
|
|
23
31
|
export {};
|
|
@@ -14,4 +14,8 @@ export default function useReorderComponent(): {
|
|
|
14
14
|
resetActiveComponentId: () => void;
|
|
15
15
|
toggleContentVisibility: () => void;
|
|
16
16
|
removeComponent: (component: ComponentNode) => void;
|
|
17
|
+
isolatedScribbleChildId: ComputedRef<string | null>;
|
|
18
|
+
shouldShowOnlyIsolatedChild: (scribbleId: string) => boolean;
|
|
19
|
+
getFilteredScribbleChildren: (scribbleId: string, children: ComponentNode[]) => ComponentNode<import('../../collection-player/export').CollectionPlayer | import('../types/canvas').GridProps | import('../types/canvas').GridItemProps | import('../types/canvas').TextProps | import('../types/canvas').CarouselProps | import('../types/canvas').MultimediaProps | import('../types/canvas').EmbeddableProps | import('../types/canvas').ContentGridProps | import('../types/canvas').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>[];
|
|
20
|
+
isComponentIsolated: (componentId: string) => boolean;
|
|
17
21
|
};
|
|
@@ -4,6 +4,7 @@ export declare const defaultWhenUsedInSection: {
|
|
|
4
4
|
is_editable: boolean;
|
|
5
5
|
is_removable: boolean;
|
|
6
6
|
};
|
|
7
|
+
export declare const SERVER_ONLY_PROPS: readonly ["content_url", "thumbnail_url", "content_thumbnails", "pspdfkit_token", "pspdfkit_server_url", "pspdfkit_auth_payload", "external_url"];
|
|
7
8
|
export declare const aspectRatios: readonly ["unlocked", "16:9", "16:10", "4:3", "1:1"];
|
|
8
9
|
export declare const aspectRatioClasses: {
|
|
9
10
|
readonly '16:9': "aspect-ratio-video";
|
|
@@ -47,7 +47,9 @@ type FoundComponent = {
|
|
|
47
47
|
export declare function findEmbeddableInSectionsContent(canvasPages: ComponentNode[][], sectionComponentNodesBySectionId: UnwrapRef<SectionComponentNodesBySectionId>, appName: string): FoundComponent;
|
|
48
48
|
export declare function findAllEmbeddableTypesInCanvasContent(componentNodesById: UnwrapRef<ComponentNodesById>): Set<string>;
|
|
49
49
|
export declare function findEmbeddableInCanvasContent(componentNodesById: UnwrapRef<ComponentNodesById>, appName: string): FoundComponent;
|
|
50
|
-
export declare function scrollToComponentById(id: ComponentNode['id'] | null | undefined, delay?: number): void;
|
|
50
|
+
export declare function scrollToComponentById(id: ComponentNode['id'] | null | undefined, instant?: boolean, delay?: number): void;
|
|
51
51
|
export declare function updateFirstContentGridWithShareboxItems(canvasContent: ComponentNode[], selectedItems: (SelectedFile | SelectedPage)[], filesById: Record<FileRetrieve['id'], FileRetrieve>): ComponentNode<CollectionPlayer | GridProps | GridItemProps | TextProps | CarouselProps | MultimediaProps | EmbeddableProps | ContentGridProps | SectionListProps | HtmlProps | IFrameProps | LinkProps | import('../types/canvas').PageBreakProps | import('../types/canvas').PageProps | import('../types/canvas').TimelineProps>[];
|
|
52
52
|
export declare function handleThemeAssetComparison(key: string | symbol | number, objValue: any, othValue: any, object: any, other: any, fileProps: string[], isEqual: (obj1: any, obj2: any) => boolean, componentsWithThemeMeta?: Set<string>): boolean | undefined;
|
|
53
|
+
export declare function applyCanvasThemeAssetsToNode(node: ComponentNode): ComponentNode;
|
|
54
|
+
export declare function processCanvasForSectionThemeOverride(canvas: CanvasRetrieve, maintainSectionTheme: boolean): CanvasRetrieve;
|
|
53
55
|
export {};
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2
|
+
cancel: () => any;
|
|
2
3
|
close: () => any;
|
|
3
4
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
5
|
+
onCancel?: (() => any) | undefined;
|
|
4
6
|
onClose?: (() => any) | undefined;
|
|
5
7
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLElement>;
|
|
6
8
|
export default _default;
|
|
@@ -60,6 +60,8 @@ declare function __VLS_template(): {
|
|
|
60
60
|
clientType?: (typeof CLIENT_TYPE)[keyof typeof CLIENT_TYPE];
|
|
61
61
|
isOverlay?: boolean;
|
|
62
62
|
isAnnotationVisibilityEnabled: boolean;
|
|
63
|
+
hasHotspotsOnCurrentPage: boolean;
|
|
64
|
+
isHotspotToggleEnabled: boolean;
|
|
63
65
|
}> & Readonly<{
|
|
64
66
|
onClick?: (() => any) | undefined;
|
|
65
67
|
onExitFullscreen?: (() => any) | undefined;
|
|
@@ -114,6 +116,8 @@ declare function __VLS_template(): {
|
|
|
114
116
|
clientType?: (typeof CLIENT_TYPE)[keyof typeof CLIENT_TYPE];
|
|
115
117
|
isOverlay?: boolean;
|
|
116
118
|
isAnnotationVisibilityEnabled: boolean;
|
|
119
|
+
hasHotspotsOnCurrentPage: boolean;
|
|
120
|
+
isHotspotToggleEnabled: boolean;
|
|
117
121
|
}> & Readonly<{
|
|
118
122
|
onClick?: (() => any) | undefined;
|
|
119
123
|
onExitFullscreen?: (() => any) | undefined;
|
|
@@ -256,6 +260,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
256
260
|
clientType?: (typeof CLIENT_TYPE)[keyof typeof CLIENT_TYPE];
|
|
257
261
|
isOverlay?: boolean;
|
|
258
262
|
isAnnotationVisibilityEnabled: boolean;
|
|
263
|
+
hasHotspotsOnCurrentPage: boolean;
|
|
264
|
+
isHotspotToggleEnabled: boolean;
|
|
259
265
|
}> & Readonly<{
|
|
260
266
|
onClick?: (() => any) | undefined;
|
|
261
267
|
onExitFullscreen?: (() => any) | undefined;
|
|
@@ -310,6 +316,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
310
316
|
clientType?: (typeof CLIENT_TYPE)[keyof typeof CLIENT_TYPE];
|
|
311
317
|
isOverlay?: boolean;
|
|
312
318
|
isAnnotationVisibilityEnabled: boolean;
|
|
319
|
+
hasHotspotsOnCurrentPage: boolean;
|
|
320
|
+
isHotspotToggleEnabled: boolean;
|
|
313
321
|
}> & Readonly<{
|
|
314
322
|
onClick?: (() => any) | undefined;
|
|
315
323
|
onExitFullscreen?: (() => any) | undefined;
|
|
@@ -45,6 +45,7 @@ interface FileViewerPdfReturnType {
|
|
|
45
45
|
onToggleLinkAnnotation: () => void;
|
|
46
46
|
onCloseLinkAnnotationPopover: () => void;
|
|
47
47
|
onSaveLinkAnnotation: (data: SaveLinkAnnotationPayload) => void;
|
|
48
|
+
hasHotspotsOnCurrentPage: Ref<boolean>;
|
|
48
49
|
}
|
|
49
50
|
declare const _default: ({ pdfViewerEl, bottomBarRef, i18n, appLocale, actions, filePagesFavorites, assetsPrefix, isFavoriteEnabled, clientType, context, pitcherSettings, launchDarkly, emit, fileId, fetchFileById, }: {
|
|
50
51
|
pdfViewerEl: Ref<HTMLElement | null>;
|
|
@@ -19,6 +19,8 @@ type Props = {
|
|
|
19
19
|
clientType?: (typeof CLIENT_TYPE)[keyof typeof CLIENT_TYPE];
|
|
20
20
|
isOverlay?: boolean;
|
|
21
21
|
isAnnotationVisibilityEnabled: boolean;
|
|
22
|
+
hasHotspotsOnCurrentPage: boolean;
|
|
23
|
+
isHotspotToggleEnabled: boolean;
|
|
22
24
|
};
|
|
23
25
|
export interface AnnotationOption extends SelectBaseOption {
|
|
24
26
|
label: string;
|
|
@@ -24,8 +24,6 @@ type __VLS_Props = {
|
|
|
24
24
|
};
|
|
25
25
|
declare function isRowDisabled(id: string | number): boolean;
|
|
26
26
|
declare function handleSelectAll(): void;
|
|
27
|
-
declare function restoreScrollPosition(): void;
|
|
28
|
-
declare function saveScrollPosition(): void;
|
|
29
27
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
30
28
|
isNoneSelected: import('vue').ComputedRef<boolean>;
|
|
31
29
|
areAllSelected: import('vue').ComputedRef<boolean>;
|
|
@@ -33,8 +31,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
33
31
|
selectedRowsCount: import('vue').ComputedRef<number>;
|
|
34
32
|
pageRowsCount: import('vue').ComputedRef<number>;
|
|
35
33
|
isRowDisabled: typeof isRowDisabled;
|
|
36
|
-
saveScrollPosition: typeof saveScrollPosition;
|
|
37
|
-
restoreScrollPosition: typeof restoreScrollPosition;
|
|
38
34
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
39
35
|
sortChanged: (s: SortingState) => any;
|
|
40
36
|
pageChanged: (p: PaginationState) => any;
|
|
@@ -151,8 +151,6 @@ declare function __VLS_template(): {
|
|
|
151
151
|
selectedRowsCount: ComputedRef<number>;
|
|
152
152
|
pageRowsCount: ComputedRef<number>;
|
|
153
153
|
isRowDisabled: (id: string | number) => boolean;
|
|
154
|
-
saveScrollPosition: () => void;
|
|
155
|
-
restoreScrollPosition: () => void;
|
|
156
154
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
157
155
|
sortChanged: (s: SortingState) => any;
|
|
158
156
|
pageChanged: (p: PaginationState) => any;
|
|
@@ -220,8 +218,6 @@ declare function __VLS_template(): {
|
|
|
220
218
|
selectedRowsCount: ComputedRef<number>;
|
|
221
219
|
pageRowsCount: ComputedRef<number>;
|
|
222
220
|
isRowDisabled: (id: string | number) => boolean;
|
|
223
|
-
saveScrollPosition: () => void;
|
|
224
|
-
restoreScrollPosition: () => void;
|
|
225
221
|
}, {}, {}, {}, {
|
|
226
222
|
data: {
|
|
227
223
|
[x: string]: any;
|
|
@@ -374,8 +370,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
374
370
|
selectedRowsCount: ComputedRef<number>;
|
|
375
371
|
pageRowsCount: ComputedRef<number>;
|
|
376
372
|
isRowDisabled: (id: string | number) => boolean;
|
|
377
|
-
saveScrollPosition: () => void;
|
|
378
|
-
restoreScrollPosition: () => void;
|
|
379
373
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
380
374
|
sortChanged: (s: SortingState) => any;
|
|
381
375
|
pageChanged: (p: PaginationState) => any;
|
|
@@ -443,8 +437,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
443
437
|
selectedRowsCount: ComputedRef<number>;
|
|
444
438
|
pageRowsCount: ComputedRef<number>;
|
|
445
439
|
isRowDisabled: (id: string | number) => boolean;
|
|
446
|
-
saveScrollPosition: () => void;
|
|
447
|
-
restoreScrollPosition: () => void;
|
|
448
440
|
}, {}, {}, {}, {
|
|
449
441
|
data: {
|
|
450
442
|
[x: string]: any;
|
|
@@ -564,8 +564,6 @@ declare function __VLS_template(): {
|
|
|
564
564
|
selectedRowsCount: ComputedRef<number>;
|
|
565
565
|
pageRowsCount: ComputedRef<number>;
|
|
566
566
|
isRowDisabled: (id: string | number) => boolean;
|
|
567
|
-
saveScrollPosition: () => void;
|
|
568
|
-
restoreScrollPosition: () => void;
|
|
569
567
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
570
568
|
sortChanged: (s: SortingState) => any;
|
|
571
569
|
pageChanged: (p: PaginationState) => any;
|
|
@@ -633,8 +631,6 @@ declare function __VLS_template(): {
|
|
|
633
631
|
selectedRowsCount: ComputedRef<number>;
|
|
634
632
|
pageRowsCount: ComputedRef<number>;
|
|
635
633
|
isRowDisabled: (id: string | number) => boolean;
|
|
636
|
-
saveScrollPosition: () => void;
|
|
637
|
-
restoreScrollPosition: () => void;
|
|
638
634
|
}, {}, {}, {}, {
|
|
639
635
|
data: {
|
|
640
636
|
[x: string]: any;
|
|
@@ -1189,8 +1185,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1189
1185
|
selectedRowsCount: ComputedRef<number>;
|
|
1190
1186
|
pageRowsCount: ComputedRef<number>;
|
|
1191
1187
|
isRowDisabled: (id: string | number) => boolean;
|
|
1192
|
-
saveScrollPosition: () => void;
|
|
1193
|
-
restoreScrollPosition: () => void;
|
|
1194
1188
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1195
1189
|
sortChanged: (s: SortingState) => any;
|
|
1196
1190
|
pageChanged: (p: PaginationState) => any;
|
|
@@ -1258,8 +1252,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1258
1252
|
selectedRowsCount: ComputedRef<number>;
|
|
1259
1253
|
pageRowsCount: ComputedRef<number>;
|
|
1260
1254
|
isRowDisabled: (id: string | number) => boolean;
|
|
1261
|
-
saveScrollPosition: () => void;
|
|
1262
|
-
restoreScrollPosition: () => void;
|
|
1263
1255
|
}, {}, {}, {}, {
|
|
1264
1256
|
data: {
|
|
1265
1257
|
[x: string]: any;
|
|
@@ -165,8 +165,6 @@ declare function __VLS_template(): {
|
|
|
165
165
|
selectedRowsCount: ComputedRef<number>;
|
|
166
166
|
pageRowsCount: ComputedRef<number>;
|
|
167
167
|
isRowDisabled: (id: string | number) => boolean;
|
|
168
|
-
saveScrollPosition: () => void;
|
|
169
|
-
restoreScrollPosition: () => void;
|
|
170
168
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
171
169
|
sortChanged: (s: SortingState) => any;
|
|
172
170
|
pageChanged: (p: PaginationState) => any;
|
|
@@ -234,8 +232,6 @@ declare function __VLS_template(): {
|
|
|
234
232
|
selectedRowsCount: ComputedRef<number>;
|
|
235
233
|
pageRowsCount: ComputedRef<number>;
|
|
236
234
|
isRowDisabled: (id: string | number) => boolean;
|
|
237
|
-
saveScrollPosition: () => void;
|
|
238
|
-
restoreScrollPosition: () => void;
|
|
239
235
|
}, {}, {}, {}, {
|
|
240
236
|
data: {
|
|
241
237
|
[x: string]: any;
|
|
@@ -307,8 +303,6 @@ declare function __VLS_template(): {
|
|
|
307
303
|
selectedRowsCount: ComputedRef<number>;
|
|
308
304
|
pageRowsCount: ComputedRef<number>;
|
|
309
305
|
isRowDisabled: (id: string | number) => boolean;
|
|
310
|
-
saveScrollPosition: () => void;
|
|
311
|
-
restoreScrollPosition: () => void;
|
|
312
306
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
313
307
|
sortChanged: (s: SortingState) => any;
|
|
314
308
|
pageChanged: (p: PaginationState) => any;
|
|
@@ -376,8 +370,6 @@ declare function __VLS_template(): {
|
|
|
376
370
|
selectedRowsCount: ComputedRef<number>;
|
|
377
371
|
pageRowsCount: ComputedRef<number>;
|
|
378
372
|
isRowDisabled: (id: string | number) => boolean;
|
|
379
|
-
saveScrollPosition: () => void;
|
|
380
|
-
restoreScrollPosition: () => void;
|
|
381
373
|
}, {}, {}, {}, {
|
|
382
374
|
data: {
|
|
383
375
|
[x: string]: any;
|
|
@@ -543,8 +535,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
543
535
|
selectedRowsCount: ComputedRef<number>;
|
|
544
536
|
pageRowsCount: ComputedRef<number>;
|
|
545
537
|
isRowDisabled: (id: string | number) => boolean;
|
|
546
|
-
saveScrollPosition: () => void;
|
|
547
|
-
restoreScrollPosition: () => void;
|
|
548
538
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
549
539
|
sortChanged: (s: SortingState) => any;
|
|
550
540
|
pageChanged: (p: PaginationState) => any;
|
|
@@ -612,8 +602,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
612
602
|
selectedRowsCount: ComputedRef<number>;
|
|
613
603
|
pageRowsCount: ComputedRef<number>;
|
|
614
604
|
isRowDisabled: (id: string | number) => boolean;
|
|
615
|
-
saveScrollPosition: () => void;
|
|
616
|
-
restoreScrollPosition: () => void;
|
|
617
605
|
}, {}, {}, {}, {
|
|
618
606
|
data: {
|
|
619
607
|
[x: string]: any;
|
|
@@ -685,8 +673,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
685
673
|
selectedRowsCount: ComputedRef<number>;
|
|
686
674
|
pageRowsCount: ComputedRef<number>;
|
|
687
675
|
isRowDisabled: (id: string | number) => boolean;
|
|
688
|
-
saveScrollPosition: () => void;
|
|
689
|
-
restoreScrollPosition: () => void;
|
|
690
676
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
691
677
|
sortChanged: (s: SortingState) => any;
|
|
692
678
|
pageChanged: (p: PaginationState) => any;
|
|
@@ -754,8 +740,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
754
740
|
selectedRowsCount: ComputedRef<number>;
|
|
755
741
|
pageRowsCount: ComputedRef<number>;
|
|
756
742
|
isRowDisabled: (id: string | number) => boolean;
|
|
757
|
-
saveScrollPosition: () => void;
|
|
758
|
-
restoreScrollPosition: () => void;
|
|
759
743
|
}, {}, {}, {}, {
|
|
760
744
|
data: {
|
|
761
745
|
[x: string]: any;
|
|
@@ -16,6 +16,7 @@ type __VLS_Props = {
|
|
|
16
16
|
downloadStatus?: 'not_started' | 'in_progress' | 'completed' | 'error';
|
|
17
17
|
pdfUrl?: string;
|
|
18
18
|
pptxUrl?: string;
|
|
19
|
+
isExpired?: boolean;
|
|
19
20
|
};
|
|
20
21
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
22
|
copy: () => any;
|
|
@@ -50,8 +50,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
50
50
|
selectedRowsCount: ComputedRef<number>;
|
|
51
51
|
pageRowsCount: ComputedRef<number>;
|
|
52
52
|
isRowDisabled: (id: string | number) => boolean;
|
|
53
|
-
saveScrollPosition: () => void;
|
|
54
|
-
restoreScrollPosition: () => void;
|
|
55
53
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
56
54
|
sortChanged: (s: import('@tanstack/table-core').SortingState) => any;
|
|
57
55
|
pageChanged: (p: import('@tanstack/table-core').PaginationState) => any;
|
|
@@ -119,8 +117,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
119
117
|
selectedRowsCount: ComputedRef<number>;
|
|
120
118
|
pageRowsCount: ComputedRef<number>;
|
|
121
119
|
isRowDisabled: (id: string | number) => boolean;
|
|
122
|
-
saveScrollPosition: () => void;
|
|
123
|
-
restoreScrollPosition: () => void;
|
|
124
120
|
}, {}, {}, {}, {
|
|
125
121
|
data: {
|
|
126
122
|
[x: string]: any;
|
|
@@ -130,8 +130,6 @@ declare function __VLS_template(): {
|
|
|
130
130
|
selectedRowsCount: ComputedRef<number>;
|
|
131
131
|
pageRowsCount: ComputedRef<number>;
|
|
132
132
|
isRowDisabled: (id: string | number) => boolean;
|
|
133
|
-
saveScrollPosition: () => void;
|
|
134
|
-
restoreScrollPosition: () => void;
|
|
135
133
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
136
134
|
sortChanged: (s: SortingState) => any;
|
|
137
135
|
pageChanged: (p: PaginationState) => any;
|
|
@@ -199,8 +197,6 @@ declare function __VLS_template(): {
|
|
|
199
197
|
selectedRowsCount: ComputedRef<number>;
|
|
200
198
|
pageRowsCount: ComputedRef<number>;
|
|
201
199
|
isRowDisabled: (id: string | number) => boolean;
|
|
202
|
-
saveScrollPosition: () => void;
|
|
203
|
-
restoreScrollPosition: () => void;
|
|
204
200
|
}, {}, {}, {}, {
|
|
205
201
|
data: {
|
|
206
202
|
[x: string]: any;
|
|
@@ -335,8 +331,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
335
331
|
selectedRowsCount: ComputedRef<number>;
|
|
336
332
|
pageRowsCount: ComputedRef<number>;
|
|
337
333
|
isRowDisabled: (id: string | number) => boolean;
|
|
338
|
-
saveScrollPosition: () => void;
|
|
339
|
-
restoreScrollPosition: () => void;
|
|
340
334
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
341
335
|
sortChanged: (s: SortingState) => any;
|
|
342
336
|
pageChanged: (p: PaginationState) => any;
|
|
@@ -404,8 +398,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
404
398
|
selectedRowsCount: ComputedRef<number>;
|
|
405
399
|
pageRowsCount: ComputedRef<number>;
|
|
406
400
|
isRowDisabled: (id: string | number) => boolean;
|
|
407
|
-
saveScrollPosition: () => void;
|
|
408
|
-
restoreScrollPosition: () => void;
|
|
409
401
|
}, {}, {}, {}, {
|
|
410
402
|
data: {
|
|
411
403
|
[x: string]: any;
|
|
@@ -95,8 +95,6 @@ declare function __VLS_template(): {
|
|
|
95
95
|
selectedRowsCount: ComputedRef<number>;
|
|
96
96
|
pageRowsCount: ComputedRef<number>;
|
|
97
97
|
isRowDisabled: (id: string | number) => boolean;
|
|
98
|
-
saveScrollPosition: () => void;
|
|
99
|
-
restoreScrollPosition: () => void;
|
|
100
98
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
101
99
|
sortChanged: (s: SortingState) => any;
|
|
102
100
|
pageChanged: (p: PaginationState) => any;
|
|
@@ -164,8 +162,6 @@ declare function __VLS_template(): {
|
|
|
164
162
|
selectedRowsCount: ComputedRef<number>;
|
|
165
163
|
pageRowsCount: ComputedRef<number>;
|
|
166
164
|
isRowDisabled: (id: string | number) => boolean;
|
|
167
|
-
saveScrollPosition: () => void;
|
|
168
|
-
restoreScrollPosition: () => void;
|
|
169
165
|
}, {}, {}, {}, {
|
|
170
166
|
data: {
|
|
171
167
|
[x: string]: any;
|
|
@@ -267,8 +263,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
267
263
|
selectedRowsCount: ComputedRef<number>;
|
|
268
264
|
pageRowsCount: ComputedRef<number>;
|
|
269
265
|
isRowDisabled: (id: string | number) => boolean;
|
|
270
|
-
saveScrollPosition: () => void;
|
|
271
|
-
restoreScrollPosition: () => void;
|
|
272
266
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
273
267
|
sortChanged: (s: SortingState) => any;
|
|
274
268
|
pageChanged: (p: PaginationState) => any;
|
|
@@ -336,8 +330,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
336
330
|
selectedRowsCount: ComputedRef<number>;
|
|
337
331
|
pageRowsCount: ComputedRef<number>;
|
|
338
332
|
isRowDisabled: (id: string | number) => boolean;
|
|
339
|
-
saveScrollPosition: () => void;
|
|
340
|
-
restoreScrollPosition: () => void;
|
|
341
333
|
}, {}, {}, {}, {
|
|
342
334
|
data: {
|
|
343
335
|
[x: string]: any;
|
package/lib/main.lib.d.ts
CHANGED
|
@@ -236,5 +236,6 @@ export { default as clickOutsideDirective } from './directives/clickOutside';
|
|
|
236
236
|
export { default as autofocusDirective } from './directives/autofocus';
|
|
237
237
|
export { default as tooltipDirective } from './directives/tooltip';
|
|
238
238
|
export { default as usageTrackDirective } from './directives/usage-track.directive';
|
|
239
|
+
export { default as elementMountedDirective } from './directives/element-mounted';
|
|
239
240
|
export * from './constants/i18n.const';
|
|
240
241
|
export * from './types/i18n.types';
|
|
@@ -111,6 +111,7 @@ export declare function createHighLevelApi(options?: ApiOptions): {
|
|
|
111
111
|
updateMyUser(payload: {
|
|
112
112
|
language?: import('../../main.lib').LanguageEnum | undefined;
|
|
113
113
|
}): Promise<import('../../main.lib').User>;
|
|
114
|
+
isOffline(): Promise<boolean>;
|
|
114
115
|
getLanguages(): Promise<modules.Language[]>;
|
|
115
116
|
getEvents(payload: Partial<import('../../main.lib').EventRequest>): Promise<import('../../main.lib').PaginatedData<import('../../main.lib').Event>>;
|
|
116
117
|
createEvent(payload: import('../../main.lib').EventRequest): Promise<import('../../main.lib').Event>;
|
|
@@ -19,4 +19,5 @@ import { User } from '../../../../types/openapi';
|
|
|
19
19
|
export declare function getEnv(): Promise<PitcherEnv>;
|
|
20
20
|
type UpdateEnvParams = Pick<User, 'language'>;
|
|
21
21
|
export declare function updateMyUser(payload: UpdateEnvParams): Promise<User>;
|
|
22
|
+
export declare function isOffline(): Promise<boolean>;
|
|
22
23
|
export {};
|
package/lib/sdk/main.d.ts
CHANGED
|
@@ -189,6 +189,7 @@ export declare function useApi(options?: ApiOptions): {
|
|
|
189
189
|
updateMyUser(payload: {
|
|
190
190
|
language?: import('../main.lib').LanguageEnum | undefined;
|
|
191
191
|
}): Promise<import('../main.lib').User>;
|
|
192
|
+
isOffline(): Promise<boolean>;
|
|
192
193
|
getLanguages(): Promise<import('./api/modules').Language[]>;
|
|
193
194
|
getEvents(payload: Partial<import('../main.lib').EventRequest>): Promise<import('../main.lib').PaginatedData<import('../main.lib').Event>>;
|
|
194
195
|
createEvent(payload: import('../main.lib').EventRequest): Promise<import('../main.lib').Event>;
|
|
@@ -462,6 +463,7 @@ export declare function useApi(options?: ApiOptions): {
|
|
|
462
463
|
updateMyUser(payload: {
|
|
463
464
|
language?: import('../main.lib').LanguageEnum | undefined;
|
|
464
465
|
}): Promise<import('../main.lib').User>;
|
|
466
|
+
isOffline(): Promise<boolean>;
|
|
465
467
|
getLanguages(): Promise<import('./api/modules').Language[]>;
|
|
466
468
|
getEvents(payload: Partial<import('../main.lib').EventRequest>): Promise<import('../main.lib').PaginatedData<import('../main.lib').Event>>;
|
|
467
469
|
createEvent(payload: import('../main.lib').EventRequest): Promise<import('../main.lib').Event>;
|
|
@@ -673,6 +675,7 @@ export declare function useApi(options?: ApiOptions): {
|
|
|
673
675
|
updateMyUser(payload: {
|
|
674
676
|
language?: import('../main.lib').LanguageEnum | undefined;
|
|
675
677
|
}): Promise<import('../main.lib').User>;
|
|
678
|
+
isOffline(): Promise<boolean>;
|
|
676
679
|
getLanguages(): Promise<import('./api/modules').Language[]>;
|
|
677
680
|
getEvents(payload: Partial<import('../main.lib').EventRequest>): Promise<import('../main.lib').PaginatedData<import('../main.lib').Event>>;
|
|
678
681
|
createEvent(payload: import('../main.lib').EventRequest): Promise<import('../main.lib').Event>;
|
package/lib/types/call.d.ts
CHANGED
|
@@ -17,9 +17,9 @@ export declare enum PostAction {
|
|
|
17
17
|
}
|
|
18
18
|
export type CallPresentationHistory = {
|
|
19
19
|
type: 'canvas' | 'section' | 'file' | 'page' | 'canvas_page';
|
|
20
|
-
notesContent?: string;
|
|
21
20
|
duration?: number;
|
|
22
21
|
timeStarted?: string;
|
|
22
|
+
accumulatedDuration?: number;
|
|
23
23
|
name?: string;
|
|
24
24
|
page?: number;
|
|
25
25
|
component_ids?: string[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type LaunchDarklyBooleanFlagKey = 'allow_ai_prompts_in_canvas_text' | 'allow_bulk_actions_canvases_files' | 'allow_canvas_duplication' | 'allow_canvas_history' | 'allow_canvas_ownership_change' | 'allow_canvases_tables_columns_settings' | 'allow_content_grid_autofill' | 'allow_creating_canvas_with_no_template' | 'allow_embeddable_hiding' | 'allow_multimedia_for_scribble_component' | 'allow_note_taking' | 'allow_rep_canvas_metadata_edit' | 'allow_rep_file_rating' | 'allow_rep_file_upload' | 'allow_saving_annotations_in_personal_layer' | 'allow_user_to_edit_font_size_and_color_in_canvas_tokens' | 'are_sections_system_controlled' | 'enable_canvas_core_distributions' | 'enable_file_core_distributions' | 'copy_context_to_canvas' | 'copy_template_metadata_to_canvas' | 'disable_canvas_edit_for_reps' | 'disable_custom_tooltips' | 'disable_file_edit_content' | 'disable_fullscreen_canvas_builder' | 'disable_impact_web_browser_fullscreen' | 'display_section_list_name' | 'enable_ai_generated_thumbnails' | 'enable_analytics' | 'enable_app_developer_role' | 'enable_background_image_theme_options' | 'enable_bulk_update_file_attributes' | 'enable_canvas_as_home' | 'enable_canvas_blocks' | 'enable_canvas_node_debugging' | 'enable_canvas_template_edit_in_impact' | 'enable_canvas_tokens' | 'enable_client_only_canvas_context' | 'enable_collaborations' | 'enable_content_type_change_in_content_selector' | 'enable_create_section_from_section_template' | 'enable_custom_display_overrides' | 'enable_default_crm_shape' | 'enable_dynamic_data_table_component' | 'enable_embedded_video_autoplay' | 'enable_embedded_video' | 'enable_enhanced_indicators' | 'enable_experimental_canvas_builder_dnd' | 'enable_file_pages_metadata' | 'enable_file_revisions' | 'enable_folder_details_edit' | 'enable_handlebar_template_support' | 'enable_height_in_component_theming' | 'enable_insearch_in_section_selector' | 'enable_instance_editor_role' | 'enable_knock_notifications' | 'enable_maintain_section_theme_control' | 'enable_metadata_in_file_uploads_with_default_values' | 'enable_multimedia_component_ai_images' | 'enable_sorting_in_tiptap_table' | 'enable_theme_assets' | 'enable_toc_enhancements_to_support_same_section_in_section_list' | 'enable_pia_assistant' | 'enable_pipe_character_multi_search' | 'enable_popup_apps' | 'enable_pptx_download' | 'enable_print_mode_experiments' | 'enable_resizable_multimedia_component' | 'enable_responsive_scribble_component' | 'enable_saved_canvases_filters' | 'enable_scribble_component' | 'enable_search_and_filters_in_multimedia_component' | 'enable_section_context_in_dsr' | 'enable_section_selector_drag_n_drop' | 'enable_smart_folders' | 'enable_smart_folders_in_files' | 'enable_suggested_tags' | 'enable_template_folders' | 'enable_theme_options_border_radius' | 'enable_themes' | 'hide_asset_uploader' | 'include_files_content_in_print' | 'interpolate_rep_canvases_on_edit_mode' | 'is_fe_sentry_enabled' | 'is_meeting_bar_account_selection_disabled' | 'is_meeting_bar_hidden' | 'is_rep_canvas_creation_disabled' | 'is_shared_link_creation_disabled' | 'is_timeline_component_allowed' | 'launch_in_full_screen_on_present_mode' | 'launch_in_present_mode_on_creation' | 'prefer_online_handlers' | 'reorder_component_in_drawer' | 'show_asset_manager_for_multimedia' | 'show_clear_all_annotations_button' | 'show_content_selector_list_view' | 'show_metadata_filters_in_all_canvas_things' | 'show_popularity_icons' | 'show_system_filters' | 'use_core_endpoint_for_analytics' | 'use_short_url_for_shared_link' | 'use_zoho_instead_of_ms_wopi';
|
|
1
|
+
export type LaunchDarklyBooleanFlagKey = 'allow_ai_prompts_in_canvas_text' | 'allow_bulk_actions_canvases_files' | 'allow_canvas_duplication' | 'allow_canvas_history' | 'allow_canvas_ownership_change' | 'allow_canvases_tables_columns_settings' | 'allow_content_grid_autofill' | 'allow_creating_canvas_with_no_template' | 'allow_dynamic_data_table_for_scribble_component' | 'allow_embeddable_hiding' | 'allow_multimedia_for_scribble_component' | 'allow_note_taking' | 'allow_rep_canvas_metadata_edit' | 'allow_rep_file_rating' | 'allow_rep_file_upload' | 'allow_saving_annotations_in_personal_layer' | 'allow_user_to_edit_font_size_and_color_in_canvas_tokens' | 'are_sections_system_controlled' | 'enable_canvas_core_distributions' | 'enable_file_core_distributions' | 'copy_context_to_canvas' | 'copy_template_metadata_to_canvas' | 'disable_canvas_edit_for_reps' | 'disable_custom_tooltips' | 'disable_file_edit_content' | 'disable_fullscreen_canvas_builder' | 'disable_impact_web_browser_fullscreen' | 'display_section_list_name' | 'enable_ai_generated_thumbnails' | 'enable_analytics' | 'enable_app_developer_role' | 'enable_background_image_theme_options' | 'enable_bulk_update_file_attributes' | 'enable_canvas_as_home' | 'enable_canvas_blocks' | 'enable_canvas_node_debugging' | 'enable_canvas_template_edit_in_impact' | 'enable_canvas_tokens' | 'enable_client_only_canvas_context' | 'enable_collaborations' | 'enable_content_type_change_in_content_selector' | 'enable_create_section_from_section_template' | 'enable_custom_display_overrides' | 'enable_default_crm_shape' | 'enable_dynamic_data_table_component' | 'enable_embedded_video_autoplay' | 'enable_embedded_video' | 'enable_enhanced_indicators' | 'enable_experimental_canvas_builder_dnd' | 'enable_file_pages_metadata' | 'enable_file_revisions' | 'enable_folder_details_edit' | 'enable_handlebar_template_support' | 'enable_height_in_component_theming' | 'enable_hotspot_visibility' | 'enable_insearch_in_section_selector' | 'enable_instance_editor_role' | 'enable_knock_notifications' | 'enable_maintain_section_theme_control' | 'enable_metadata_in_file_uploads_with_default_values' | 'enable_multimedia_component_ai_images' | 'enable_sorting_in_tiptap_table' | 'enable_theme_assets' | 'enable_toc_enhancements_to_support_same_section_in_section_list' | 'enable_pia_assistant' | 'enable_pipe_character_multi_search' | 'enable_popup_apps' | 'enable_pptx_download' | 'enable_print_mode_experiments' | 'enable_reorder_search' | 'enable_reorder_scribble_isolation' | 'enable_resizable_multimedia_component' | 'enable_responsive_scribble_component' | 'enable_saved_canvases_filters' | 'enable_scribble_component' | 'enable_search_and_filters_in_multimedia_component' | 'enable_section_context_in_dsr' | 'enable_section_selector_drag_n_drop' | 'enable_smart_folders' | 'enable_smart_folders_in_files' | 'enable_suggested_tags' | 'enable_template_folders' | 'enable_theme_options_border_radius' | 'enable_themes' | 'hide_asset_uploader' | 'include_files_content_in_print' | 'interpolate_rep_canvases_on_edit_mode' | 'is_fe_sentry_enabled' | 'is_meeting_bar_account_selection_disabled' | 'is_meeting_bar_hidden' | 'is_rep_canvas_creation_disabled' | 'is_shared_link_creation_disabled' | 'is_timeline_component_allowed' | 'launch_in_full_screen_on_present_mode' | 'launch_in_present_mode_on_creation' | 'prefer_online_handlers' | 'reorder_component_in_drawer' | 'show_asset_manager_for_multimedia' | 'show_clear_all_annotations_button' | 'show_content_selector_list_view' | 'show_metadata_filters_in_all_canvas_things' | 'show_popularity_icons' | 'show_system_filters' | 'use_core_endpoint_for_analytics' | 'use_short_url_for_shared_link' | 'use_zoho_instead_of_ms_wopi';
|
|
2
2
|
export type LaunchDarklyNumberFlagKey = 'canvas_section_selector_page_size' | 'canvas_section_selector_selected_items_with_thumbnail_size';
|
|
3
3
|
type LaunchDarklyObjectFlags = {
|
|
4
4
|
canvas_table_pagination: CanvasTablePagination;
|