@pitcher/js-api 1.25.0-beta.2 → 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/impact-js-api.spec.json +7 -1
- package/js-api.esm.js +25 -4
- 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/browser/App.vue.d.ts +10 -9
- package/lib/apps/browser/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +195 -132
- package/lib/apps/browser/components/Content/AllContent/Table/FoldersFilesTable.vue.d.ts +96 -0
- package/lib/apps/browser/components/Content/Panel/DetailsDrawer/DetailsDrawer.vue.d.ts +17 -0
- package/lib/apps/browser/components/FileSmartFolders.vue.d.ts +209 -0
- package/lib/apps/browser/stores/api.d.ts +6 -0
- package/lib/apps/browser/stores/app.d.ts +7 -2
- package/lib/apps/browser/stores/upload.d.ts +4 -4
- package/lib/apps/browser/stores/upload.types.d.ts +0 -1
- package/lib/apps/canvas-builder/App.vue.d.ts +356 -11
- package/lib/apps/canvas-builder/components/container/CanvasDrawerTheme/CanvasDrawerTheme.vue.d.ts +5 -1
- package/lib/apps/canvas-builder/components/container/ControlBar/AppGrid.vue.d.ts +10 -0
- package/lib/apps/canvas-builder/components/container/ControlBar/ControlBar.vue.d.ts +3 -1
- package/lib/apps/canvas-builder/components/container/ControlBar/ReorderContent.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/container/Navigator/Navigator.vue.d.ts +1230 -0
- package/lib/apps/canvas-builder/components/container/SectionInfoProvider/SectionInfoProvider.vue.d.ts +22 -0
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +3 -0
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridFileItem.vue.d.ts +2 -0
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridList.vue.d.ts +12 -0
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridListItem.vue.d.ts +12 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.grouped.vue.d.ts +7 -2
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.header.vue.d.ts +9 -1
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.simple.vue.d.ts +6 -2
- 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/components/ui/Grid/Grid.vue.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.edit.vue.d.ts +6 -1
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.original.vue.d.ts +31 -0
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.responsive.vue.d.ts +31 -0
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.vue.d.ts +1 -6
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.raw.vue.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.vue.d.ts +2 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionListCollapsibles.vue.d.ts +12 -6
- package/lib/apps/canvas-builder/components/ui/Text/Text.vue.d.ts +111 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +206 -31
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +46 -6
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +44 -6
- package/lib/apps/canvas-builder/composables/useCanvasHooks.d.ts +2 -0
- package/lib/apps/canvas-builder/composables/useCanvasNodes.d.ts +16 -0
- package/lib/apps/canvas-builder/composables/useCanvasPages.d.ts +2 -1
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +120 -3
- package/lib/apps/canvas-builder/composables/useCanvasThemeAssets.d.ts +31 -0
- package/lib/apps/canvas-builder/composables/useContentSelector.d.ts +4 -1
- package/lib/apps/canvas-builder/composables/useCrmShape.d.ts +1 -0
- package/lib/apps/canvas-builder/composables/useDataTablePrint.d.ts +5 -0
- package/lib/apps/canvas-builder/composables/useInstalledEmbeddables.d.ts +1 -1
- package/lib/apps/canvas-builder/composables/useReorderComponent.d.ts +4 -0
- package/lib/apps/canvas-builder/composables/useSectionNavigation.d.ts +3 -2
- package/lib/apps/canvas-builder/constants/canvas.const.d.ts +1 -0
- package/lib/apps/canvas-builder/types/canvas.d.ts +45 -11
- package/lib/apps/canvas-builder/util/canvas.util.d.ts +4 -1
- package/lib/apps/canvas-builder/util/print.util.d.ts +1 -1
- package/lib/apps/canvas-builder/util/tiptap-table.util.d.ts +20 -0
- package/lib/apps/collection-player/App.vue.d.ts +1 -0
- package/lib/apps/collection-player/components/AppFooter.vue.d.ts +56 -1
- package/lib/apps/collection-player/components/ImageWithAnnotations.vue.d.ts +15 -0
- package/lib/apps/collection-player/components/MainImage.vue.d.ts +3 -1
- package/lib/apps/collection-player/composables/annotation-layer.use.d.ts +13 -0
- package/lib/apps/collection-player/composables/laser-pointer-marker.use.d.ts +166 -0
- package/lib/apps/collection-player/composables/markerjs.use.d.ts +8 -0
- package/lib/apps/collection-player/composables/new-zoom.use.d.ts +12 -0
- package/lib/apps/collection-player/stores/app.store.d.ts +4 -1
- package/lib/apps/collection-selector/App.vue.d.ts +33 -0
- package/lib/apps/content-selector/appTypes.d.ts +1 -0
- package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesList.vue.d.ts +195 -132
- package/lib/apps/content-selector/components/MultimediaSelectorApp.vue.d.ts +12 -0
- package/lib/apps/content-selector/components/ThemeImages.vue.d.ts +2 -0
- package/lib/apps/content-selector/components/ui/GridItem.vue.d.ts +4 -0
- package/lib/apps/content-selector/composables/useMultimediaSelectorApps.d.ts +21 -0
- package/lib/apps/content-selector/composables/useStore.d.ts +4 -0
- package/lib/apps/content-selector/stores/api.d.ts +19 -228
- package/lib/apps/content-selector/stores/app.d.ts +45 -66
- package/lib/apps/ppt-conversion-selector/components/AppHeader.vue.d.ts +2 -0
- package/lib/canvas-comments/components/CommentButton.vue.d.ts +6 -0
- package/lib/canvas-comments/components/CommentableComponent.vue.d.ts +21 -0
- package/lib/canvas-comments/components/SimpleComments.vue.d.ts +14 -0
- package/lib/components/CApexChart/CApexChartLine.vue.d.ts +1 -1
- package/lib/components/CButton/CButton.vue.d.ts +3 -3
- package/lib/components/CCreateThemeModal/steps/CThemeAssetsStep.vue.d.ts +19 -0
- package/lib/components/CFileThumbnail/CFileThumbnail.vue.d.ts +1 -1
- package/lib/components/CFileViewer/CFileViewer.types.d.ts +8 -0
- package/lib/components/CFileViewer/CFileViewer.vue.d.ts +18 -0
- package/lib/components/CFileViewer/CFileViewerTop.vue.d.ts +3 -0
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.use.d.ts +1 -0
- package/lib/components/CFileViewer/pdf/CFileViewerBottom.pdf.vue.d.ts +5 -0
- package/lib/components/CFileViewer/pdf/CFileViewerCopyPagesMetadata.pdf.vue.d.ts +69 -0
- package/lib/components/CInfoBadge/CInfoBadge.vue.d.ts +2 -0
- package/lib/components/CInput/CInput.vue.d.ts +3 -3
- package/lib/components/CList/CList.vue.d.ts +1 -1
- package/lib/components/CRichTextEditor/CRichTextEditor.vue.d.ts +4 -4
- package/lib/components/CSearchFilters/CSearchFilters.vue.d.ts +90 -1
- package/lib/components/CTable/CTable.vue.d.ts +3 -1
- package/lib/components/CTableTag/CTableTag.vue.d.ts +4687 -0
- package/lib/components/CTags/CTags.vue.d.ts +3 -3
- package/lib/components/CThemePreview/CThemePreview.vue.d.ts +1 -1
- package/lib/components/CThumbnail/CThumbnail.vue.d.ts +43 -0
- package/lib/components/CUserMenu/CUserMenu.vue.d.ts +7 -9
- package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +6 -2
- package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +582 -266
- package/lib/components/canvas-templates/CTemplateManagementToolbar.vue.d.ts +195 -132
- package/lib/components/filters/CSearchFilter.vue.d.ts +2 -0
- package/lib/components/savedCanvases/CCanvasAccountModal.vue.d.ts +23 -0
- package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +20 -5
- package/lib/components/savedCanvases/CSavedCanvasesManagementActionsCell.vue.d.ts +21 -2
- package/lib/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +4 -0
- package/lib/components/savedCanvases/smartFolders/SmartFolders.vue.d.ts +3 -1
- package/lib/components/sections/CSectionManagement.vue.d.ts +6 -2
- package/lib/components/themes/CThemeManagement.vue.d.ts +6 -2
- package/lib/composables/useCanvasLocks.d.ts +3 -4
- package/lib/composables/useCommentTracking.d.ts +25 -0
- package/lib/composables/useCommentsStorage.d.ts +70 -0
- package/lib/composables/useFileDisplayHelpers.d.ts +2 -0
- package/lib/composables/useInstalledApps.d.ts +1 -0
- package/lib/composables/useMetadataFilters.d.ts +2 -2
- package/lib/composables/useMetadataSearch.d.ts +2 -1
- package/lib/composables/useSharedCommentsStorage.d.ts +32 -0
- package/lib/constants/cdp.const.d.ts +6 -0
- package/lib/constants/roles.const.d.ts +16 -0
- package/lib/directives/element-mounted.d.ts +4 -0
- package/lib/main.lib.d.ts +6 -0
- package/lib/sdk/api/HighLevelApi.d.ts +2 -0
- package/lib/sdk/api/modules/admin/index.d.ts +1 -0
- package/lib/sdk/api/modules/admin/types.admin.d.ts +1 -0
- package/lib/sdk/api/modules/admin/users.admin.d.ts +14 -0
- package/lib/sdk/api/modules/env.d.ts +1 -0
- package/lib/sdk/api/modules/query.d.ts +2 -1
- package/lib/sdk/api/modules/ui/types.ui.d.ts +4 -0
- package/lib/sdk/interfaces.d.ts +1 -0
- package/lib/sdk/main.d.ts +8 -0
- package/lib/sdk/payload.types.d.ts +14 -0
- package/lib/types/app.d.ts +12 -1
- package/lib/types/call.d.ts +1 -2
- package/lib/types/canvasTheme.d.ts +12 -0
- package/lib/types/core/MetadataFilter.d.ts +1 -0
- package/lib/types/i18n.types.d.ts +1 -1
- package/lib/types/instanceSettings.types.d.ts +2 -0
- package/lib/types/launchDarkly.types.d.ts +1 -1
- package/lib/types/organizationSettings.types.d.ts +19 -0
- package/lib/util/image.d.ts +4 -0
- package/lib/util/style.util.d.ts +1 -0
- package/lib/util/userAgents.d.ts +1 -0
- package/package.json +1 -1
- package/types/openapi/models/App.d.ts +1 -0
- package/types/openapi/models/CanvasCreate.d.ts +1 -0
- package/types/openapi/models/CanvasRecommendedFile.d.ts +2 -0
- package/types/openapi/models/CanvasRetrieve.d.ts +1 -0
- package/types/openapi/models/CanvasUpdate.d.ts +1 -0
- package/types/openapi/models/CanvasUpdateRequest.d.ts +1 -0
- package/types/openapi/models/DeletedFile.d.ts +2 -0
- package/types/openapi/models/File.d.ts +2 -0
- package/types/openapi/models/FileCreate.d.ts +2 -0
- package/types/openapi/models/FileCreateRequest.d.ts +1 -0
- package/types/openapi/models/FileRetrieve.d.ts +2 -0
- package/types/openapi/models/FileUpdate.d.ts +2 -0
- package/types/openapi/models/FileUpdateRequest.d.ts +1 -0
- package/types/openapi/models/InstanceMembershipUser.d.ts +2 -0
- package/types/openapi/models/PatchedCanvasUpdateRequest.d.ts +1 -0
- package/types/openapi/models/PatchedFileUpdateRequest.d.ts +1 -0
|
@@ -83,42 +83,194 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
83
83
|
order: "asc" | "desc";
|
|
84
84
|
};
|
|
85
85
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
86
|
-
searchFiltersRef:
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
86
|
+
searchFiltersRef: ({
|
|
87
|
+
$: import('vue').ComponentInternalInstance;
|
|
88
|
+
$data: {};
|
|
89
|
+
$props: {
|
|
90
|
+
readonly disabled?: boolean | undefined;
|
|
91
|
+
readonly engagingIds?: string[] | undefined;
|
|
92
|
+
readonly entity: import('../../main.lib').MetadataFilterRequest["entity"];
|
|
93
|
+
readonly includeDraftValues?: boolean | undefined;
|
|
94
|
+
readonly isSection?: boolean | undefined;
|
|
95
|
+
readonly isTemplate?: boolean | undefined;
|
|
96
|
+
readonly searchInOptions?: import('../CSearchFilters/CSearchFilters.types').SearchInOption[] | undefined;
|
|
97
|
+
readonly filters?: Record<string, any> | undefined;
|
|
98
|
+
readonly initialSearchValue?: string | undefined;
|
|
99
|
+
readonly ownerId?: number | null | undefined;
|
|
100
|
+
readonly placeholder?: string | undefined;
|
|
101
|
+
readonly popularIds?: string[] | undefined;
|
|
102
|
+
readonly recommendedIds?: string[] | undefined;
|
|
103
|
+
readonly showLatestFilter?: boolean | undefined;
|
|
104
|
+
readonly hideMetadataFilters?: boolean | undefined;
|
|
105
|
+
readonly hideFilters?: boolean | undefined;
|
|
106
|
+
readonly customFilterComponents?: {
|
|
107
|
+
type: MetadataTemplateFieldTypeEnum;
|
|
108
|
+
name: string;
|
|
109
|
+
label: string;
|
|
110
|
+
options?: [];
|
|
111
|
+
}[] | undefined;
|
|
112
|
+
readonly enableDependentFilters?: boolean | undefined;
|
|
113
|
+
readonly dependentFiltersEntity?: "file" | "canvas" | undefined;
|
|
114
|
+
readonly "onUpdate:search"?: ((search: string, filters?: Record<string, any> | undefined) => any) | undefined;
|
|
115
|
+
readonly "onUpdate:filters"?: ((filters: Record<string, any>) => any) | undefined;
|
|
116
|
+
readonly "onUpdate:searchIn"?: ((searchIn: string) => any) | undefined;
|
|
117
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
118
|
+
$attrs: {
|
|
119
|
+
[x: string]: unknown;
|
|
120
|
+
};
|
|
121
|
+
$refs: {
|
|
122
|
+
[x: string]: unknown;
|
|
123
|
+
} & {
|
|
124
|
+
searchOnClickRef: ({
|
|
125
|
+
$: import('vue').ComponentInternalInstance;
|
|
126
|
+
$data: {};
|
|
127
|
+
$props: {
|
|
128
|
+
readonly disabled?: boolean | undefined;
|
|
129
|
+
readonly placeholder?: string | undefined;
|
|
130
|
+
readonly fullWidth?: boolean | undefined;
|
|
131
|
+
readonly initialSearchValue?: string | undefined;
|
|
132
|
+
readonly onSearch?: ((s: string) => any) | undefined;
|
|
133
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
134
|
+
$attrs: {
|
|
135
|
+
[x: string]: unknown;
|
|
136
|
+
};
|
|
137
|
+
$refs: {
|
|
138
|
+
[x: string]: unknown;
|
|
139
|
+
};
|
|
140
|
+
$slots: Readonly<{
|
|
141
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
142
|
+
}>;
|
|
143
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
144
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
145
|
+
$host: Element | null;
|
|
146
|
+
$emit: (event: "search", s: string) => void;
|
|
147
|
+
$el: HTMLDivElement;
|
|
148
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
149
|
+
disabled?: boolean;
|
|
150
|
+
placeholder?: string;
|
|
151
|
+
fullWidth?: boolean;
|
|
152
|
+
initialSearchValue?: string;
|
|
153
|
+
}> & Readonly<{
|
|
154
|
+
onSearch?: ((s: string) => any) | undefined;
|
|
155
|
+
}>, {
|
|
156
|
+
clear: () => Promise<void>;
|
|
157
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
158
|
+
search: (s: string) => any;
|
|
159
|
+
}, string, {
|
|
160
|
+
initialSearchValue: string;
|
|
161
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
162
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
163
|
+
created?: (() => void) | (() => void)[];
|
|
164
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
165
|
+
mounted?: (() => void) | (() => void)[];
|
|
166
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
167
|
+
updated?: (() => void) | (() => void)[];
|
|
168
|
+
activated?: (() => void) | (() => void)[];
|
|
169
|
+
deactivated?: (() => void) | (() => void)[];
|
|
170
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
171
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
172
|
+
destroyed?: (() => void) | (() => void)[];
|
|
173
|
+
unmounted?: (() => void) | (() => void)[];
|
|
174
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
175
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
176
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
177
|
+
};
|
|
178
|
+
$forceUpdate: () => void;
|
|
179
|
+
$nextTick: typeof import('vue').nextTick;
|
|
180
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
181
|
+
} & Readonly<{
|
|
182
|
+
initialSearchValue: string;
|
|
183
|
+
}> & Omit<Readonly<{
|
|
184
|
+
disabled?: boolean;
|
|
185
|
+
placeholder?: string;
|
|
186
|
+
fullWidth?: boolean;
|
|
187
|
+
initialSearchValue?: string;
|
|
188
|
+
}> & Readonly<{
|
|
189
|
+
onSearch?: ((s: string) => any) | undefined;
|
|
190
|
+
}>, "clear" | "initialSearchValue"> & import('vue').ShallowUnwrapRef<{
|
|
191
|
+
clear: () => Promise<void>;
|
|
192
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
193
|
+
$slots: {
|
|
194
|
+
options?(_: {}): any;
|
|
195
|
+
};
|
|
196
|
+
}) | null;
|
|
197
|
+
};
|
|
198
|
+
$slots: Readonly<{
|
|
199
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
200
|
+
}>;
|
|
201
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
202
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
203
|
+
$host: Element | null;
|
|
204
|
+
$emit: ((event: "update:search", search: string, filters?: Record<string, any> | undefined) => void) & ((event: "update:filters", filters: Record<string, any>) => void) & ((event: "update:searchIn", searchIn: string) => void);
|
|
205
|
+
$el: HTMLDivElement;
|
|
206
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
207
|
+
disabled?: boolean;
|
|
208
|
+
engagingIds?: string[];
|
|
209
|
+
entity: import('../../main.lib').MetadataFilterRequest["entity"];
|
|
210
|
+
includeDraftValues?: boolean;
|
|
211
|
+
isSection?: import('../../main.lib').MetadataFilterRequest["is_section"];
|
|
212
|
+
isTemplate?: import('../../main.lib').MetadataFilterRequest["is_template"];
|
|
213
|
+
searchInOptions?: import('../CSearchFilters/CSearchFilters.types').SearchInOption[];
|
|
214
|
+
filters?: Record<string, any>;
|
|
215
|
+
initialSearchValue?: string;
|
|
216
|
+
ownerId?: number | null;
|
|
217
|
+
placeholder?: string;
|
|
218
|
+
popularIds?: string[];
|
|
219
|
+
recommendedIds?: string[];
|
|
220
|
+
showLatestFilter?: boolean;
|
|
221
|
+
hideMetadataFilters?: boolean;
|
|
222
|
+
hideFilters?: boolean;
|
|
223
|
+
customFilterComponents?: {
|
|
224
|
+
type: MetadataTemplateFieldTypeEnum;
|
|
225
|
+
name: string;
|
|
226
|
+
label: string;
|
|
227
|
+
options?: [];
|
|
228
|
+
}[];
|
|
229
|
+
enableDependentFilters?: boolean;
|
|
230
|
+
dependentFiltersEntity?: "file" | "canvas";
|
|
231
|
+
}> & Readonly<{
|
|
232
|
+
"onUpdate:search"?: ((search: string, filters?: Record<string, any> | undefined) => any) | undefined;
|
|
233
|
+
"onUpdate:filters"?: ((filters: Record<string, any>) => any) | undefined;
|
|
234
|
+
"onUpdate:searchIn"?: ((searchIn: string) => any) | undefined;
|
|
235
|
+
}>, {
|
|
236
|
+
clearSearch: () => void;
|
|
237
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
238
|
+
"update:search": (search: string, filters?: Record<string, any> | undefined) => any;
|
|
239
|
+
"update:filters": (filters: Record<string, any>) => any;
|
|
240
|
+
"update:searchIn": (searchIn: string) => any;
|
|
241
|
+
}, string, {
|
|
242
|
+
filters: Record<string, any>;
|
|
243
|
+
placeholder: string;
|
|
244
|
+
initialSearchValue: string;
|
|
245
|
+
includeDraftValues: boolean;
|
|
246
|
+
engagingIds: string[];
|
|
247
|
+
popularIds: string[];
|
|
248
|
+
recommendedIds: string[];
|
|
249
|
+
showLatestFilter: boolean;
|
|
250
|
+
hideMetadataFilters: boolean;
|
|
251
|
+
hideFilters: boolean;
|
|
252
|
+
dependentFiltersEntity: "file" | "canvas";
|
|
253
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
254
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
255
|
+
created?: (() => void) | (() => void)[];
|
|
256
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
257
|
+
mounted?: (() => void) | (() => void)[];
|
|
258
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
259
|
+
updated?: (() => void) | (() => void)[];
|
|
260
|
+
activated?: (() => void) | (() => void)[];
|
|
261
|
+
deactivated?: (() => void) | (() => void)[];
|
|
262
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
263
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
264
|
+
destroyed?: (() => void) | (() => void)[];
|
|
265
|
+
unmounted?: (() => void) | (() => void)[];
|
|
266
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
267
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
268
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
269
|
+
};
|
|
270
|
+
$forceUpdate: () => void;
|
|
271
|
+
$nextTick: typeof import('vue').nextTick;
|
|
272
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
273
|
+
} & Readonly<{
|
|
122
274
|
filters: Record<string, any>;
|
|
123
275
|
placeholder: string;
|
|
124
276
|
initialSearchValue: string;
|
|
@@ -130,88 +282,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
130
282
|
hideMetadataFilters: boolean;
|
|
131
283
|
hideFilters: boolean;
|
|
132
284
|
dependentFiltersEntity: "file" | "canvas";
|
|
133
|
-
}
|
|
134
|
-
searchOnClickRef: ({
|
|
135
|
-
$: import('vue').ComponentInternalInstance;
|
|
136
|
-
$data: {};
|
|
137
|
-
$props: {
|
|
138
|
-
readonly disabled?: boolean | undefined;
|
|
139
|
-
readonly placeholder?: string | undefined;
|
|
140
|
-
readonly fullWidth?: boolean | undefined;
|
|
141
|
-
readonly initialSearchValue?: string | undefined;
|
|
142
|
-
readonly onSearch?: ((s: string) => any) | undefined;
|
|
143
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
144
|
-
$attrs: {
|
|
145
|
-
[x: string]: unknown;
|
|
146
|
-
};
|
|
147
|
-
$refs: {
|
|
148
|
-
[x: string]: unknown;
|
|
149
|
-
};
|
|
150
|
-
$slots: Readonly<{
|
|
151
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
152
|
-
}>;
|
|
153
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
154
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
155
|
-
$host: Element | null;
|
|
156
|
-
$emit: (event: "search", s: string) => void;
|
|
157
|
-
$el: HTMLDivElement;
|
|
158
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
159
|
-
disabled?: boolean;
|
|
160
|
-
placeholder?: string;
|
|
161
|
-
fullWidth?: boolean;
|
|
162
|
-
initialSearchValue?: string;
|
|
163
|
-
}> & Readonly<{
|
|
164
|
-
onSearch?: ((s: string) => any) | undefined;
|
|
165
|
-
}>, {
|
|
166
|
-
clear: () => Promise<void>;
|
|
167
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
168
|
-
search: (s: string) => any;
|
|
169
|
-
}, string, {
|
|
170
|
-
initialSearchValue: string;
|
|
171
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
172
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
173
|
-
created?: (() => void) | (() => void)[];
|
|
174
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
175
|
-
mounted?: (() => void) | (() => void)[];
|
|
176
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
177
|
-
updated?: (() => void) | (() => void)[];
|
|
178
|
-
activated?: (() => void) | (() => void)[];
|
|
179
|
-
deactivated?: (() => void) | (() => void)[];
|
|
180
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
181
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
182
|
-
destroyed?: (() => void) | (() => void)[];
|
|
183
|
-
unmounted?: (() => void) | (() => void)[];
|
|
184
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
185
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
186
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
187
|
-
};
|
|
188
|
-
$forceUpdate: () => void;
|
|
189
|
-
$nextTick: typeof import('vue').nextTick;
|
|
190
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
191
|
-
} & Readonly<{
|
|
192
|
-
initialSearchValue: string;
|
|
193
|
-
}> & Omit<Readonly<{
|
|
194
|
-
disabled?: boolean;
|
|
195
|
-
placeholder?: string;
|
|
196
|
-
fullWidth?: boolean;
|
|
197
|
-
initialSearchValue?: string;
|
|
198
|
-
}> & Readonly<{
|
|
199
|
-
onSearch?: ((s: string) => any) | undefined;
|
|
200
|
-
}>, "clear" | "initialSearchValue"> & import('vue').ShallowUnwrapRef<{
|
|
201
|
-
clear: () => Promise<void>;
|
|
202
|
-
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
203
|
-
$slots: {
|
|
204
|
-
options?(_: {}): any;
|
|
205
|
-
};
|
|
206
|
-
}) | null;
|
|
207
|
-
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
208
|
-
P: {};
|
|
209
|
-
B: {};
|
|
210
|
-
D: {};
|
|
211
|
-
C: {};
|
|
212
|
-
M: {};
|
|
213
|
-
Defaults: {};
|
|
214
|
-
}, Readonly<{
|
|
285
|
+
}> & Omit<Readonly<{
|
|
215
286
|
disabled?: boolean;
|
|
216
287
|
engagingIds?: string[];
|
|
217
288
|
entity: import('../../main.lib').MetadataFilterRequest["entity"];
|
|
@@ -240,20 +311,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
240
311
|
"onUpdate:search"?: ((search: string, filters?: Record<string, any> | undefined) => any) | undefined;
|
|
241
312
|
"onUpdate:filters"?: ((filters: Record<string, any>) => any) | undefined;
|
|
242
313
|
"onUpdate:searchIn"?: ((searchIn: string) => any) | undefined;
|
|
243
|
-
}>, {
|
|
314
|
+
}>, "clearSearch" | ("filters" | "placeholder" | "initialSearchValue" | "includeDraftValues" | "engagingIds" | "popularIds" | "recommendedIds" | "showLatestFilter" | "hideMetadataFilters" | "hideFilters" | "dependentFiltersEntity")> & import('vue').ShallowUnwrapRef<{
|
|
244
315
|
clearSearch: () => void;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
engagingIds: string[];
|
|
251
|
-
popularIds: string[];
|
|
252
|
-
recommendedIds: string[];
|
|
253
|
-
showLatestFilter: boolean;
|
|
254
|
-
hideMetadataFilters: boolean;
|
|
255
|
-
hideFilters: boolean;
|
|
256
|
-
dependentFiltersEntity: "file" | "canvas";
|
|
257
|
-
}> | null;
|
|
316
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
317
|
+
$slots: {
|
|
318
|
+
'input-suffix'?(_: {}): any;
|
|
319
|
+
};
|
|
320
|
+
}) | null;
|
|
258
321
|
}, HTMLDivElement>;
|
|
259
322
|
export default _default;
|
|
@@ -5,6 +5,7 @@ type Props = {
|
|
|
5
5
|
inline?: boolean;
|
|
6
6
|
includeDraftValues?: boolean;
|
|
7
7
|
name?: string;
|
|
8
|
+
numeric?: boolean;
|
|
8
9
|
modelValue?: string;
|
|
9
10
|
filterKey?: string;
|
|
10
11
|
isCustom?: boolean;
|
|
@@ -27,6 +28,7 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
27
28
|
isTemplate: boolean;
|
|
28
29
|
includeDraftValues: boolean;
|
|
29
30
|
ownerId: number | null;
|
|
31
|
+
numeric: boolean;
|
|
30
32
|
filterKey: string;
|
|
31
33
|
isCustom: boolean;
|
|
32
34
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
accounts: {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
}[];
|
|
6
|
+
accountsLoading: boolean;
|
|
7
|
+
};
|
|
8
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
+
search: (value: string) => any;
|
|
10
|
+
select: (account: {
|
|
11
|
+
value: string;
|
|
12
|
+
label: string;
|
|
13
|
+
}) => any;
|
|
14
|
+
close: () => any;
|
|
15
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
16
|
+
onSearch?: ((value: string) => any) | undefined;
|
|
17
|
+
onSelect?: ((account: {
|
|
18
|
+
value: string;
|
|
19
|
+
label: string;
|
|
20
|
+
}) => any) | undefined;
|
|
21
|
+
onClose?: (() => any) | undefined;
|
|
22
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
23
|
+
export default _default;
|
|
@@ -25,10 +25,15 @@ type __VLS_Props = {
|
|
|
25
25
|
isSharedLinkCreationDisabled?: boolean;
|
|
26
26
|
hideEdit?: boolean;
|
|
27
27
|
isAnyTypeOfAdmin?: boolean;
|
|
28
|
-
downloadCanvas: (canvas: CanvasRetrieve) => Promise<void>;
|
|
28
|
+
downloadCanvas: (canvas: CanvasRetrieve, fileFormat?: 'pdf' | 'pptx') => Promise<void>;
|
|
29
29
|
myUser?: User | null;
|
|
30
30
|
noTabs?: boolean;
|
|
31
31
|
storageKey?: string;
|
|
32
|
+
accounts: {
|
|
33
|
+
label: string;
|
|
34
|
+
value: string;
|
|
35
|
+
}[];
|
|
36
|
+
accountsLoading: boolean;
|
|
32
37
|
};
|
|
33
38
|
declare function __VLS_template(): {
|
|
34
39
|
attrs: Partial<{}>;
|
|
@@ -182,7 +187,9 @@ declare function __VLS_template(): {
|
|
|
182
187
|
hideTotalResults: boolean;
|
|
183
188
|
serverSide: boolean;
|
|
184
189
|
disabledIds: Array<string | number>;
|
|
185
|
-
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
190
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
191
|
+
tableScroller: HTMLDivElement;
|
|
192
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
186
193
|
P: {};
|
|
187
194
|
B: {};
|
|
188
195
|
D: {};
|
|
@@ -318,7 +325,9 @@ declare function __VLS_template(): {
|
|
|
318
325
|
hideTotalResults: boolean;
|
|
319
326
|
serverSide: boolean;
|
|
320
327
|
disabledIds: Array<string | number>;
|
|
321
|
-
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
328
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
329
|
+
tableScroller: HTMLDivElement;
|
|
330
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
322
331
|
P: {};
|
|
323
332
|
B: {};
|
|
324
333
|
D: {};
|
|
@@ -392,6 +401,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
392
401
|
share: (canvas: CanvasRetrieve) => any;
|
|
393
402
|
createFromTemplate: (templateId: string) => any;
|
|
394
403
|
openTemplate: (canvasId: string, templateId: string) => any;
|
|
404
|
+
"account-search": (value: string) => any;
|
|
395
405
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
396
406
|
onEdit?: ((canvas: CanvasRetrieve) => any) | undefined;
|
|
397
407
|
onOpen?: ((canvas: CanvasRetrieve, newTab?: boolean | undefined) => any) | undefined;
|
|
@@ -399,6 +409,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
399
409
|
onShare?: ((canvas: CanvasRetrieve) => any) | undefined;
|
|
400
410
|
onCreateFromTemplate?: ((templateId: string) => any) | undefined;
|
|
401
411
|
onOpenTemplate?: ((canvasId: string, templateId: string) => any) | undefined;
|
|
412
|
+
"onAccount-search"?: ((value: string) => any) | undefined;
|
|
402
413
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
403
414
|
toolbarWrapper: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
404
415
|
search: string;
|
|
@@ -546,7 +557,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
546
557
|
hideTotalResults: boolean;
|
|
547
558
|
serverSide: boolean;
|
|
548
559
|
disabledIds: Array<string | number>;
|
|
549
|
-
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
560
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
561
|
+
tableScroller: HTMLDivElement;
|
|
562
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
550
563
|
P: {};
|
|
551
564
|
B: {};
|
|
552
565
|
D: {};
|
|
@@ -682,7 +695,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
682
695
|
hideTotalResults: boolean;
|
|
683
696
|
serverSide: boolean;
|
|
684
697
|
disabledIds: Array<string | number>;
|
|
685
|
-
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
698
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
699
|
+
tableScroller: HTMLDivElement;
|
|
700
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
686
701
|
P: {};
|
|
687
702
|
B: {};
|
|
688
703
|
D: {};
|
|
@@ -1,15 +1,22 @@
|
|
|
1
|
+
import { CanvasRetrieve } from '../../../types/openapi';
|
|
1
2
|
type __VLS_Props = {
|
|
3
|
+
canvasId: CanvasRetrieve['id'];
|
|
2
4
|
hideCopy?: boolean;
|
|
3
5
|
hideEdit?: boolean;
|
|
4
6
|
hideDelete?: boolean;
|
|
5
7
|
hideShare?: boolean;
|
|
6
8
|
hideViewNewTab?: boolean;
|
|
7
9
|
hideOwnerReassign?: boolean;
|
|
10
|
+
hideLock?: boolean;
|
|
8
11
|
isCopying: boolean;
|
|
9
12
|
isDeleting: boolean;
|
|
10
13
|
isDownloading: boolean;
|
|
11
14
|
isSharing: boolean;
|
|
12
15
|
isReassigningOwner?: boolean;
|
|
16
|
+
downloadStatus?: 'not_started' | 'in_progress' | 'completed' | 'error';
|
|
17
|
+
pdfUrl?: string;
|
|
18
|
+
pptxUrl?: string;
|
|
19
|
+
isExpired?: boolean;
|
|
13
20
|
};
|
|
14
21
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
22
|
copy: () => any;
|
|
@@ -19,8 +26,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
19
26
|
duplicate: () => any;
|
|
20
27
|
share: () => any;
|
|
21
28
|
viewNewTab: () => any;
|
|
29
|
+
lock: () => any;
|
|
30
|
+
unlock: () => any;
|
|
22
31
|
ownerReassign: () => any;
|
|
23
|
-
downloadCanvas: () => any;
|
|
32
|
+
downloadCanvas: (fileFormat?: "pdf" | "pptx" | undefined) => any;
|
|
33
|
+
startAsyncDownload: () => any;
|
|
34
|
+
downloadPdf: () => any;
|
|
35
|
+
downloadPptx: () => any;
|
|
36
|
+
dropdownOpen: () => any;
|
|
24
37
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
25
38
|
onCopy?: (() => any) | undefined;
|
|
26
39
|
onView?: (() => any) | undefined;
|
|
@@ -29,7 +42,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
29
42
|
onDuplicate?: (() => any) | undefined;
|
|
30
43
|
onShare?: (() => any) | undefined;
|
|
31
44
|
onViewNewTab?: (() => any) | undefined;
|
|
45
|
+
onLock?: (() => any) | undefined;
|
|
46
|
+
onUnlock?: (() => any) | undefined;
|
|
32
47
|
onOwnerReassign?: (() => any) | undefined;
|
|
33
|
-
onDownloadCanvas?: (() => any) | undefined;
|
|
48
|
+
onDownloadCanvas?: ((fileFormat?: "pdf" | "pptx" | undefined) => any) | undefined;
|
|
49
|
+
onStartAsyncDownload?: (() => any) | undefined;
|
|
50
|
+
onDownloadPdf?: (() => any) | undefined;
|
|
51
|
+
onDownloadPptx?: (() => any) | undefined;
|
|
52
|
+
onDropdownOpen?: (() => any) | undefined;
|
|
34
53
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
35
54
|
export default _default;
|
|
@@ -73,6 +73,7 @@ export default function useSmartFolders(emit?: (event: 'open', ...args: any[]) =
|
|
|
73
73
|
expires_at?: string | null | undefined;
|
|
74
74
|
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
75
75
|
thumbnail_url?: string | null | undefined;
|
|
76
|
+
instance_id: string;
|
|
76
77
|
readonly template: {
|
|
77
78
|
readonly id: string;
|
|
78
79
|
name: string;
|
|
@@ -154,6 +155,7 @@ export default function useSmartFolders(emit?: (event: 'open', ...args: any[]) =
|
|
|
154
155
|
expires_at?: string | null | undefined;
|
|
155
156
|
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
156
157
|
thumbnail_url?: string | null | undefined;
|
|
158
|
+
instance_id: string;
|
|
157
159
|
readonly template: {
|
|
158
160
|
readonly id: string;
|
|
159
161
|
name: string;
|
|
@@ -215,6 +217,7 @@ export default function useSmartFolders(emit?: (event: 'open', ...args: any[]) =
|
|
|
215
217
|
expires_at?: string | null | undefined;
|
|
216
218
|
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
217
219
|
thumbnail_url?: string | null | undefined;
|
|
220
|
+
instance_id: string;
|
|
218
221
|
readonly template: {
|
|
219
222
|
readonly id: string;
|
|
220
223
|
name: string;
|
|
@@ -277,6 +280,7 @@ export default function useSmartFolders(emit?: (event: 'open', ...args: any[]) =
|
|
|
277
280
|
expires_at?: string | null | undefined;
|
|
278
281
|
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
279
282
|
thumbnail_url?: string | null | undefined;
|
|
283
|
+
instance_id: string;
|
|
280
284
|
readonly template: {
|
|
281
285
|
readonly id: string;
|
|
282
286
|
name: string;
|
|
@@ -72,7 +72,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
72
72
|
hideTotalResults: boolean;
|
|
73
73
|
serverSide: boolean;
|
|
74
74
|
disabledIds: Array<string | number>;
|
|
75
|
-
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
75
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
76
|
+
tableScroller: HTMLDivElement;
|
|
77
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
76
78
|
P: {};
|
|
77
79
|
B: {};
|
|
78
80
|
D: {};
|
|
@@ -152,7 +152,9 @@ declare function __VLS_template(): {
|
|
|
152
152
|
hideTotalResults: boolean;
|
|
153
153
|
serverSide: boolean;
|
|
154
154
|
disabledIds: Array<string | number>;
|
|
155
|
-
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
155
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
156
|
+
tableScroller: HTMLDivElement;
|
|
157
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
156
158
|
P: {};
|
|
157
159
|
B: {};
|
|
158
160
|
D: {};
|
|
@@ -351,7 +353,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
351
353
|
hideTotalResults: boolean;
|
|
352
354
|
serverSide: boolean;
|
|
353
355
|
disabledIds: Array<string | number>;
|
|
354
|
-
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
356
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
357
|
+
tableScroller: HTMLDivElement;
|
|
358
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
355
359
|
P: {};
|
|
356
360
|
B: {};
|
|
357
361
|
D: {};
|
|
@@ -117,7 +117,9 @@ declare function __VLS_template(): {
|
|
|
117
117
|
hideTotalResults: boolean;
|
|
118
118
|
serverSide: boolean;
|
|
119
119
|
disabledIds: Array<string | number>;
|
|
120
|
-
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
120
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
121
|
+
tableScroller: HTMLDivElement;
|
|
122
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
121
123
|
P: {};
|
|
122
124
|
B: {};
|
|
123
125
|
D: {};
|
|
@@ -283,7 +285,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
283
285
|
hideTotalResults: boolean;
|
|
284
286
|
serverSide: boolean;
|
|
285
287
|
disabledIds: Array<string | number>;
|
|
286
|
-
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
288
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
289
|
+
tableScroller: HTMLDivElement;
|
|
290
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
287
291
|
P: {};
|
|
288
292
|
B: {};
|
|
289
293
|
D: {};
|
|
@@ -12,10 +12,7 @@ export interface CanvasLock {
|
|
|
12
12
|
locked_by: LockedBy;
|
|
13
13
|
expires_at: string | null;
|
|
14
14
|
}
|
|
15
|
-
export default function useCanvasLocks(
|
|
16
|
-
instanceId?: string;
|
|
17
|
-
pollingInterval?: number;
|
|
18
|
-
}): {
|
|
15
|
+
export default function useCanvasLocks(): {
|
|
19
16
|
locks: import('vue').Ref<{
|
|
20
17
|
id: string;
|
|
21
18
|
canvas_id: string;
|
|
@@ -47,8 +44,10 @@ export default function useCanvasLocks(options?: {
|
|
|
47
44
|
isCanvasLocked: (canvasId: string) => boolean;
|
|
48
45
|
getCanvasLock: (canvasId: string) => CanvasLock;
|
|
49
46
|
isLockedByCurrentUser: (canvasId: string) => boolean;
|
|
47
|
+
getCanvasLockTooltip: (canvasId: string) => string;
|
|
50
48
|
fetchLocks: () => Promise<void>;
|
|
51
49
|
lockCanvas: (canvasId: string) => Promise<CanvasLock>;
|
|
52
50
|
unlockCanvas: (lockId: string) => Promise<boolean>;
|
|
51
|
+
isLockedBySomeoneElse: (canvasId: string) => boolean;
|
|
53
52
|
};
|
|
54
53
|
export {};
|