@pitcher/js-api 1.26.0-beta.15 → 1.26.0-beta.17
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 -1
- 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/agenda-selector/composables/move-item-modal.use.d.ts +8 -0
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +1 -0
- package/lib/apps/browser/stores/api.d.ts +9 -0
- package/lib/apps/browser/stores/upload.d.ts +8 -4
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.vue.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/Grid/Grid.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/Html/Html.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/Link/Link.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/Page/Page.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/PageBreak/PageBreak.vue.d.ts +15 -1
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.original.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.responsive.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.vue.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +108 -5
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +24 -0
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +24 -0
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +2 -0
- package/lib/apps/canvas-builder/composables/useComponentPermissions.d.ts +2 -1
- package/lib/apps/canvas-builder/composables/usePopupApps.d.ts +2 -0
- package/lib/apps/canvas-builder/constants/canvas.const.d.ts +4 -0
- package/lib/apps/canvas-builder/types/canvas.d.ts +5 -1
- package/lib/apps/canvas-builder/util/canvas.util.d.ts +6 -6
- package/lib/apps/collection-selector/composables/move-slide-modal.use.d.ts +8 -0
- package/lib/apps/ppt-conversion-selector/composables/move-slide-modal.use.d.ts +4 -0
- package/lib/apps/ppt-conversion-selector/stores/app.store.d.ts +4 -0
- package/lib/components/CFileAttributes/CFileAttributes.vue.d.ts +7 -0
- package/lib/composables/useSmartStore.d.ts +1 -1
- package/lib/sdk/api/modules/query.d.ts +3 -3
- package/lib/sdk/payload.types.d.ts +4 -0
- package/lib/types/instanceSettings.types.d.ts +0 -1
- package/lib/types/launchDarkly.types.d.ts +1 -1
- package/lib/types/sfdc.d.ts +1 -0
- package/package.json +2 -2
- package/types/openapi/models/FilePermission.d.ts +1 -0
- package/types/openapi/models/FilePermissionRequest.d.ts +1 -0
|
@@ -30,12 +30,14 @@ export declare function provideMoveItemModal(): {
|
|
|
30
30
|
can_download?: boolean | undefined;
|
|
31
31
|
can_share?: boolean | undefined;
|
|
32
32
|
can_be_divided?: boolean | undefined;
|
|
33
|
+
can_print?: boolean | undefined;
|
|
33
34
|
} | undefined;
|
|
34
35
|
readonly content_url: string | null;
|
|
35
36
|
readonly content_type: import('../../../main.lib').FileContentTypeEnum;
|
|
36
37
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
37
38
|
readonly pspdfkit_document_id: string | null;
|
|
38
39
|
readonly pspdfkit_server_url: string | null;
|
|
40
|
+
expires_at?: string | null | undefined;
|
|
39
41
|
};
|
|
40
42
|
slide: {
|
|
41
43
|
index: number;
|
|
@@ -55,12 +57,14 @@ export declare function provideMoveItemModal(): {
|
|
|
55
57
|
can_download?: boolean | undefined;
|
|
56
58
|
can_share?: boolean | undefined;
|
|
57
59
|
can_be_divided?: boolean | undefined;
|
|
60
|
+
can_print?: boolean | undefined;
|
|
58
61
|
} | undefined;
|
|
59
62
|
readonly content_url: string | null;
|
|
60
63
|
readonly content_type: import('../../../main.lib').FileContentTypeEnum;
|
|
61
64
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
62
65
|
readonly pspdfkit_document_id: string | null;
|
|
63
66
|
readonly pspdfkit_server_url: string | null;
|
|
67
|
+
expires_at?: string | null | undefined;
|
|
64
68
|
};
|
|
65
69
|
})[];
|
|
66
70
|
}[];
|
|
@@ -93,12 +97,14 @@ export declare function provideMoveItemModal(): {
|
|
|
93
97
|
can_download?: boolean | undefined;
|
|
94
98
|
can_share?: boolean | undefined;
|
|
95
99
|
can_be_divided?: boolean | undefined;
|
|
100
|
+
can_print?: boolean | undefined;
|
|
96
101
|
} | undefined;
|
|
97
102
|
readonly content_url: string | null;
|
|
98
103
|
readonly content_type: import('../../../main.lib').FileContentTypeEnum;
|
|
99
104
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
100
105
|
readonly pspdfkit_document_id: string | null;
|
|
101
106
|
readonly pspdfkit_server_url: string | null;
|
|
107
|
+
expires_at?: string | null | undefined;
|
|
102
108
|
};
|
|
103
109
|
slide: {
|
|
104
110
|
index: number;
|
|
@@ -118,12 +124,14 @@ export declare function provideMoveItemModal(): {
|
|
|
118
124
|
can_download?: boolean | undefined;
|
|
119
125
|
can_share?: boolean | undefined;
|
|
120
126
|
can_be_divided?: boolean | undefined;
|
|
127
|
+
can_print?: boolean | undefined;
|
|
121
128
|
} | undefined;
|
|
122
129
|
readonly content_url: string | null;
|
|
123
130
|
readonly content_type: import('../../../main.lib').FileContentTypeEnum;
|
|
124
131
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
125
132
|
readonly pspdfkit_document_id: string | null;
|
|
126
133
|
readonly pspdfkit_server_url: string | null;
|
|
134
|
+
expires_at?: string | null | undefined;
|
|
127
135
|
};
|
|
128
136
|
})[];
|
|
129
137
|
}[];
|
|
@@ -19,6 +19,7 @@ export interface Form {
|
|
|
19
19
|
expiresAtOption: FileExpiration;
|
|
20
20
|
accessType: PFile['access_type'];
|
|
21
21
|
collaborations: UserCollaboration[];
|
|
22
|
+
metadata?: PFile['metadata'];
|
|
22
23
|
}
|
|
23
24
|
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
24
25
|
configEditorRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
@@ -152,6 +152,7 @@ declare const _default: () => {
|
|
|
152
152
|
readonly can_download?: boolean | undefined;
|
|
153
153
|
readonly can_share?: boolean | undefined;
|
|
154
154
|
readonly can_be_divided?: boolean | undefined;
|
|
155
|
+
readonly can_print?: boolean | undefined;
|
|
155
156
|
} | undefined;
|
|
156
157
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
157
158
|
readonly status: FileStatusEnum;
|
|
@@ -206,6 +207,7 @@ declare const _default: () => {
|
|
|
206
207
|
readonly can_download?: boolean | undefined;
|
|
207
208
|
readonly can_share?: boolean | undefined;
|
|
208
209
|
readonly can_be_divided?: boolean | undefined;
|
|
210
|
+
readonly can_print?: boolean | undefined;
|
|
209
211
|
} | undefined;
|
|
210
212
|
readonly pspdfkit_server_url: string | null;
|
|
211
213
|
readonly pspdfkit_document_id: string | null;
|
|
@@ -305,6 +307,7 @@ declare const _default: () => {
|
|
|
305
307
|
readonly can_download?: boolean | undefined;
|
|
306
308
|
readonly can_share?: boolean | undefined;
|
|
307
309
|
readonly can_be_divided?: boolean | undefined;
|
|
310
|
+
readonly can_print?: boolean | undefined;
|
|
308
311
|
} | undefined;
|
|
309
312
|
readonly metadata: {
|
|
310
313
|
readonly [x: string]: any;
|
|
@@ -428,6 +431,7 @@ declare const _default: () => {
|
|
|
428
431
|
readonly can_download?: boolean | undefined;
|
|
429
432
|
readonly can_share?: boolean | undefined;
|
|
430
433
|
readonly can_be_divided?: boolean | undefined;
|
|
434
|
+
readonly can_print?: boolean | undefined;
|
|
431
435
|
} | undefined;
|
|
432
436
|
readonly metadata: {
|
|
433
437
|
readonly [x: string]: any;
|
|
@@ -471,6 +475,7 @@ declare const _default: () => {
|
|
|
471
475
|
readonly can_download?: boolean | undefined;
|
|
472
476
|
readonly can_share?: boolean | undefined;
|
|
473
477
|
readonly can_be_divided?: boolean | undefined;
|
|
478
|
+
readonly can_print?: boolean | undefined;
|
|
474
479
|
} | undefined;
|
|
475
480
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
476
481
|
readonly status: FileStatusEnum;
|
|
@@ -614,6 +619,7 @@ declare const _default: () => {
|
|
|
614
619
|
can_download?: boolean | undefined;
|
|
615
620
|
can_share?: boolean | undefined;
|
|
616
621
|
can_be_divided?: boolean | undefined;
|
|
622
|
+
can_print?: boolean | undefined;
|
|
617
623
|
} | undefined;
|
|
618
624
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
619
625
|
readonly status: FileStatusEnum;
|
|
@@ -668,6 +674,7 @@ declare const _default: () => {
|
|
|
668
674
|
can_download?: boolean | undefined;
|
|
669
675
|
can_share?: boolean | undefined;
|
|
670
676
|
can_be_divided?: boolean | undefined;
|
|
677
|
+
can_print?: boolean | undefined;
|
|
671
678
|
} | undefined;
|
|
672
679
|
readonly pspdfkit_server_url: string | null;
|
|
673
680
|
readonly pspdfkit_document_id: string | null;
|
|
@@ -761,6 +768,7 @@ declare const _default: () => {
|
|
|
761
768
|
can_download?: boolean | undefined;
|
|
762
769
|
can_share?: boolean | undefined;
|
|
763
770
|
can_be_divided?: boolean | undefined;
|
|
771
|
+
can_print?: boolean | undefined;
|
|
764
772
|
} | undefined;
|
|
765
773
|
readonly metadata: Record<string, any>;
|
|
766
774
|
readonly created_by: {
|
|
@@ -838,6 +846,7 @@ declare const _default: () => {
|
|
|
838
846
|
can_download?: boolean | undefined;
|
|
839
847
|
can_share?: boolean | undefined;
|
|
840
848
|
can_be_divided?: boolean | undefined;
|
|
849
|
+
can_print?: boolean | undefined;
|
|
841
850
|
} | undefined;
|
|
842
851
|
readonly metadata: Record<string, any>;
|
|
843
852
|
readonly created_by: {
|
|
@@ -25,11 +25,12 @@ export default function (): {
|
|
|
25
25
|
can_download?: boolean | undefined;
|
|
26
26
|
can_share?: boolean | undefined;
|
|
27
27
|
can_be_divided?: boolean | undefined;
|
|
28
|
+
can_print?: boolean | undefined;
|
|
28
29
|
} | undefined;
|
|
30
|
+
expires_at?: string | null | undefined;
|
|
29
31
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
30
32
|
access_type?: AccessTypeEnum | undefined;
|
|
31
33
|
app_metadata?: Record<string, any> | undefined;
|
|
32
|
-
expires_at?: string | null | undefined;
|
|
33
34
|
folder_id?: string | undefined;
|
|
34
35
|
url?: string | undefined;
|
|
35
36
|
owned_by_id?: number | null | undefined;
|
|
@@ -69,11 +70,12 @@ export default function (): {
|
|
|
69
70
|
can_download?: boolean | undefined;
|
|
70
71
|
can_share?: boolean | undefined;
|
|
71
72
|
can_be_divided?: boolean | undefined;
|
|
73
|
+
can_print?: boolean | undefined;
|
|
72
74
|
} | undefined;
|
|
75
|
+
expires_at?: string | null | undefined;
|
|
73
76
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
74
77
|
access_type?: AccessTypeEnum | undefined;
|
|
75
78
|
app_metadata?: Record<string, any> | undefined;
|
|
76
|
-
expires_at?: string | null | undefined;
|
|
77
79
|
folder_id?: string | undefined;
|
|
78
80
|
url?: string | undefined;
|
|
79
81
|
owned_by_id?: number | null | undefined;
|
|
@@ -111,11 +113,12 @@ export default function (): {
|
|
|
111
113
|
can_download?: boolean | undefined;
|
|
112
114
|
can_share?: boolean | undefined;
|
|
113
115
|
can_be_divided?: boolean | undefined;
|
|
116
|
+
can_print?: boolean | undefined;
|
|
114
117
|
} | undefined;
|
|
118
|
+
expires_at?: string | null | undefined;
|
|
115
119
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
116
120
|
access_type?: AccessTypeEnum | undefined;
|
|
117
121
|
app_metadata?: Record<string, any> | undefined;
|
|
118
|
-
expires_at?: string | null | undefined;
|
|
119
122
|
folder_id?: string | undefined;
|
|
120
123
|
url?: string | undefined;
|
|
121
124
|
owned_by_id?: number | null | undefined;
|
|
@@ -155,11 +158,12 @@ export default function (): {
|
|
|
155
158
|
can_download?: boolean | undefined;
|
|
156
159
|
can_share?: boolean | undefined;
|
|
157
160
|
can_be_divided?: boolean | undefined;
|
|
161
|
+
can_print?: boolean | undefined;
|
|
158
162
|
} | undefined;
|
|
163
|
+
expires_at?: string | null | undefined;
|
|
159
164
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
160
165
|
access_type?: AccessTypeEnum | undefined;
|
|
161
166
|
app_metadata?: Record<string, any> | undefined;
|
|
162
|
-
expires_at?: string | null | undefined;
|
|
163
167
|
folder_id?: string | undefined;
|
|
164
168
|
url?: string | undefined;
|
|
165
169
|
owned_by_id?: number | null | undefined;
|
|
@@ -5,6 +5,7 @@ type __VLS_Props = {
|
|
|
5
5
|
id: ComponentNode['id'];
|
|
6
6
|
data: CarouselProps;
|
|
7
7
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
8
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
8
9
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
9
10
|
visible?: ComponentNode['visible'];
|
|
10
11
|
tracking_id?: string;
|
|
@@ -19,6 +20,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
19
20
|
is_editable: boolean;
|
|
20
21
|
is_removable: boolean;
|
|
21
22
|
};
|
|
23
|
+
template_permissions: {
|
|
24
|
+
is_editable: boolean;
|
|
25
|
+
is_removable: boolean;
|
|
26
|
+
};
|
|
22
27
|
usedInSectionId: CanvasRetrieve["id"];
|
|
23
28
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
24
29
|
export default _default;
|
|
@@ -8,6 +8,7 @@ type __VLS_Props = {
|
|
|
8
8
|
id: ComponentNode['id'];
|
|
9
9
|
data: CollectionPlayer;
|
|
10
10
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
11
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
11
12
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
12
13
|
visible?: ComponentNode['visible'];
|
|
13
14
|
tracking_id?: string;
|
|
@@ -23,6 +24,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
23
24
|
is_editable: boolean;
|
|
24
25
|
is_removable: boolean;
|
|
25
26
|
};
|
|
27
|
+
template_permissions: {
|
|
28
|
+
is_editable: boolean;
|
|
29
|
+
is_removable: boolean;
|
|
30
|
+
};
|
|
26
31
|
usedInSectionId: CanvasRetrieve["id"];
|
|
27
32
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
28
33
|
hostElement: HTMLDivElement;
|
|
@@ -5,6 +5,7 @@ type __VLS_Props = {
|
|
|
5
5
|
id: string;
|
|
6
6
|
data: ContentGridProps;
|
|
7
7
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
8
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
8
9
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
9
10
|
visible?: ComponentNode['visible'];
|
|
10
11
|
tracking_id?: string;
|
|
@@ -19,6 +20,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
19
20
|
is_editable: boolean;
|
|
20
21
|
is_removable: boolean;
|
|
21
22
|
};
|
|
23
|
+
template_permissions: {
|
|
24
|
+
is_editable: boolean;
|
|
25
|
+
is_removable: boolean;
|
|
26
|
+
};
|
|
22
27
|
usedInSectionId: CanvasRetrieve["id"];
|
|
23
28
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
24
29
|
export default _default;
|
|
@@ -15,6 +15,7 @@ type __VLS_Props = {
|
|
|
15
15
|
linkable?: ComponentNodeLinkable;
|
|
16
16
|
autofill_content_types?: FileContentTypeEnum[] | null;
|
|
17
17
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
18
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
18
19
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
19
20
|
};
|
|
20
21
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -7,6 +7,7 @@ type __VLS_Props = {
|
|
|
7
7
|
parentType?: ComponentTypes;
|
|
8
8
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
9
9
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
10
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
10
11
|
visible?: ComponentNode['visible'];
|
|
11
12
|
tracking_id?: string;
|
|
12
13
|
style?: Record<string, any>;
|
|
@@ -22,6 +23,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
22
23
|
is_editable: boolean;
|
|
23
24
|
is_removable: boolean;
|
|
24
25
|
};
|
|
26
|
+
template_permissions: {
|
|
27
|
+
is_editable: boolean;
|
|
28
|
+
is_removable: boolean;
|
|
29
|
+
};
|
|
25
30
|
usedInSectionId: CanvasRetrieve["id"];
|
|
26
31
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
27
32
|
export default _default;
|
|
@@ -7,6 +7,7 @@ type __VLS_Props = {
|
|
|
7
7
|
children?: ComponentNode[];
|
|
8
8
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
9
9
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
10
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
10
11
|
visible?: ComponentNode['visible'];
|
|
11
12
|
tracking_id?: string;
|
|
12
13
|
style?: Record<string, any>;
|
|
@@ -21,6 +22,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
21
22
|
is_editable: boolean;
|
|
22
23
|
is_removable: boolean;
|
|
23
24
|
};
|
|
25
|
+
template_permissions: {
|
|
26
|
+
is_editable: boolean;
|
|
27
|
+
is_removable: boolean;
|
|
28
|
+
};
|
|
24
29
|
usedInSectionId: CanvasRetrieve["id"];
|
|
25
30
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
26
31
|
export default _default;
|
|
@@ -7,6 +7,7 @@ type __VLS_Props = {
|
|
|
7
7
|
parentType?: ComponentTypes;
|
|
8
8
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
9
9
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
10
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
10
11
|
visible?: ComponentNode['visible'];
|
|
11
12
|
tracking_id?: string;
|
|
12
13
|
style?: Record<string, any>;
|
|
@@ -22,6 +23,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
22
23
|
is_editable: boolean;
|
|
23
24
|
is_removable: boolean;
|
|
24
25
|
};
|
|
26
|
+
template_permissions: {
|
|
27
|
+
is_editable: boolean;
|
|
28
|
+
is_removable: boolean;
|
|
29
|
+
};
|
|
25
30
|
usedInSectionId: CanvasRetrieve["id"];
|
|
26
31
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
27
32
|
export default _default;
|
|
@@ -5,6 +5,7 @@ type __VLS_Props = {
|
|
|
5
5
|
id: string;
|
|
6
6
|
data: EmbeddableProps;
|
|
7
7
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
8
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
8
9
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
9
10
|
visible?: ComponentNode['visible'];
|
|
10
11
|
tracking_id?: string;
|
|
@@ -18,6 +19,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
18
19
|
is_editable: boolean;
|
|
19
20
|
is_removable: boolean;
|
|
20
21
|
};
|
|
22
|
+
template_permissions: {
|
|
23
|
+
is_editable: boolean;
|
|
24
|
+
is_removable: boolean;
|
|
25
|
+
};
|
|
21
26
|
usedInSectionId: CanvasRetrieve["id"];
|
|
22
27
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
23
28
|
export default _default;
|
|
@@ -6,6 +6,7 @@ type __VLS_Props = {
|
|
|
6
6
|
children?: ComponentNode[];
|
|
7
7
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
8
8
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
9
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
9
10
|
visible?: ComponentNode['visible'];
|
|
10
11
|
print?: ComponentNode['print'];
|
|
11
12
|
tracking_id?: string;
|
|
@@ -24,6 +25,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
24
25
|
is_editable: boolean;
|
|
25
26
|
is_removable: boolean;
|
|
26
27
|
};
|
|
28
|
+
template_permissions: {
|
|
29
|
+
is_editable: boolean;
|
|
30
|
+
is_removable: boolean;
|
|
31
|
+
};
|
|
27
32
|
usedInSectionId: CanvasRetrieve["id"];
|
|
28
33
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
29
34
|
export default _default;
|
|
@@ -4,6 +4,7 @@ type __VLS_Props = {
|
|
|
4
4
|
id: string;
|
|
5
5
|
data?: HtmlProps;
|
|
6
6
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
7
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
7
8
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
8
9
|
visible?: ComponentNode['visible'];
|
|
9
10
|
tracking_id?: string;
|
|
@@ -14,6 +15,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
14
15
|
is_editable: boolean;
|
|
15
16
|
is_removable: boolean;
|
|
16
17
|
};
|
|
18
|
+
template_permissions: {
|
|
19
|
+
is_editable: boolean;
|
|
20
|
+
is_removable: boolean;
|
|
21
|
+
};
|
|
17
22
|
usedInSectionId: CanvasRetrieve["id"];
|
|
18
23
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
19
24
|
contentElement: HTMLDivElement;
|
|
@@ -5,6 +5,7 @@ type __VLS_Props = {
|
|
|
5
5
|
id: ComponentNode['id'];
|
|
6
6
|
data: IFrameProps;
|
|
7
7
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
8
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
8
9
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
9
10
|
visible?: ComponentNode['visible'];
|
|
10
11
|
tracking_id?: string;
|
|
@@ -19,6 +20,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
19
20
|
is_editable: boolean;
|
|
20
21
|
is_removable: boolean;
|
|
21
22
|
};
|
|
23
|
+
template_permissions: {
|
|
24
|
+
is_editable: boolean;
|
|
25
|
+
is_removable: boolean;
|
|
26
|
+
};
|
|
22
27
|
usedInSectionId: CanvasRetrieve["id"];
|
|
23
28
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
24
29
|
export default _default;
|
|
@@ -4,6 +4,7 @@ type __VLS_Props = {
|
|
|
4
4
|
id: ComponentNode['id'];
|
|
5
5
|
data?: LinkProps;
|
|
6
6
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
7
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
7
8
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
8
9
|
visible?: ComponentNode['visible'];
|
|
9
10
|
tracking_id?: string;
|
|
@@ -14,6 +15,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
14
15
|
is_editable: boolean;
|
|
15
16
|
is_removable: boolean;
|
|
16
17
|
};
|
|
18
|
+
template_permissions: {
|
|
19
|
+
is_editable: boolean;
|
|
20
|
+
is_removable: boolean;
|
|
21
|
+
};
|
|
17
22
|
usedInSectionId: CanvasRetrieve["id"];
|
|
18
23
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
19
24
|
export default _default;
|
|
@@ -4,6 +4,7 @@ type __VLS_Props = {
|
|
|
4
4
|
id: ComponentNode['id'];
|
|
5
5
|
data: MultimediaProps;
|
|
6
6
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
7
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
7
8
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
8
9
|
visible?: ComponentNode['visible'];
|
|
9
10
|
parentType?: ComponentTypes;
|
|
@@ -19,6 +20,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
19
20
|
is_editable: boolean;
|
|
20
21
|
is_removable: boolean;
|
|
21
22
|
};
|
|
23
|
+
template_permissions: {
|
|
24
|
+
is_editable: boolean;
|
|
25
|
+
is_removable: boolean;
|
|
26
|
+
};
|
|
22
27
|
usedInSectionId: CanvasRetrieve["id"];
|
|
23
28
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
24
29
|
export default _default;
|
|
@@ -4,6 +4,7 @@ type __VLS_Props = {
|
|
|
4
4
|
id: string;
|
|
5
5
|
data?: PageProps;
|
|
6
6
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
7
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
7
8
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
8
9
|
visible?: ComponentNode['visible'];
|
|
9
10
|
tracking_id?: string;
|
|
@@ -24,6 +25,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
24
25
|
is_editable: boolean;
|
|
25
26
|
is_removable: boolean;
|
|
26
27
|
};
|
|
28
|
+
template_permissions: {
|
|
29
|
+
is_editable: boolean;
|
|
30
|
+
is_removable: boolean;
|
|
31
|
+
};
|
|
27
32
|
usedInSectionId: CanvasRetrieve["id"];
|
|
28
33
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
29
34
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -1,9 +1,23 @@
|
|
|
1
1
|
import { ComponentNode, PageBreakProps } from '../../../types/canvas';
|
|
2
|
+
import { CanvasRetrieve } from '../../../../../../types/openapi';
|
|
2
3
|
type __VLS_Props = {
|
|
3
4
|
id: ComponentNode['id'];
|
|
4
5
|
data: PageBreakProps;
|
|
5
6
|
visible?: ComponentNode['visible'];
|
|
6
7
|
tracking_id?: string;
|
|
8
|
+
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
9
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
10
|
+
usedInSectionId?: CanvasRetrieve['id'];
|
|
7
11
|
};
|
|
8
|
-
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
12
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
13
|
+
when_used_in_section: {
|
|
14
|
+
is_editable: boolean;
|
|
15
|
+
is_removable: boolean;
|
|
16
|
+
};
|
|
17
|
+
template_permissions: {
|
|
18
|
+
is_editable: boolean;
|
|
19
|
+
is_removable: boolean;
|
|
20
|
+
};
|
|
21
|
+
usedInSectionId: CanvasRetrieve["id"];
|
|
22
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
9
23
|
export default _default;
|
|
@@ -7,6 +7,7 @@ type __VLS_Props = {
|
|
|
7
7
|
children?: ComponentNode[];
|
|
8
8
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
9
9
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
10
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
10
11
|
visible?: ComponentNode['visible'];
|
|
11
12
|
tracking_id?: string;
|
|
12
13
|
style?: CSSProperties;
|
|
@@ -22,6 +23,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
22
23
|
is_editable: boolean;
|
|
23
24
|
is_removable: boolean;
|
|
24
25
|
};
|
|
26
|
+
template_permissions: {
|
|
27
|
+
is_editable: boolean;
|
|
28
|
+
is_removable: boolean;
|
|
29
|
+
};
|
|
25
30
|
usedInSectionId: CanvasRetrieve["id"];
|
|
26
31
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
27
32
|
scribbleRef: HTMLDivElement;
|
|
@@ -7,6 +7,7 @@ type __VLS_Props = {
|
|
|
7
7
|
children?: ComponentNode[];
|
|
8
8
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
9
9
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
10
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
10
11
|
visible?: ComponentNode['visible'];
|
|
11
12
|
tracking_id?: string;
|
|
12
13
|
style?: CSSProperties;
|
|
@@ -22,6 +23,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
22
23
|
is_editable: boolean;
|
|
23
24
|
is_removable: boolean;
|
|
24
25
|
};
|
|
26
|
+
template_permissions: {
|
|
27
|
+
is_editable: boolean;
|
|
28
|
+
is_removable: boolean;
|
|
29
|
+
};
|
|
25
30
|
usedInSectionId: CanvasRetrieve["id"];
|
|
26
31
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
27
32
|
scribbleRef: HTMLDivElement;
|
|
@@ -10,6 +10,7 @@ type __VLS_Props = {
|
|
|
10
10
|
style?: CSSProperties;
|
|
11
11
|
printModeIdx?: number;
|
|
12
12
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
13
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
13
14
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
14
15
|
};
|
|
15
16
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -5,6 +5,7 @@ type __VLS_Props = {
|
|
|
5
5
|
id: string;
|
|
6
6
|
data: TimelineProps;
|
|
7
7
|
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
8
|
+
template_permissions?: ComponentNode['template_permissions'];
|
|
8
9
|
usedInSectionId?: CanvasRetrieve['id'];
|
|
9
10
|
visible?: ComponentNode['visible'];
|
|
10
11
|
tracking_id?: string;
|
|
@@ -18,6 +19,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
18
19
|
is_editable: boolean;
|
|
19
20
|
is_removable: boolean;
|
|
20
21
|
};
|
|
22
|
+
template_permissions: {
|
|
23
|
+
is_editable: boolean;
|
|
24
|
+
is_removable: boolean;
|
|
25
|
+
};
|
|
21
26
|
usedInSectionId: CanvasRetrieve["id"];
|
|
22
27
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
23
28
|
export default _default;
|