@pitcher/canvas-ui 2026.1.20-131745 → 2026.1.20-135703
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/canvas-ui.css +5 -5
- package/canvas-ui.js +367 -246
- package/canvas-ui.js.map +1 -1
- package/lib/apps/agenda-selector/composables/move-item-modal.use.d.ts +4 -0
- package/lib/apps/browser/stores/api.d.ts +9 -0
- package/lib/apps/browser/stores/upload.d.ts +4 -0
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.vue.d.ts +8 -8
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.vue.d.ts +8 -3
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +54 -0
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +12 -0
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +12 -0
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +2 -0
- package/lib/apps/canvas-builder/composables/usePopupApps.d.ts +2 -0
- package/lib/apps/collection-selector/composables/move-slide-modal.use.d.ts +4 -0
- package/lib/apps/ppt-conversion-selector/composables/move-slide-modal.use.d.ts +2 -0
- package/lib/apps/ppt-conversion-selector/stores/app.store.d.ts +2 -0
- package/lib/components/CFileAttributes/CFileAttributes.vue.d.ts +1 -0
- package/lib/components/CSwitch/CSwitch.vue.d.ts +4 -2
- package/lib/types/launchDarkly.types.d.ts +1 -1
- package/locale/de.json +11 -0
- package/locale/el.json +11 -0
- package/locale/en.json +11 -0
- package/locale/es.json +11 -0
- package/locale/fr.json +11 -0
- package/locale/it.json +11 -0
- package/locale/ja.json +3 -0
- package/locale/nl.json +11 -0
- package/locale/pl.json +11 -0
- package/locale/pt-br.json +11 -0
- package/locale/pt.json +11 -0
- package/locale/th.json +11 -0
- package/locale/tr.json +11 -0
- package/locale/zh.json +3 -0
- package/package.json +1 -1
- package/types/openapi/models/FilePermission.d.ts +1 -0
- package/types/openapi/models/FilePermissionRequest.d.ts +1 -0
- package/types/openapi/models/PaginatedAppList.d.ts +2 -2
- package/types/openapi/models/PaginatedAuthTokenList.d.ts +2 -2
- package/types/openapi/models/PaginatedCanvasList.d.ts +2 -2
- package/types/openapi/models/PaginatedCollaborationList.d.ts +2 -2
- package/types/openapi/models/PaginatedContentDistributionGroupList.d.ts +2 -2
- package/types/openapi/models/PaginatedContentDistributionGroupMembershipList.d.ts +2 -2
- package/types/openapi/models/PaginatedEnvironmentList.d.ts +2 -2
- package/types/openapi/models/PaginatedEventList.d.ts +2 -2
- package/types/openapi/models/PaginatedFavoriteList.d.ts +2 -2
- package/types/openapi/models/PaginatedFileList.d.ts +2 -2
- package/types/openapi/models/PaginatedFileRevisionList.d.ts +2 -2
- package/types/openapi/models/PaginatedFolderList.d.ts +2 -2
- package/types/openapi/models/PaginatedInstanceAssignmentGroupList.d.ts +2 -2
- package/types/openapi/models/PaginatedInstanceAssignmentGroupMembershipList.d.ts +2 -2
- package/types/openapi/models/PaginatedInstanceList.d.ts +2 -2
- package/types/openapi/models/PaginatedInstanceMembershipList.d.ts +2 -2
- package/types/openapi/models/PaginatedInvitationList.d.ts +2 -2
- package/types/openapi/models/PaginatedMetadataTemplateList.d.ts +2 -2
- package/types/openapi/models/PaginatedOfflineSyncFolderList.d.ts +2 -2
- package/types/openapi/models/PaginatedRegionList.d.ts +2 -2
- package/types/openapi/models/PaginatedRevisionList.d.ts +2 -2
- package/types/openapi/models/PaginatedUserList.d.ts +2 -2
|
@@ -30,6 +30,7 @@ export declare function provideMoveItemModal(): {
|
|
|
30
30
|
permissions?: {
|
|
31
31
|
can_download?: boolean | undefined;
|
|
32
32
|
can_share?: boolean | undefined;
|
|
33
|
+
can_be_divided?: boolean | undefined;
|
|
33
34
|
} | undefined;
|
|
34
35
|
tags?: Array<string> | undefined;
|
|
35
36
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -54,6 +55,7 @@ export declare function provideMoveItemModal(): {
|
|
|
54
55
|
permissions?: {
|
|
55
56
|
can_download?: boolean | undefined;
|
|
56
57
|
can_share?: boolean | undefined;
|
|
58
|
+
can_be_divided?: boolean | undefined;
|
|
57
59
|
} | undefined;
|
|
58
60
|
tags?: Array<string> | undefined;
|
|
59
61
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -91,6 +93,7 @@ export declare function provideMoveItemModal(): {
|
|
|
91
93
|
permissions?: {
|
|
92
94
|
can_download?: boolean | undefined;
|
|
93
95
|
can_share?: boolean | undefined;
|
|
96
|
+
can_be_divided?: boolean | undefined;
|
|
94
97
|
} | undefined;
|
|
95
98
|
tags?: Array<string> | undefined;
|
|
96
99
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -115,6 +118,7 @@ export declare function provideMoveItemModal(): {
|
|
|
115
118
|
permissions?: {
|
|
116
119
|
can_download?: boolean | undefined;
|
|
117
120
|
can_share?: boolean | undefined;
|
|
121
|
+
can_be_divided?: boolean | undefined;
|
|
118
122
|
} | undefined;
|
|
119
123
|
tags?: Array<string> | undefined;
|
|
120
124
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -152,6 +152,7 @@ declare const _default: () => {
|
|
|
152
152
|
readonly permissions?: {
|
|
153
153
|
readonly can_download?: boolean | undefined;
|
|
154
154
|
readonly can_share?: boolean | undefined;
|
|
155
|
+
readonly can_be_divided?: boolean | undefined;
|
|
155
156
|
} | undefined;
|
|
156
157
|
readonly tags?: readonly string[] | undefined;
|
|
157
158
|
readonly owned_by: {
|
|
@@ -204,6 +205,7 @@ declare const _default: () => {
|
|
|
204
205
|
readonly permissions?: {
|
|
205
206
|
readonly can_download?: boolean | undefined;
|
|
206
207
|
readonly can_share?: boolean | undefined;
|
|
208
|
+
readonly can_be_divided?: boolean | undefined;
|
|
207
209
|
} | undefined;
|
|
208
210
|
readonly pspdfkit_server_url: string | null;
|
|
209
211
|
readonly pspdfkit_document_id: string | null;
|
|
@@ -302,6 +304,7 @@ declare const _default: () => {
|
|
|
302
304
|
readonly permissions?: {
|
|
303
305
|
readonly can_download?: boolean | undefined;
|
|
304
306
|
readonly can_share?: boolean | undefined;
|
|
307
|
+
readonly can_be_divided?: boolean | undefined;
|
|
305
308
|
} | undefined;
|
|
306
309
|
readonly metadata: {
|
|
307
310
|
readonly [x: string]: any;
|
|
@@ -424,6 +427,7 @@ declare const _default: () => {
|
|
|
424
427
|
readonly permissions?: {
|
|
425
428
|
readonly can_download?: boolean | undefined;
|
|
426
429
|
readonly can_share?: boolean | undefined;
|
|
430
|
+
readonly can_be_divided?: boolean | undefined;
|
|
427
431
|
} | undefined;
|
|
428
432
|
readonly metadata: {
|
|
429
433
|
readonly [x: string]: any;
|
|
@@ -467,6 +471,7 @@ declare const _default: () => {
|
|
|
467
471
|
readonly permissions?: {
|
|
468
472
|
readonly can_download?: boolean | undefined;
|
|
469
473
|
readonly can_share?: boolean | undefined;
|
|
474
|
+
readonly can_be_divided?: boolean | undefined;
|
|
470
475
|
} | undefined;
|
|
471
476
|
readonly tags?: readonly string[] | undefined;
|
|
472
477
|
readonly owned_by: {
|
|
@@ -609,6 +614,7 @@ declare const _default: () => {
|
|
|
609
614
|
permissions?: {
|
|
610
615
|
can_download?: boolean | undefined;
|
|
611
616
|
can_share?: boolean | undefined;
|
|
617
|
+
can_be_divided?: boolean | undefined;
|
|
612
618
|
} | undefined;
|
|
613
619
|
tags?: Array<string> | undefined;
|
|
614
620
|
readonly owned_by: {
|
|
@@ -661,6 +667,7 @@ declare const _default: () => {
|
|
|
661
667
|
permissions?: {
|
|
662
668
|
can_download?: boolean | undefined;
|
|
663
669
|
can_share?: boolean | undefined;
|
|
670
|
+
can_be_divided?: boolean | undefined;
|
|
664
671
|
} | undefined;
|
|
665
672
|
readonly pspdfkit_server_url: string | null;
|
|
666
673
|
readonly pspdfkit_document_id: string | null;
|
|
@@ -753,6 +760,7 @@ declare const _default: () => {
|
|
|
753
760
|
permissions?: {
|
|
754
761
|
can_download?: boolean | undefined;
|
|
755
762
|
can_share?: boolean | undefined;
|
|
763
|
+
can_be_divided?: boolean | undefined;
|
|
756
764
|
} | undefined;
|
|
757
765
|
readonly metadata: Record<string, any>;
|
|
758
766
|
readonly created_by: {
|
|
@@ -829,6 +837,7 @@ declare const _default: () => {
|
|
|
829
837
|
permissions?: {
|
|
830
838
|
can_download?: boolean | undefined;
|
|
831
839
|
can_share?: boolean | undefined;
|
|
840
|
+
can_be_divided?: boolean | undefined;
|
|
832
841
|
} | undefined;
|
|
833
842
|
readonly metadata: Record<string, any>;
|
|
834
843
|
readonly created_by: {
|
|
@@ -26,6 +26,7 @@ export default function (): {
|
|
|
26
26
|
permissions?: {
|
|
27
27
|
can_download?: boolean | undefined;
|
|
28
28
|
can_share?: boolean | undefined;
|
|
29
|
+
can_be_divided?: boolean | undefined;
|
|
29
30
|
} | undefined;
|
|
30
31
|
app_metadata?: Record<string, any> | undefined;
|
|
31
32
|
tags?: Array<string> | undefined;
|
|
@@ -69,6 +70,7 @@ export default function (): {
|
|
|
69
70
|
permissions?: {
|
|
70
71
|
can_download?: boolean | undefined;
|
|
71
72
|
can_share?: boolean | undefined;
|
|
73
|
+
can_be_divided?: boolean | undefined;
|
|
72
74
|
} | undefined;
|
|
73
75
|
app_metadata?: Record<string, any> | undefined;
|
|
74
76
|
tags?: Array<string> | undefined;
|
|
@@ -110,6 +112,7 @@ export default function (): {
|
|
|
110
112
|
permissions?: {
|
|
111
113
|
can_download?: boolean | undefined;
|
|
112
114
|
can_share?: boolean | undefined;
|
|
115
|
+
can_be_divided?: boolean | undefined;
|
|
113
116
|
} | undefined;
|
|
114
117
|
app_metadata?: Record<string, any> | undefined;
|
|
115
118
|
tags?: Array<string> | undefined;
|
|
@@ -153,6 +156,7 @@ export default function (): {
|
|
|
153
156
|
permissions?: {
|
|
154
157
|
can_download?: boolean | undefined;
|
|
155
158
|
can_share?: boolean | undefined;
|
|
159
|
+
can_be_divided?: boolean | undefined;
|
|
156
160
|
} | undefined;
|
|
157
161
|
app_metadata?: Record<string, any> | undefined;
|
|
158
162
|
tags?: Array<string> | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CSSProperties } from 'vue';
|
|
2
2
|
import { ComponentNode, ComponentNodePrint, ComponentNodeLinkable, ContentListProps } from '../../../types/canvas';
|
|
3
|
-
import { FileContentTypeEnum } from '../../../../../../types/openapi';
|
|
3
|
+
import { FileContentTypeEnum, CanvasRetrieve } from '../../../../../../types/openapi';
|
|
4
4
|
type __VLS_Props = {
|
|
5
5
|
id: ComponentNode['id'];
|
|
6
6
|
data: ContentListProps;
|
|
@@ -14,16 +14,16 @@ type __VLS_Props = {
|
|
|
14
14
|
autofill?: 'off' | 'ai' | 'matching_metadata' | 'matching_tags' | 'matching_metadata_or_tags';
|
|
15
15
|
linkable?: ComponentNodeLinkable;
|
|
16
16
|
autofill_content_types?: FileContentTypeEnum[] | null;
|
|
17
|
-
when_used_in_section?:
|
|
18
|
-
|
|
19
|
-
is_removable: boolean;
|
|
20
|
-
};
|
|
17
|
+
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
18
|
+
usedInSectionId?: CanvasRetrieve['id'];
|
|
21
19
|
};
|
|
22
20
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
23
21
|
style: (s: CSSProperties) => any;
|
|
24
22
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
25
23
|
onStyle?: ((s: CSSProperties) => any) | undefined;
|
|
26
|
-
}>, {
|
|
24
|
+
}>, {
|
|
25
|
+
usedInSectionId: CanvasRetrieve["id"];
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
27
27
|
contentListRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
28
28
|
id: ComponentNode["id"];
|
|
29
29
|
data: ContentListProps;
|
|
@@ -39,7 +39,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
39
39
|
}>, {
|
|
40
40
|
toggleSectionSelector: () => void;
|
|
41
41
|
onSectionsSelect: (items: {
|
|
42
|
-
id:
|
|
42
|
+
id: CanvasRetrieve["id"];
|
|
43
43
|
}[], isForcedRecommendations?: boolean) => Promise<void>;
|
|
44
44
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
45
45
|
justAdded: (id: string) => any;
|
|
@@ -68,7 +68,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
68
68
|
}>, {
|
|
69
69
|
toggleSectionSelector: () => void;
|
|
70
70
|
onSectionsSelect: (items: {
|
|
71
|
-
id:
|
|
71
|
+
id: CanvasRetrieve["id"];
|
|
72
72
|
}[], isForcedRecommendations?: boolean) => Promise<void>;
|
|
73
73
|
}, {}, {}, {}, {}> | null;
|
|
74
74
|
iframeRef: HTMLIFrameElement;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { CSSProperties } from 'vue';
|
|
2
2
|
import { SectionListProps, ComponentNode } from '../../../types/canvas';
|
|
3
|
+
import { CanvasRetrieve } from '../../../../../../types/openapi';
|
|
3
4
|
type __VLS_Props = {
|
|
4
5
|
id: ComponentNode['id'];
|
|
5
6
|
data: SectionListProps;
|
|
@@ -8,12 +9,16 @@ type __VLS_Props = {
|
|
|
8
9
|
allow_admins_to_overwrite?: boolean;
|
|
9
10
|
style?: CSSProperties;
|
|
10
11
|
printModeIdx?: number;
|
|
12
|
+
when_used_in_section?: ComponentNode['when_used_in_section'];
|
|
13
|
+
usedInSectionId?: CanvasRetrieve['id'];
|
|
11
14
|
};
|
|
12
15
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
16
|
style: (s: CSSProperties) => any;
|
|
14
17
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
18
|
onStyle?: ((s: CSSProperties) => any) | undefined;
|
|
16
|
-
}>, {
|
|
19
|
+
}>, {
|
|
20
|
+
usedInSectionId: CanvasRetrieve["id"];
|
|
21
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
17
22
|
sectionListRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
18
23
|
id: ComponentNode["id"];
|
|
19
24
|
data: SectionListProps;
|
|
@@ -29,7 +34,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
29
34
|
}>, {
|
|
30
35
|
toggleSectionSelector: () => void;
|
|
31
36
|
onSectionsSelect: (items: {
|
|
32
|
-
id:
|
|
37
|
+
id: CanvasRetrieve["id"];
|
|
33
38
|
}[], isForcedRecommendations?: boolean) => Promise<void>;
|
|
34
39
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
35
40
|
justAdded: (id: string) => any;
|
|
@@ -58,7 +63,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
58
63
|
}>, {
|
|
59
64
|
toggleSectionSelector: () => void;
|
|
60
65
|
onSectionsSelect: (items: {
|
|
61
|
-
id:
|
|
66
|
+
id: CanvasRetrieve["id"];
|
|
62
67
|
}[], isForcedRecommendations?: boolean) => Promise<void>;
|
|
63
68
|
}, {}, {}, {}, {}> | null;
|
|
64
69
|
iframeRef: HTMLIFrameElement;
|
|
@@ -50,6 +50,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
50
50
|
readonly permissions?: {
|
|
51
51
|
readonly can_download?: boolean | undefined;
|
|
52
52
|
readonly can_share?: boolean | undefined;
|
|
53
|
+
readonly can_be_divided?: boolean | undefined;
|
|
53
54
|
} | undefined;
|
|
54
55
|
readonly tags?: readonly string[] | undefined;
|
|
55
56
|
readonly pspdfkit_auth_payload: {
|
|
@@ -78,6 +79,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
78
79
|
readonly permissions?: {
|
|
79
80
|
readonly can_download?: boolean | undefined;
|
|
80
81
|
readonly can_share?: boolean | undefined;
|
|
82
|
+
readonly can_be_divided?: boolean | undefined;
|
|
81
83
|
} | undefined;
|
|
82
84
|
readonly tags?: readonly string[] | undefined;
|
|
83
85
|
readonly pspdfkit_auth_payload: {
|
|
@@ -181,6 +183,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
181
183
|
readonly permissions?: {
|
|
182
184
|
readonly can_download?: boolean | undefined;
|
|
183
185
|
readonly can_share?: boolean | undefined;
|
|
186
|
+
readonly can_be_divided?: boolean | undefined;
|
|
184
187
|
} | undefined;
|
|
185
188
|
readonly tags?: readonly string[] | undefined;
|
|
186
189
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -208,6 +211,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
208
211
|
readonly permissions?: {
|
|
209
212
|
readonly can_download?: boolean | undefined;
|
|
210
213
|
readonly can_share?: boolean | undefined;
|
|
214
|
+
readonly can_be_divided?: boolean | undefined;
|
|
211
215
|
} | undefined;
|
|
212
216
|
readonly tags?: readonly string[] | undefined;
|
|
213
217
|
};
|
|
@@ -229,6 +233,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
229
233
|
readonly permissions?: {
|
|
230
234
|
readonly can_download?: boolean | undefined;
|
|
231
235
|
readonly can_share?: boolean | undefined;
|
|
236
|
+
readonly can_be_divided?: boolean | undefined;
|
|
232
237
|
} | undefined;
|
|
233
238
|
readonly tags?: readonly string[] | undefined;
|
|
234
239
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -306,6 +311,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
306
311
|
readonly permissions?: {
|
|
307
312
|
readonly can_download?: boolean | undefined;
|
|
308
313
|
readonly can_share?: boolean | undefined;
|
|
314
|
+
readonly can_be_divided?: boolean | undefined;
|
|
309
315
|
} | undefined;
|
|
310
316
|
readonly metadata?: {
|
|
311
317
|
readonly [x: string]: any;
|
|
@@ -524,6 +530,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
524
530
|
readonly permissions?: {
|
|
525
531
|
readonly can_download?: boolean | undefined;
|
|
526
532
|
readonly can_share?: boolean | undefined;
|
|
533
|
+
readonly can_be_divided?: boolean | undefined;
|
|
527
534
|
} | undefined;
|
|
528
535
|
readonly tags?: readonly string[] | undefined;
|
|
529
536
|
readonly pspdfkit_auth_payload: {
|
|
@@ -552,6 +559,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
552
559
|
readonly permissions?: {
|
|
553
560
|
readonly can_download?: boolean | undefined;
|
|
554
561
|
readonly can_share?: boolean | undefined;
|
|
562
|
+
readonly can_be_divided?: boolean | undefined;
|
|
555
563
|
} | undefined;
|
|
556
564
|
readonly tags?: readonly string[] | undefined;
|
|
557
565
|
readonly pspdfkit_auth_payload: {
|
|
@@ -655,6 +663,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
655
663
|
readonly permissions?: {
|
|
656
664
|
readonly can_download?: boolean | undefined;
|
|
657
665
|
readonly can_share?: boolean | undefined;
|
|
666
|
+
readonly can_be_divided?: boolean | undefined;
|
|
658
667
|
} | undefined;
|
|
659
668
|
readonly tags?: readonly string[] | undefined;
|
|
660
669
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -682,6 +691,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
682
691
|
readonly permissions?: {
|
|
683
692
|
readonly can_download?: boolean | undefined;
|
|
684
693
|
readonly can_share?: boolean | undefined;
|
|
694
|
+
readonly can_be_divided?: boolean | undefined;
|
|
685
695
|
} | undefined;
|
|
686
696
|
readonly tags?: readonly string[] | undefined;
|
|
687
697
|
};
|
|
@@ -703,6 +713,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
703
713
|
readonly permissions?: {
|
|
704
714
|
readonly can_download?: boolean | undefined;
|
|
705
715
|
readonly can_share?: boolean | undefined;
|
|
716
|
+
readonly can_be_divided?: boolean | undefined;
|
|
706
717
|
} | undefined;
|
|
707
718
|
readonly tags?: readonly string[] | undefined;
|
|
708
719
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -780,6 +791,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
780
791
|
readonly permissions?: {
|
|
781
792
|
readonly can_download?: boolean | undefined;
|
|
782
793
|
readonly can_share?: boolean | undefined;
|
|
794
|
+
readonly can_be_divided?: boolean | undefined;
|
|
783
795
|
} | undefined;
|
|
784
796
|
readonly metadata?: {
|
|
785
797
|
readonly [x: string]: any;
|
|
@@ -1150,6 +1162,7 @@ export default function useCanvas(): {
|
|
|
1150
1162
|
readonly permissions?: {
|
|
1151
1163
|
readonly can_download?: boolean | undefined;
|
|
1152
1164
|
readonly can_share?: boolean | undefined;
|
|
1165
|
+
readonly can_be_divided?: boolean | undefined;
|
|
1153
1166
|
} | undefined;
|
|
1154
1167
|
readonly tags?: readonly string[] | undefined;
|
|
1155
1168
|
readonly pspdfkit_auth_payload: {
|
|
@@ -1178,6 +1191,7 @@ export default function useCanvas(): {
|
|
|
1178
1191
|
readonly permissions?: {
|
|
1179
1192
|
readonly can_download?: boolean | undefined;
|
|
1180
1193
|
readonly can_share?: boolean | undefined;
|
|
1194
|
+
readonly can_be_divided?: boolean | undefined;
|
|
1181
1195
|
} | undefined;
|
|
1182
1196
|
readonly tags?: readonly string[] | undefined;
|
|
1183
1197
|
readonly pspdfkit_auth_payload: {
|
|
@@ -1281,6 +1295,7 @@ export default function useCanvas(): {
|
|
|
1281
1295
|
readonly permissions?: {
|
|
1282
1296
|
readonly can_download?: boolean | undefined;
|
|
1283
1297
|
readonly can_share?: boolean | undefined;
|
|
1298
|
+
readonly can_be_divided?: boolean | undefined;
|
|
1284
1299
|
} | undefined;
|
|
1285
1300
|
readonly tags?: readonly string[] | undefined;
|
|
1286
1301
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -1308,6 +1323,7 @@ export default function useCanvas(): {
|
|
|
1308
1323
|
readonly permissions?: {
|
|
1309
1324
|
readonly can_download?: boolean | undefined;
|
|
1310
1325
|
readonly can_share?: boolean | undefined;
|
|
1326
|
+
readonly can_be_divided?: boolean | undefined;
|
|
1311
1327
|
} | undefined;
|
|
1312
1328
|
readonly tags?: readonly string[] | undefined;
|
|
1313
1329
|
};
|
|
@@ -1329,6 +1345,7 @@ export default function useCanvas(): {
|
|
|
1329
1345
|
readonly permissions?: {
|
|
1330
1346
|
readonly can_download?: boolean | undefined;
|
|
1331
1347
|
readonly can_share?: boolean | undefined;
|
|
1348
|
+
readonly can_be_divided?: boolean | undefined;
|
|
1332
1349
|
} | undefined;
|
|
1333
1350
|
readonly tags?: readonly string[] | undefined;
|
|
1334
1351
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -1406,6 +1423,7 @@ export default function useCanvas(): {
|
|
|
1406
1423
|
readonly permissions?: {
|
|
1407
1424
|
readonly can_download?: boolean | undefined;
|
|
1408
1425
|
readonly can_share?: boolean | undefined;
|
|
1426
|
+
readonly can_be_divided?: boolean | undefined;
|
|
1409
1427
|
} | undefined;
|
|
1410
1428
|
readonly metadata?: {
|
|
1411
1429
|
readonly [x: string]: any;
|
|
@@ -1636,6 +1654,7 @@ export default function useCanvas(): {
|
|
|
1636
1654
|
readonly permissions?: {
|
|
1637
1655
|
readonly can_download?: boolean | undefined;
|
|
1638
1656
|
readonly can_share?: boolean | undefined;
|
|
1657
|
+
readonly can_be_divided?: boolean | undefined;
|
|
1639
1658
|
} | undefined;
|
|
1640
1659
|
readonly tags?: readonly string[] | undefined;
|
|
1641
1660
|
readonly pspdfkit_auth_payload: {
|
|
@@ -1664,6 +1683,7 @@ export default function useCanvas(): {
|
|
|
1664
1683
|
readonly permissions?: {
|
|
1665
1684
|
readonly can_download?: boolean | undefined;
|
|
1666
1685
|
readonly can_share?: boolean | undefined;
|
|
1686
|
+
readonly can_be_divided?: boolean | undefined;
|
|
1667
1687
|
} | undefined;
|
|
1668
1688
|
readonly tags?: readonly string[] | undefined;
|
|
1669
1689
|
readonly pspdfkit_auth_payload: {
|
|
@@ -1767,6 +1787,7 @@ export default function useCanvas(): {
|
|
|
1767
1787
|
readonly permissions?: {
|
|
1768
1788
|
readonly can_download?: boolean | undefined;
|
|
1769
1789
|
readonly can_share?: boolean | undefined;
|
|
1790
|
+
readonly can_be_divided?: boolean | undefined;
|
|
1770
1791
|
} | undefined;
|
|
1771
1792
|
readonly tags?: readonly string[] | undefined;
|
|
1772
1793
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -1794,6 +1815,7 @@ export default function useCanvas(): {
|
|
|
1794
1815
|
readonly permissions?: {
|
|
1795
1816
|
readonly can_download?: boolean | undefined;
|
|
1796
1817
|
readonly can_share?: boolean | undefined;
|
|
1818
|
+
readonly can_be_divided?: boolean | undefined;
|
|
1797
1819
|
} | undefined;
|
|
1798
1820
|
readonly tags?: readonly string[] | undefined;
|
|
1799
1821
|
};
|
|
@@ -1815,6 +1837,7 @@ export default function useCanvas(): {
|
|
|
1815
1837
|
readonly permissions?: {
|
|
1816
1838
|
readonly can_download?: boolean | undefined;
|
|
1817
1839
|
readonly can_share?: boolean | undefined;
|
|
1840
|
+
readonly can_be_divided?: boolean | undefined;
|
|
1818
1841
|
} | undefined;
|
|
1819
1842
|
readonly tags?: readonly string[] | undefined;
|
|
1820
1843
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -1892,6 +1915,7 @@ export default function useCanvas(): {
|
|
|
1892
1915
|
readonly permissions?: {
|
|
1893
1916
|
readonly can_download?: boolean | undefined;
|
|
1894
1917
|
readonly can_share?: boolean | undefined;
|
|
1918
|
+
readonly can_be_divided?: boolean | undefined;
|
|
1895
1919
|
} | undefined;
|
|
1896
1920
|
readonly metadata?: {
|
|
1897
1921
|
readonly [x: string]: any;
|
|
@@ -2120,6 +2144,7 @@ export default function useCanvas(): {
|
|
|
2120
2144
|
permissions?: {
|
|
2121
2145
|
can_download?: boolean | undefined;
|
|
2122
2146
|
can_share?: boolean | undefined;
|
|
2147
|
+
can_be_divided?: boolean | undefined;
|
|
2123
2148
|
} | undefined;
|
|
2124
2149
|
tags?: Array<string> | undefined;
|
|
2125
2150
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -2144,6 +2169,7 @@ export default function useCanvas(): {
|
|
|
2144
2169
|
permissions?: {
|
|
2145
2170
|
can_download?: boolean | undefined;
|
|
2146
2171
|
can_share?: boolean | undefined;
|
|
2172
|
+
can_be_divided?: boolean | undefined;
|
|
2147
2173
|
} | undefined;
|
|
2148
2174
|
tags?: Array<string> | undefined;
|
|
2149
2175
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -2239,6 +2265,7 @@ export default function useCanvas(): {
|
|
|
2239
2265
|
permissions?: {
|
|
2240
2266
|
can_download?: boolean | undefined;
|
|
2241
2267
|
can_share?: boolean | undefined;
|
|
2268
|
+
can_be_divided?: boolean | undefined;
|
|
2242
2269
|
} | undefined;
|
|
2243
2270
|
tags?: string[] | undefined;
|
|
2244
2271
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -2262,6 +2289,7 @@ export default function useCanvas(): {
|
|
|
2262
2289
|
permissions?: {
|
|
2263
2290
|
can_download?: boolean | undefined;
|
|
2264
2291
|
can_share?: boolean | undefined;
|
|
2292
|
+
can_be_divided?: boolean | undefined;
|
|
2265
2293
|
} | undefined;
|
|
2266
2294
|
tags?: string[] | undefined;
|
|
2267
2295
|
};
|
|
@@ -2283,6 +2311,7 @@ export default function useCanvas(): {
|
|
|
2283
2311
|
permissions?: {
|
|
2284
2312
|
can_download?: boolean | undefined;
|
|
2285
2313
|
can_share?: boolean | undefined;
|
|
2314
|
+
can_be_divided?: boolean | undefined;
|
|
2286
2315
|
} | undefined;
|
|
2287
2316
|
tags?: string[] | undefined;
|
|
2288
2317
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -2356,6 +2385,7 @@ export default function useCanvas(): {
|
|
|
2356
2385
|
permissions?: {
|
|
2357
2386
|
can_download?: boolean | undefined;
|
|
2358
2387
|
can_share?: boolean | undefined;
|
|
2388
|
+
can_be_divided?: boolean | undefined;
|
|
2359
2389
|
} | undefined;
|
|
2360
2390
|
metadata?: Record<string, any> | undefined;
|
|
2361
2391
|
app_metadata?: Record<string, any> | undefined;
|
|
@@ -2549,6 +2579,7 @@ export default function useCanvas(): {
|
|
|
2549
2579
|
permissions?: {
|
|
2550
2580
|
can_download?: boolean | undefined;
|
|
2551
2581
|
can_share?: boolean | undefined;
|
|
2582
|
+
can_be_divided?: boolean | undefined;
|
|
2552
2583
|
} | undefined;
|
|
2553
2584
|
tags?: Array<string> | undefined;
|
|
2554
2585
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -2573,6 +2604,7 @@ export default function useCanvas(): {
|
|
|
2573
2604
|
permissions?: {
|
|
2574
2605
|
can_download?: boolean | undefined;
|
|
2575
2606
|
can_share?: boolean | undefined;
|
|
2607
|
+
can_be_divided?: boolean | undefined;
|
|
2576
2608
|
} | undefined;
|
|
2577
2609
|
tags?: Array<string> | undefined;
|
|
2578
2610
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -2668,6 +2700,7 @@ export default function useCanvas(): {
|
|
|
2668
2700
|
permissions?: {
|
|
2669
2701
|
can_download?: boolean | undefined;
|
|
2670
2702
|
can_share?: boolean | undefined;
|
|
2703
|
+
can_be_divided?: boolean | undefined;
|
|
2671
2704
|
} | undefined;
|
|
2672
2705
|
tags?: string[] | undefined;
|
|
2673
2706
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -2691,6 +2724,7 @@ export default function useCanvas(): {
|
|
|
2691
2724
|
permissions?: {
|
|
2692
2725
|
can_download?: boolean | undefined;
|
|
2693
2726
|
can_share?: boolean | undefined;
|
|
2727
|
+
can_be_divided?: boolean | undefined;
|
|
2694
2728
|
} | undefined;
|
|
2695
2729
|
tags?: string[] | undefined;
|
|
2696
2730
|
};
|
|
@@ -2712,6 +2746,7 @@ export default function useCanvas(): {
|
|
|
2712
2746
|
permissions?: {
|
|
2713
2747
|
can_download?: boolean | undefined;
|
|
2714
2748
|
can_share?: boolean | undefined;
|
|
2749
|
+
can_be_divided?: boolean | undefined;
|
|
2715
2750
|
} | undefined;
|
|
2716
2751
|
tags?: string[] | undefined;
|
|
2717
2752
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -2785,6 +2820,7 @@ export default function useCanvas(): {
|
|
|
2785
2820
|
permissions?: {
|
|
2786
2821
|
can_download?: boolean | undefined;
|
|
2787
2822
|
can_share?: boolean | undefined;
|
|
2823
|
+
can_be_divided?: boolean | undefined;
|
|
2788
2824
|
} | undefined;
|
|
2789
2825
|
metadata?: Record<string, any> | undefined;
|
|
2790
2826
|
app_metadata?: Record<string, any> | undefined;
|
|
@@ -3018,6 +3054,7 @@ export default function useCanvas(): {
|
|
|
3018
3054
|
readonly permissions?: {
|
|
3019
3055
|
readonly can_download?: boolean | undefined;
|
|
3020
3056
|
readonly can_share?: boolean | undefined;
|
|
3057
|
+
readonly can_be_divided?: boolean | undefined;
|
|
3021
3058
|
} | undefined;
|
|
3022
3059
|
readonly tags?: readonly string[] | undefined;
|
|
3023
3060
|
readonly pspdfkit_auth_payload: {
|
|
@@ -3046,6 +3083,7 @@ export default function useCanvas(): {
|
|
|
3046
3083
|
readonly permissions?: {
|
|
3047
3084
|
readonly can_download?: boolean | undefined;
|
|
3048
3085
|
readonly can_share?: boolean | undefined;
|
|
3086
|
+
readonly can_be_divided?: boolean | undefined;
|
|
3049
3087
|
} | undefined;
|
|
3050
3088
|
readonly tags?: readonly string[] | undefined;
|
|
3051
3089
|
readonly pspdfkit_auth_payload: {
|
|
@@ -3149,6 +3187,7 @@ export default function useCanvas(): {
|
|
|
3149
3187
|
readonly permissions?: {
|
|
3150
3188
|
readonly can_download?: boolean | undefined;
|
|
3151
3189
|
readonly can_share?: boolean | undefined;
|
|
3190
|
+
readonly can_be_divided?: boolean | undefined;
|
|
3152
3191
|
} | undefined;
|
|
3153
3192
|
readonly tags?: readonly string[] | undefined;
|
|
3154
3193
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -3176,6 +3215,7 @@ export default function useCanvas(): {
|
|
|
3176
3215
|
readonly permissions?: {
|
|
3177
3216
|
readonly can_download?: boolean | undefined;
|
|
3178
3217
|
readonly can_share?: boolean | undefined;
|
|
3218
|
+
readonly can_be_divided?: boolean | undefined;
|
|
3179
3219
|
} | undefined;
|
|
3180
3220
|
readonly tags?: readonly string[] | undefined;
|
|
3181
3221
|
};
|
|
@@ -3197,6 +3237,7 @@ export default function useCanvas(): {
|
|
|
3197
3237
|
readonly permissions?: {
|
|
3198
3238
|
readonly can_download?: boolean | undefined;
|
|
3199
3239
|
readonly can_share?: boolean | undefined;
|
|
3240
|
+
readonly can_be_divided?: boolean | undefined;
|
|
3200
3241
|
} | undefined;
|
|
3201
3242
|
readonly tags?: readonly string[] | undefined;
|
|
3202
3243
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -3274,6 +3315,7 @@ export default function useCanvas(): {
|
|
|
3274
3315
|
readonly permissions?: {
|
|
3275
3316
|
readonly can_download?: boolean | undefined;
|
|
3276
3317
|
readonly can_share?: boolean | undefined;
|
|
3318
|
+
readonly can_be_divided?: boolean | undefined;
|
|
3277
3319
|
} | undefined;
|
|
3278
3320
|
readonly metadata?: {
|
|
3279
3321
|
readonly [x: string]: any;
|
|
@@ -3669,6 +3711,7 @@ export default function useCanvas(): {
|
|
|
3669
3711
|
readonly permissions?: {
|
|
3670
3712
|
readonly can_download?: boolean | undefined;
|
|
3671
3713
|
readonly can_share?: boolean | undefined;
|
|
3714
|
+
readonly can_be_divided?: boolean | undefined;
|
|
3672
3715
|
} | undefined;
|
|
3673
3716
|
readonly tags?: readonly string[] | undefined;
|
|
3674
3717
|
readonly pspdfkit_auth_payload: {
|
|
@@ -3697,6 +3740,7 @@ export default function useCanvas(): {
|
|
|
3697
3740
|
readonly permissions?: {
|
|
3698
3741
|
readonly can_download?: boolean | undefined;
|
|
3699
3742
|
readonly can_share?: boolean | undefined;
|
|
3743
|
+
readonly can_be_divided?: boolean | undefined;
|
|
3700
3744
|
} | undefined;
|
|
3701
3745
|
readonly tags?: readonly string[] | undefined;
|
|
3702
3746
|
readonly pspdfkit_auth_payload: {
|
|
@@ -3800,6 +3844,7 @@ export default function useCanvas(): {
|
|
|
3800
3844
|
readonly permissions?: {
|
|
3801
3845
|
readonly can_download?: boolean | undefined;
|
|
3802
3846
|
readonly can_share?: boolean | undefined;
|
|
3847
|
+
readonly can_be_divided?: boolean | undefined;
|
|
3803
3848
|
} | undefined;
|
|
3804
3849
|
readonly tags?: readonly string[] | undefined;
|
|
3805
3850
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -3827,6 +3872,7 @@ export default function useCanvas(): {
|
|
|
3827
3872
|
readonly permissions?: {
|
|
3828
3873
|
readonly can_download?: boolean | undefined;
|
|
3829
3874
|
readonly can_share?: boolean | undefined;
|
|
3875
|
+
readonly can_be_divided?: boolean | undefined;
|
|
3830
3876
|
} | undefined;
|
|
3831
3877
|
readonly tags?: readonly string[] | undefined;
|
|
3832
3878
|
};
|
|
@@ -3848,6 +3894,7 @@ export default function useCanvas(): {
|
|
|
3848
3894
|
readonly permissions?: {
|
|
3849
3895
|
readonly can_download?: boolean | undefined;
|
|
3850
3896
|
readonly can_share?: boolean | undefined;
|
|
3897
|
+
readonly can_be_divided?: boolean | undefined;
|
|
3851
3898
|
} | undefined;
|
|
3852
3899
|
readonly tags?: readonly string[] | undefined;
|
|
3853
3900
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -3925,6 +3972,7 @@ export default function useCanvas(): {
|
|
|
3925
3972
|
readonly permissions?: {
|
|
3926
3973
|
readonly can_download?: boolean | undefined;
|
|
3927
3974
|
readonly can_share?: boolean | undefined;
|
|
3975
|
+
readonly can_be_divided?: boolean | undefined;
|
|
3928
3976
|
} | undefined;
|
|
3929
3977
|
readonly metadata?: {
|
|
3930
3978
|
readonly [x: string]: any;
|
|
@@ -4143,6 +4191,7 @@ export default function useCanvas(): {
|
|
|
4143
4191
|
permissions?: {
|
|
4144
4192
|
can_download?: boolean | undefined;
|
|
4145
4193
|
can_share?: boolean | undefined;
|
|
4194
|
+
can_be_divided?: boolean | undefined;
|
|
4146
4195
|
} | undefined;
|
|
4147
4196
|
tags?: Array<string> | undefined;
|
|
4148
4197
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -4167,6 +4216,7 @@ export default function useCanvas(): {
|
|
|
4167
4216
|
permissions?: {
|
|
4168
4217
|
can_download?: boolean | undefined;
|
|
4169
4218
|
can_share?: boolean | undefined;
|
|
4219
|
+
can_be_divided?: boolean | undefined;
|
|
4170
4220
|
} | undefined;
|
|
4171
4221
|
tags?: Array<string> | undefined;
|
|
4172
4222
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -4262,6 +4312,7 @@ export default function useCanvas(): {
|
|
|
4262
4312
|
permissions?: {
|
|
4263
4313
|
can_download?: boolean | undefined;
|
|
4264
4314
|
can_share?: boolean | undefined;
|
|
4315
|
+
can_be_divided?: boolean | undefined;
|
|
4265
4316
|
} | undefined;
|
|
4266
4317
|
tags?: string[] | undefined;
|
|
4267
4318
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -4285,6 +4336,7 @@ export default function useCanvas(): {
|
|
|
4285
4336
|
permissions?: {
|
|
4286
4337
|
can_download?: boolean | undefined;
|
|
4287
4338
|
can_share?: boolean | undefined;
|
|
4339
|
+
can_be_divided?: boolean | undefined;
|
|
4288
4340
|
} | undefined;
|
|
4289
4341
|
tags?: string[] | undefined;
|
|
4290
4342
|
};
|
|
@@ -4306,6 +4358,7 @@ export default function useCanvas(): {
|
|
|
4306
4358
|
permissions?: {
|
|
4307
4359
|
can_download?: boolean | undefined;
|
|
4308
4360
|
can_share?: boolean | undefined;
|
|
4361
|
+
can_be_divided?: boolean | undefined;
|
|
4309
4362
|
} | undefined;
|
|
4310
4363
|
tags?: string[] | undefined;
|
|
4311
4364
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -4379,6 +4432,7 @@ export default function useCanvas(): {
|
|
|
4379
4432
|
permissions?: {
|
|
4380
4433
|
can_download?: boolean | undefined;
|
|
4381
4434
|
can_share?: boolean | undefined;
|
|
4435
|
+
can_be_divided?: boolean | undefined;
|
|
4382
4436
|
} | undefined;
|
|
4383
4437
|
metadata?: Record<string, any> | undefined;
|
|
4384
4438
|
app_metadata?: Record<string, any> | undefined;
|