@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
|
@@ -134,42 +134,194 @@ declare function __VLS_template(): {
|
|
|
134
134
|
order: "asc" | "desc";
|
|
135
135
|
};
|
|
136
136
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
137
|
-
searchFiltersRef:
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
137
|
+
searchFiltersRef: ({
|
|
138
|
+
$: import('vue').ComponentInternalInstance;
|
|
139
|
+
$data: {};
|
|
140
|
+
$props: {
|
|
141
|
+
readonly disabled?: boolean | undefined;
|
|
142
|
+
readonly engagingIds?: string[] | undefined;
|
|
143
|
+
readonly entity: import('../../main.lib').MetadataFilterRequest["entity"];
|
|
144
|
+
readonly includeDraftValues?: boolean | undefined;
|
|
145
|
+
readonly isSection?: boolean | undefined;
|
|
146
|
+
readonly isTemplate?: boolean | undefined;
|
|
147
|
+
readonly searchInOptions?: import('../CSearchFilters/CSearchFilters.types').SearchInOption[] | undefined;
|
|
148
|
+
readonly filters?: Record<string, any> | undefined;
|
|
149
|
+
readonly initialSearchValue?: string | undefined;
|
|
150
|
+
readonly ownerId?: number | null | undefined;
|
|
151
|
+
readonly placeholder?: string | undefined;
|
|
152
|
+
readonly popularIds?: string[] | undefined;
|
|
153
|
+
readonly recommendedIds?: string[] | undefined;
|
|
154
|
+
readonly showLatestFilter?: boolean | undefined;
|
|
155
|
+
readonly hideMetadataFilters?: boolean | undefined;
|
|
156
|
+
readonly hideFilters?: boolean | undefined;
|
|
157
|
+
readonly customFilterComponents?: {
|
|
158
|
+
type: MetadataTemplateFieldTypeEnum;
|
|
159
|
+
name: string;
|
|
160
|
+
label: string;
|
|
161
|
+
options?: [];
|
|
162
|
+
}[] | undefined;
|
|
163
|
+
readonly enableDependentFilters?: boolean | undefined;
|
|
164
|
+
readonly dependentFiltersEntity?: "file" | "canvas" | undefined;
|
|
165
|
+
readonly "onUpdate:search"?: ((search: string, filters?: Record<string, any> | undefined) => any) | undefined;
|
|
166
|
+
readonly "onUpdate:filters"?: ((filters: Record<string, any>) => any) | undefined;
|
|
167
|
+
readonly "onUpdate:searchIn"?: ((searchIn: string) => any) | undefined;
|
|
168
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
169
|
+
$attrs: {
|
|
170
|
+
[x: string]: unknown;
|
|
171
|
+
};
|
|
172
|
+
$refs: {
|
|
173
|
+
[x: string]: unknown;
|
|
174
|
+
} & {
|
|
175
|
+
searchOnClickRef: ({
|
|
176
|
+
$: import('vue').ComponentInternalInstance;
|
|
177
|
+
$data: {};
|
|
178
|
+
$props: {
|
|
179
|
+
readonly disabled?: boolean | undefined;
|
|
180
|
+
readonly placeholder?: string | undefined;
|
|
181
|
+
readonly fullWidth?: boolean | undefined;
|
|
182
|
+
readonly initialSearchValue?: string | undefined;
|
|
183
|
+
readonly onSearch?: ((s: string) => any) | undefined;
|
|
184
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
185
|
+
$attrs: {
|
|
186
|
+
[x: string]: unknown;
|
|
187
|
+
};
|
|
188
|
+
$refs: {
|
|
189
|
+
[x: string]: unknown;
|
|
190
|
+
};
|
|
191
|
+
$slots: Readonly<{
|
|
192
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
193
|
+
}>;
|
|
194
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
195
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
196
|
+
$host: Element | null;
|
|
197
|
+
$emit: (event: "search", s: string) => void;
|
|
198
|
+
$el: HTMLDivElement;
|
|
199
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
200
|
+
disabled?: boolean;
|
|
201
|
+
placeholder?: string;
|
|
202
|
+
fullWidth?: boolean;
|
|
203
|
+
initialSearchValue?: string;
|
|
204
|
+
}> & Readonly<{
|
|
205
|
+
onSearch?: ((s: string) => any) | undefined;
|
|
206
|
+
}>, {
|
|
207
|
+
clear: () => Promise<void>;
|
|
208
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
209
|
+
search: (s: string) => any;
|
|
210
|
+
}, string, {
|
|
211
|
+
initialSearchValue: string;
|
|
212
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
213
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
214
|
+
created?: (() => void) | (() => void)[];
|
|
215
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
216
|
+
mounted?: (() => void) | (() => void)[];
|
|
217
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
218
|
+
updated?: (() => void) | (() => void)[];
|
|
219
|
+
activated?: (() => void) | (() => void)[];
|
|
220
|
+
deactivated?: (() => void) | (() => void)[];
|
|
221
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
222
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
223
|
+
destroyed?: (() => void) | (() => void)[];
|
|
224
|
+
unmounted?: (() => void) | (() => void)[];
|
|
225
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
226
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
227
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
228
|
+
};
|
|
229
|
+
$forceUpdate: () => void;
|
|
230
|
+
$nextTick: typeof import('vue').nextTick;
|
|
231
|
+
$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;
|
|
232
|
+
} & Readonly<{
|
|
233
|
+
initialSearchValue: string;
|
|
234
|
+
}> & Omit<Readonly<{
|
|
235
|
+
disabled?: boolean;
|
|
236
|
+
placeholder?: string;
|
|
237
|
+
fullWidth?: boolean;
|
|
238
|
+
initialSearchValue?: string;
|
|
239
|
+
}> & Readonly<{
|
|
240
|
+
onSearch?: ((s: string) => any) | undefined;
|
|
241
|
+
}>, "clear" | "initialSearchValue"> & import('vue').ShallowUnwrapRef<{
|
|
242
|
+
clear: () => Promise<void>;
|
|
243
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
244
|
+
$slots: {
|
|
245
|
+
options?(_: {}): any;
|
|
246
|
+
};
|
|
247
|
+
}) | null;
|
|
248
|
+
};
|
|
249
|
+
$slots: Readonly<{
|
|
250
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
251
|
+
}>;
|
|
252
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
253
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
254
|
+
$host: Element | null;
|
|
255
|
+
$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);
|
|
256
|
+
$el: HTMLDivElement;
|
|
257
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
258
|
+
disabled?: boolean;
|
|
259
|
+
engagingIds?: string[];
|
|
260
|
+
entity: import('../../main.lib').MetadataFilterRequest["entity"];
|
|
261
|
+
includeDraftValues?: boolean;
|
|
262
|
+
isSection?: import('../../main.lib').MetadataFilterRequest["is_section"];
|
|
263
|
+
isTemplate?: import('../../main.lib').MetadataFilterRequest["is_template"];
|
|
264
|
+
searchInOptions?: import('../CSearchFilters/CSearchFilters.types').SearchInOption[];
|
|
265
|
+
filters?: Record<string, any>;
|
|
266
|
+
initialSearchValue?: string;
|
|
267
|
+
ownerId?: number | null;
|
|
268
|
+
placeholder?: string;
|
|
269
|
+
popularIds?: string[];
|
|
270
|
+
recommendedIds?: string[];
|
|
271
|
+
showLatestFilter?: boolean;
|
|
272
|
+
hideMetadataFilters?: boolean;
|
|
273
|
+
hideFilters?: boolean;
|
|
274
|
+
customFilterComponents?: {
|
|
275
|
+
type: MetadataTemplateFieldTypeEnum;
|
|
276
|
+
name: string;
|
|
277
|
+
label: string;
|
|
278
|
+
options?: [];
|
|
279
|
+
}[];
|
|
280
|
+
enableDependentFilters?: boolean;
|
|
281
|
+
dependentFiltersEntity?: "file" | "canvas";
|
|
282
|
+
}> & Readonly<{
|
|
283
|
+
"onUpdate:search"?: ((search: string, filters?: Record<string, any> | undefined) => any) | undefined;
|
|
284
|
+
"onUpdate:filters"?: ((filters: Record<string, any>) => any) | undefined;
|
|
285
|
+
"onUpdate:searchIn"?: ((searchIn: string) => any) | undefined;
|
|
286
|
+
}>, {
|
|
287
|
+
clearSearch: () => void;
|
|
288
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
289
|
+
"update:search": (search: string, filters?: Record<string, any> | undefined) => any;
|
|
290
|
+
"update:filters": (filters: Record<string, any>) => any;
|
|
291
|
+
"update:searchIn": (searchIn: string) => any;
|
|
292
|
+
}, string, {
|
|
293
|
+
filters: Record<string, any>;
|
|
294
|
+
placeholder: string;
|
|
295
|
+
initialSearchValue: string;
|
|
296
|
+
includeDraftValues: boolean;
|
|
297
|
+
engagingIds: string[];
|
|
298
|
+
popularIds: string[];
|
|
299
|
+
recommendedIds: string[];
|
|
300
|
+
showLatestFilter: boolean;
|
|
301
|
+
hideMetadataFilters: boolean;
|
|
302
|
+
hideFilters: boolean;
|
|
303
|
+
dependentFiltersEntity: "file" | "canvas";
|
|
304
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
305
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
306
|
+
created?: (() => void) | (() => void)[];
|
|
307
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
308
|
+
mounted?: (() => void) | (() => void)[];
|
|
309
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
310
|
+
updated?: (() => void) | (() => void)[];
|
|
311
|
+
activated?: (() => void) | (() => void)[];
|
|
312
|
+
deactivated?: (() => void) | (() => void)[];
|
|
313
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
314
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
315
|
+
destroyed?: (() => void) | (() => void)[];
|
|
316
|
+
unmounted?: (() => void) | (() => void)[];
|
|
317
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
318
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
319
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
320
|
+
};
|
|
321
|
+
$forceUpdate: () => void;
|
|
322
|
+
$nextTick: typeof import('vue').nextTick;
|
|
323
|
+
$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;
|
|
324
|
+
} & Readonly<{
|
|
173
325
|
filters: Record<string, any>;
|
|
174
326
|
placeholder: string;
|
|
175
327
|
initialSearchValue: string;
|
|
@@ -181,88 +333,7 @@ declare function __VLS_template(): {
|
|
|
181
333
|
hideMetadataFilters: boolean;
|
|
182
334
|
hideFilters: boolean;
|
|
183
335
|
dependentFiltersEntity: "file" | "canvas";
|
|
184
|
-
}
|
|
185
|
-
searchOnClickRef: ({
|
|
186
|
-
$: import('vue').ComponentInternalInstance;
|
|
187
|
-
$data: {};
|
|
188
|
-
$props: {
|
|
189
|
-
readonly disabled?: boolean | undefined;
|
|
190
|
-
readonly placeholder?: string | undefined;
|
|
191
|
-
readonly fullWidth?: boolean | undefined;
|
|
192
|
-
readonly initialSearchValue?: string | undefined;
|
|
193
|
-
readonly onSearch?: ((s: string) => any) | undefined;
|
|
194
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
195
|
-
$attrs: {
|
|
196
|
-
[x: string]: unknown;
|
|
197
|
-
};
|
|
198
|
-
$refs: {
|
|
199
|
-
[x: string]: unknown;
|
|
200
|
-
};
|
|
201
|
-
$slots: Readonly<{
|
|
202
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
203
|
-
}>;
|
|
204
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
205
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
206
|
-
$host: Element | null;
|
|
207
|
-
$emit: (event: "search", s: string) => void;
|
|
208
|
-
$el: HTMLDivElement;
|
|
209
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
210
|
-
disabled?: boolean;
|
|
211
|
-
placeholder?: string;
|
|
212
|
-
fullWidth?: boolean;
|
|
213
|
-
initialSearchValue?: string;
|
|
214
|
-
}> & Readonly<{
|
|
215
|
-
onSearch?: ((s: string) => any) | undefined;
|
|
216
|
-
}>, {
|
|
217
|
-
clear: () => Promise<void>;
|
|
218
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
219
|
-
search: (s: string) => any;
|
|
220
|
-
}, string, {
|
|
221
|
-
initialSearchValue: string;
|
|
222
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
223
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
224
|
-
created?: (() => void) | (() => void)[];
|
|
225
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
226
|
-
mounted?: (() => void) | (() => void)[];
|
|
227
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
228
|
-
updated?: (() => void) | (() => void)[];
|
|
229
|
-
activated?: (() => void) | (() => void)[];
|
|
230
|
-
deactivated?: (() => void) | (() => void)[];
|
|
231
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
232
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
233
|
-
destroyed?: (() => void) | (() => void)[];
|
|
234
|
-
unmounted?: (() => void) | (() => void)[];
|
|
235
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
236
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
237
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
238
|
-
};
|
|
239
|
-
$forceUpdate: () => void;
|
|
240
|
-
$nextTick: typeof import('vue').nextTick;
|
|
241
|
-
$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;
|
|
242
|
-
} & Readonly<{
|
|
243
|
-
initialSearchValue: string;
|
|
244
|
-
}> & Omit<Readonly<{
|
|
245
|
-
disabled?: boolean;
|
|
246
|
-
placeholder?: string;
|
|
247
|
-
fullWidth?: boolean;
|
|
248
|
-
initialSearchValue?: string;
|
|
249
|
-
}> & Readonly<{
|
|
250
|
-
onSearch?: ((s: string) => any) | undefined;
|
|
251
|
-
}>, "clear" | "initialSearchValue"> & import('vue').ShallowUnwrapRef<{
|
|
252
|
-
clear: () => Promise<void>;
|
|
253
|
-
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
254
|
-
$slots: {
|
|
255
|
-
options?(_: {}): any;
|
|
256
|
-
};
|
|
257
|
-
}) | null;
|
|
258
|
-
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
259
|
-
P: {};
|
|
260
|
-
B: {};
|
|
261
|
-
D: {};
|
|
262
|
-
C: {};
|
|
263
|
-
M: {};
|
|
264
|
-
Defaults: {};
|
|
265
|
-
}, Readonly<{
|
|
336
|
+
}> & Omit<Readonly<{
|
|
266
337
|
disabled?: boolean;
|
|
267
338
|
engagingIds?: string[];
|
|
268
339
|
entity: import('../../main.lib').MetadataFilterRequest["entity"];
|
|
@@ -291,21 +362,13 @@ declare function __VLS_template(): {
|
|
|
291
362
|
"onUpdate:search"?: ((search: string, filters?: Record<string, any> | undefined) => any) | undefined;
|
|
292
363
|
"onUpdate:filters"?: ((filters: Record<string, any>) => any) | undefined;
|
|
293
364
|
"onUpdate:searchIn"?: ((searchIn: string) => any) | undefined;
|
|
294
|
-
}>, {
|
|
365
|
+
}>, "clearSearch" | ("filters" | "placeholder" | "initialSearchValue" | "includeDraftValues" | "engagingIds" | "popularIds" | "recommendedIds" | "showLatestFilter" | "hideMetadataFilters" | "hideFilters" | "dependentFiltersEntity")> & import('vue').ShallowUnwrapRef<{
|
|
295
366
|
clearSearch: () => void;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
engagingIds: string[];
|
|
302
|
-
popularIds: string[];
|
|
303
|
-
recommendedIds: string[];
|
|
304
|
-
showLatestFilter: boolean;
|
|
305
|
-
hideMetadataFilters: boolean;
|
|
306
|
-
hideFilters: boolean;
|
|
307
|
-
dependentFiltersEntity: "file" | "canvas";
|
|
308
|
-
}> | null;
|
|
367
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
368
|
+
$slots: {
|
|
369
|
+
'input-suffix'?(_: {}): any;
|
|
370
|
+
};
|
|
371
|
+
}) | null;
|
|
309
372
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
310
373
|
P: {};
|
|
311
374
|
B: {};
|
|
@@ -372,6 +435,99 @@ declare function __VLS_template(): {
|
|
|
372
435
|
order: "asc" | "desc";
|
|
373
436
|
};
|
|
374
437
|
}> | null;
|
|
438
|
+
listRef: ({
|
|
439
|
+
$: import('vue').ComponentInternalInstance;
|
|
440
|
+
$data: {};
|
|
441
|
+
$props: {
|
|
442
|
+
readonly data: import('../CList/CList.vue').ListDataItem[];
|
|
443
|
+
readonly selectedIds?: (number | string)[] | undefined;
|
|
444
|
+
readonly maxRowHeight: number;
|
|
445
|
+
readonly height?: number | undefined;
|
|
446
|
+
readonly movable?: boolean | undefined;
|
|
447
|
+
readonly onMove?: ((...args: any[]) => any) | undefined;
|
|
448
|
+
readonly "onItem:click"?: ((...args: any[]) => any) | undefined;
|
|
449
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
450
|
+
$attrs: {
|
|
451
|
+
[x: string]: unknown;
|
|
452
|
+
};
|
|
453
|
+
$refs: {
|
|
454
|
+
[x: string]: unknown;
|
|
455
|
+
} & {
|
|
456
|
+
virtualizerContainerRef: HTMLDivElement;
|
|
457
|
+
};
|
|
458
|
+
$slots: Readonly<{
|
|
459
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
460
|
+
}>;
|
|
461
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
462
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
463
|
+
$host: Element | null;
|
|
464
|
+
$emit: ((event: "move", ...args: any[]) => void) & ((event: "item:click", ...args: any[]) => void);
|
|
465
|
+
$el: HTMLDivElement;
|
|
466
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
467
|
+
data: import('../CList/CList.vue').ListDataItem[];
|
|
468
|
+
selectedIds?: (number | string)[];
|
|
469
|
+
maxRowHeight: number;
|
|
470
|
+
height?: number;
|
|
471
|
+
movable?: boolean;
|
|
472
|
+
}> & Readonly<{
|
|
473
|
+
onMove?: ((...args: any[]) => any) | undefined;
|
|
474
|
+
"onItem:click"?: ((...args: any[]) => any) | undefined;
|
|
475
|
+
}>, {
|
|
476
|
+
updateContextMenuItem: (item: import('../CList/CList.vue').ListDataItem, isOpen: boolean, e?: MouseEvent) => void;
|
|
477
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
478
|
+
move: (...args: any[]) => void;
|
|
479
|
+
"item:click": (...args: any[]) => void;
|
|
480
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
481
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
482
|
+
created?: (() => void) | (() => void)[];
|
|
483
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
484
|
+
mounted?: (() => void) | (() => void)[];
|
|
485
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
486
|
+
updated?: (() => void) | (() => void)[];
|
|
487
|
+
activated?: (() => void) | (() => void)[];
|
|
488
|
+
deactivated?: (() => void) | (() => void)[];
|
|
489
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
490
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
491
|
+
destroyed?: (() => void) | (() => void)[];
|
|
492
|
+
unmounted?: (() => void) | (() => void)[];
|
|
493
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
494
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
495
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
496
|
+
};
|
|
497
|
+
$forceUpdate: () => void;
|
|
498
|
+
$nextTick: typeof import('vue').nextTick;
|
|
499
|
+
$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;
|
|
500
|
+
} & Readonly<{}> & Omit<Readonly<{
|
|
501
|
+
data: import('../CList/CList.vue').ListDataItem[];
|
|
502
|
+
selectedIds?: (number | string)[];
|
|
503
|
+
maxRowHeight: number;
|
|
504
|
+
height?: number;
|
|
505
|
+
movable?: boolean;
|
|
506
|
+
}> & Readonly<{
|
|
507
|
+
onMove?: ((...args: any[]) => any) | undefined;
|
|
508
|
+
"onItem:click"?: ((...args: any[]) => any) | undefined;
|
|
509
|
+
}>, "updateContextMenuItem"> & import('vue').ShallowUnwrapRef<{
|
|
510
|
+
updateContextMenuItem: (item: import('../CList/CList.vue').ListDataItem, isOpen: boolean, e?: MouseEvent) => void;
|
|
511
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
512
|
+
$slots: {
|
|
513
|
+
item?(_: {
|
|
514
|
+
index: number;
|
|
515
|
+
isContextMenuOpen: boolean;
|
|
516
|
+
isDraggedOver: boolean;
|
|
517
|
+
isSelected: boolean;
|
|
518
|
+
item: {
|
|
519
|
+
[key: string]: any;
|
|
520
|
+
id: number | string;
|
|
521
|
+
};
|
|
522
|
+
}): any;
|
|
523
|
+
'item:context-menu'?(_: {
|
|
524
|
+
item: {
|
|
525
|
+
[key: string]: any;
|
|
526
|
+
id: number | string;
|
|
527
|
+
};
|
|
528
|
+
}): any;
|
|
529
|
+
};
|
|
530
|
+
}) | null;
|
|
375
531
|
tableRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
376
532
|
selectedRows?: Record<string, boolean>;
|
|
377
533
|
scrollerClass?: string;
|
|
@@ -430,7 +586,9 @@ declare function __VLS_template(): {
|
|
|
430
586
|
hideTotalResults: boolean;
|
|
431
587
|
serverSide: boolean;
|
|
432
588
|
disabledIds: Array<string | number>;
|
|
433
|
-
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
589
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
590
|
+
tableScroller: HTMLDivElement;
|
|
591
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
434
592
|
P: {};
|
|
435
593
|
B: {};
|
|
436
594
|
D: {};
|
|
@@ -597,42 +755,194 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
597
755
|
order: "asc" | "desc";
|
|
598
756
|
};
|
|
599
757
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
600
|
-
searchFiltersRef:
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
758
|
+
searchFiltersRef: ({
|
|
759
|
+
$: import('vue').ComponentInternalInstance;
|
|
760
|
+
$data: {};
|
|
761
|
+
$props: {
|
|
762
|
+
readonly disabled?: boolean | undefined;
|
|
763
|
+
readonly engagingIds?: string[] | undefined;
|
|
764
|
+
readonly entity: import('../../main.lib').MetadataFilterRequest["entity"];
|
|
765
|
+
readonly includeDraftValues?: boolean | undefined;
|
|
766
|
+
readonly isSection?: boolean | undefined;
|
|
767
|
+
readonly isTemplate?: boolean | undefined;
|
|
768
|
+
readonly searchInOptions?: import('../CSearchFilters/CSearchFilters.types').SearchInOption[] | undefined;
|
|
769
|
+
readonly filters?: Record<string, any> | undefined;
|
|
770
|
+
readonly initialSearchValue?: string | undefined;
|
|
771
|
+
readonly ownerId?: number | null | undefined;
|
|
772
|
+
readonly placeholder?: string | undefined;
|
|
773
|
+
readonly popularIds?: string[] | undefined;
|
|
774
|
+
readonly recommendedIds?: string[] | undefined;
|
|
775
|
+
readonly showLatestFilter?: boolean | undefined;
|
|
776
|
+
readonly hideMetadataFilters?: boolean | undefined;
|
|
777
|
+
readonly hideFilters?: boolean | undefined;
|
|
778
|
+
readonly customFilterComponents?: {
|
|
779
|
+
type: MetadataTemplateFieldTypeEnum;
|
|
780
|
+
name: string;
|
|
781
|
+
label: string;
|
|
782
|
+
options?: [];
|
|
783
|
+
}[] | undefined;
|
|
784
|
+
readonly enableDependentFilters?: boolean | undefined;
|
|
785
|
+
readonly dependentFiltersEntity?: "file" | "canvas" | undefined;
|
|
786
|
+
readonly "onUpdate:search"?: ((search: string, filters?: Record<string, any> | undefined) => any) | undefined;
|
|
787
|
+
readonly "onUpdate:filters"?: ((filters: Record<string, any>) => any) | undefined;
|
|
788
|
+
readonly "onUpdate:searchIn"?: ((searchIn: string) => any) | undefined;
|
|
789
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
790
|
+
$attrs: {
|
|
791
|
+
[x: string]: unknown;
|
|
792
|
+
};
|
|
793
|
+
$refs: {
|
|
794
|
+
[x: string]: unknown;
|
|
795
|
+
} & {
|
|
796
|
+
searchOnClickRef: ({
|
|
797
|
+
$: import('vue').ComponentInternalInstance;
|
|
798
|
+
$data: {};
|
|
799
|
+
$props: {
|
|
800
|
+
readonly disabled?: boolean | undefined;
|
|
801
|
+
readonly placeholder?: string | undefined;
|
|
802
|
+
readonly fullWidth?: boolean | undefined;
|
|
803
|
+
readonly initialSearchValue?: string | undefined;
|
|
804
|
+
readonly onSearch?: ((s: string) => any) | undefined;
|
|
805
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
806
|
+
$attrs: {
|
|
807
|
+
[x: string]: unknown;
|
|
808
|
+
};
|
|
809
|
+
$refs: {
|
|
810
|
+
[x: string]: unknown;
|
|
811
|
+
};
|
|
812
|
+
$slots: Readonly<{
|
|
813
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
814
|
+
}>;
|
|
815
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
816
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
817
|
+
$host: Element | null;
|
|
818
|
+
$emit: (event: "search", s: string) => void;
|
|
819
|
+
$el: HTMLDivElement;
|
|
820
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
821
|
+
disabled?: boolean;
|
|
822
|
+
placeholder?: string;
|
|
823
|
+
fullWidth?: boolean;
|
|
824
|
+
initialSearchValue?: string;
|
|
825
|
+
}> & Readonly<{
|
|
826
|
+
onSearch?: ((s: string) => any) | undefined;
|
|
827
|
+
}>, {
|
|
828
|
+
clear: () => Promise<void>;
|
|
829
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
830
|
+
search: (s: string) => any;
|
|
831
|
+
}, string, {
|
|
832
|
+
initialSearchValue: string;
|
|
833
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
834
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
835
|
+
created?: (() => void) | (() => void)[];
|
|
836
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
837
|
+
mounted?: (() => void) | (() => void)[];
|
|
838
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
839
|
+
updated?: (() => void) | (() => void)[];
|
|
840
|
+
activated?: (() => void) | (() => void)[];
|
|
841
|
+
deactivated?: (() => void) | (() => void)[];
|
|
842
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
843
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
844
|
+
destroyed?: (() => void) | (() => void)[];
|
|
845
|
+
unmounted?: (() => void) | (() => void)[];
|
|
846
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
847
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
848
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
849
|
+
};
|
|
850
|
+
$forceUpdate: () => void;
|
|
851
|
+
$nextTick: typeof import('vue').nextTick;
|
|
852
|
+
$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;
|
|
853
|
+
} & Readonly<{
|
|
854
|
+
initialSearchValue: string;
|
|
855
|
+
}> & Omit<Readonly<{
|
|
856
|
+
disabled?: boolean;
|
|
857
|
+
placeholder?: string;
|
|
858
|
+
fullWidth?: boolean;
|
|
859
|
+
initialSearchValue?: string;
|
|
860
|
+
}> & Readonly<{
|
|
861
|
+
onSearch?: ((s: string) => any) | undefined;
|
|
862
|
+
}>, "clear" | "initialSearchValue"> & import('vue').ShallowUnwrapRef<{
|
|
863
|
+
clear: () => Promise<void>;
|
|
864
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
865
|
+
$slots: {
|
|
866
|
+
options?(_: {}): any;
|
|
867
|
+
};
|
|
868
|
+
}) | null;
|
|
869
|
+
};
|
|
870
|
+
$slots: Readonly<{
|
|
871
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
872
|
+
}>;
|
|
873
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
874
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
875
|
+
$host: Element | null;
|
|
876
|
+
$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);
|
|
877
|
+
$el: HTMLDivElement;
|
|
878
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
879
|
+
disabled?: boolean;
|
|
880
|
+
engagingIds?: string[];
|
|
881
|
+
entity: import('../../main.lib').MetadataFilterRequest["entity"];
|
|
882
|
+
includeDraftValues?: boolean;
|
|
883
|
+
isSection?: import('../../main.lib').MetadataFilterRequest["is_section"];
|
|
884
|
+
isTemplate?: import('../../main.lib').MetadataFilterRequest["is_template"];
|
|
885
|
+
searchInOptions?: import('../CSearchFilters/CSearchFilters.types').SearchInOption[];
|
|
886
|
+
filters?: Record<string, any>;
|
|
887
|
+
initialSearchValue?: string;
|
|
888
|
+
ownerId?: number | null;
|
|
889
|
+
placeholder?: string;
|
|
890
|
+
popularIds?: string[];
|
|
891
|
+
recommendedIds?: string[];
|
|
892
|
+
showLatestFilter?: boolean;
|
|
893
|
+
hideMetadataFilters?: boolean;
|
|
894
|
+
hideFilters?: boolean;
|
|
895
|
+
customFilterComponents?: {
|
|
896
|
+
type: MetadataTemplateFieldTypeEnum;
|
|
897
|
+
name: string;
|
|
898
|
+
label: string;
|
|
899
|
+
options?: [];
|
|
900
|
+
}[];
|
|
901
|
+
enableDependentFilters?: boolean;
|
|
902
|
+
dependentFiltersEntity?: "file" | "canvas";
|
|
903
|
+
}> & Readonly<{
|
|
904
|
+
"onUpdate:search"?: ((search: string, filters?: Record<string, any> | undefined) => any) | undefined;
|
|
905
|
+
"onUpdate:filters"?: ((filters: Record<string, any>) => any) | undefined;
|
|
906
|
+
"onUpdate:searchIn"?: ((searchIn: string) => any) | undefined;
|
|
907
|
+
}>, {
|
|
908
|
+
clearSearch: () => void;
|
|
909
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
910
|
+
"update:search": (search: string, filters?: Record<string, any> | undefined) => any;
|
|
911
|
+
"update:filters": (filters: Record<string, any>) => any;
|
|
912
|
+
"update:searchIn": (searchIn: string) => any;
|
|
913
|
+
}, string, {
|
|
914
|
+
filters: Record<string, any>;
|
|
915
|
+
placeholder: string;
|
|
916
|
+
initialSearchValue: string;
|
|
917
|
+
includeDraftValues: boolean;
|
|
918
|
+
engagingIds: string[];
|
|
919
|
+
popularIds: string[];
|
|
920
|
+
recommendedIds: string[];
|
|
921
|
+
showLatestFilter: boolean;
|
|
922
|
+
hideMetadataFilters: boolean;
|
|
923
|
+
hideFilters: boolean;
|
|
924
|
+
dependentFiltersEntity: "file" | "canvas";
|
|
925
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
926
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
927
|
+
created?: (() => void) | (() => void)[];
|
|
928
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
929
|
+
mounted?: (() => void) | (() => void)[];
|
|
930
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
931
|
+
updated?: (() => void) | (() => void)[];
|
|
932
|
+
activated?: (() => void) | (() => void)[];
|
|
933
|
+
deactivated?: (() => void) | (() => void)[];
|
|
934
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
935
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
936
|
+
destroyed?: (() => void) | (() => void)[];
|
|
937
|
+
unmounted?: (() => void) | (() => void)[];
|
|
938
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
939
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
940
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
941
|
+
};
|
|
942
|
+
$forceUpdate: () => void;
|
|
943
|
+
$nextTick: typeof import('vue').nextTick;
|
|
944
|
+
$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;
|
|
945
|
+
} & Readonly<{
|
|
636
946
|
filters: Record<string, any>;
|
|
637
947
|
placeholder: string;
|
|
638
948
|
initialSearchValue: string;
|
|
@@ -644,88 +954,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
644
954
|
hideMetadataFilters: boolean;
|
|
645
955
|
hideFilters: boolean;
|
|
646
956
|
dependentFiltersEntity: "file" | "canvas";
|
|
647
|
-
}
|
|
648
|
-
searchOnClickRef: ({
|
|
649
|
-
$: import('vue').ComponentInternalInstance;
|
|
650
|
-
$data: {};
|
|
651
|
-
$props: {
|
|
652
|
-
readonly disabled?: boolean | undefined;
|
|
653
|
-
readonly placeholder?: string | undefined;
|
|
654
|
-
readonly fullWidth?: boolean | undefined;
|
|
655
|
-
readonly initialSearchValue?: string | undefined;
|
|
656
|
-
readonly onSearch?: ((s: string) => any) | undefined;
|
|
657
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
658
|
-
$attrs: {
|
|
659
|
-
[x: string]: unknown;
|
|
660
|
-
};
|
|
661
|
-
$refs: {
|
|
662
|
-
[x: string]: unknown;
|
|
663
|
-
};
|
|
664
|
-
$slots: Readonly<{
|
|
665
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
666
|
-
}>;
|
|
667
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
668
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
669
|
-
$host: Element | null;
|
|
670
|
-
$emit: (event: "search", s: string) => void;
|
|
671
|
-
$el: HTMLDivElement;
|
|
672
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
673
|
-
disabled?: boolean;
|
|
674
|
-
placeholder?: string;
|
|
675
|
-
fullWidth?: boolean;
|
|
676
|
-
initialSearchValue?: string;
|
|
677
|
-
}> & Readonly<{
|
|
678
|
-
onSearch?: ((s: string) => any) | undefined;
|
|
679
|
-
}>, {
|
|
680
|
-
clear: () => Promise<void>;
|
|
681
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
682
|
-
search: (s: string) => any;
|
|
683
|
-
}, string, {
|
|
684
|
-
initialSearchValue: string;
|
|
685
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
686
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
687
|
-
created?: (() => void) | (() => void)[];
|
|
688
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
689
|
-
mounted?: (() => void) | (() => void)[];
|
|
690
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
691
|
-
updated?: (() => void) | (() => void)[];
|
|
692
|
-
activated?: (() => void) | (() => void)[];
|
|
693
|
-
deactivated?: (() => void) | (() => void)[];
|
|
694
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
695
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
696
|
-
destroyed?: (() => void) | (() => void)[];
|
|
697
|
-
unmounted?: (() => void) | (() => void)[];
|
|
698
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
699
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
700
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
701
|
-
};
|
|
702
|
-
$forceUpdate: () => void;
|
|
703
|
-
$nextTick: typeof import('vue').nextTick;
|
|
704
|
-
$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;
|
|
705
|
-
} & Readonly<{
|
|
706
|
-
initialSearchValue: string;
|
|
707
|
-
}> & Omit<Readonly<{
|
|
708
|
-
disabled?: boolean;
|
|
709
|
-
placeholder?: string;
|
|
710
|
-
fullWidth?: boolean;
|
|
711
|
-
initialSearchValue?: string;
|
|
712
|
-
}> & Readonly<{
|
|
713
|
-
onSearch?: ((s: string) => any) | undefined;
|
|
714
|
-
}>, "clear" | "initialSearchValue"> & import('vue').ShallowUnwrapRef<{
|
|
715
|
-
clear: () => Promise<void>;
|
|
716
|
-
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
717
|
-
$slots: {
|
|
718
|
-
options?(_: {}): any;
|
|
719
|
-
};
|
|
720
|
-
}) | null;
|
|
721
|
-
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
722
|
-
P: {};
|
|
723
|
-
B: {};
|
|
724
|
-
D: {};
|
|
725
|
-
C: {};
|
|
726
|
-
M: {};
|
|
727
|
-
Defaults: {};
|
|
728
|
-
}, Readonly<{
|
|
957
|
+
}> & Omit<Readonly<{
|
|
729
958
|
disabled?: boolean;
|
|
730
959
|
engagingIds?: string[];
|
|
731
960
|
entity: import('../../main.lib').MetadataFilterRequest["entity"];
|
|
@@ -754,21 +983,13 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
754
983
|
"onUpdate:search"?: ((search: string, filters?: Record<string, any> | undefined) => any) | undefined;
|
|
755
984
|
"onUpdate:filters"?: ((filters: Record<string, any>) => any) | undefined;
|
|
756
985
|
"onUpdate:searchIn"?: ((searchIn: string) => any) | undefined;
|
|
757
|
-
}>, {
|
|
986
|
+
}>, "clearSearch" | ("filters" | "placeholder" | "initialSearchValue" | "includeDraftValues" | "engagingIds" | "popularIds" | "recommendedIds" | "showLatestFilter" | "hideMetadataFilters" | "hideFilters" | "dependentFiltersEntity")> & import('vue').ShallowUnwrapRef<{
|
|
758
987
|
clearSearch: () => void;
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
engagingIds: string[];
|
|
765
|
-
popularIds: string[];
|
|
766
|
-
recommendedIds: string[];
|
|
767
|
-
showLatestFilter: boolean;
|
|
768
|
-
hideMetadataFilters: boolean;
|
|
769
|
-
hideFilters: boolean;
|
|
770
|
-
dependentFiltersEntity: "file" | "canvas";
|
|
771
|
-
}> | null;
|
|
988
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
989
|
+
$slots: {
|
|
990
|
+
'input-suffix'?(_: {}): any;
|
|
991
|
+
};
|
|
992
|
+
}) | null;
|
|
772
993
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
773
994
|
P: {};
|
|
774
995
|
B: {};
|
|
@@ -835,6 +1056,99 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
835
1056
|
order: "asc" | "desc";
|
|
836
1057
|
};
|
|
837
1058
|
}> | null;
|
|
1059
|
+
listRef: ({
|
|
1060
|
+
$: import('vue').ComponentInternalInstance;
|
|
1061
|
+
$data: {};
|
|
1062
|
+
$props: {
|
|
1063
|
+
readonly data: import('../CList/CList.vue').ListDataItem[];
|
|
1064
|
+
readonly selectedIds?: (number | string)[] | undefined;
|
|
1065
|
+
readonly maxRowHeight: number;
|
|
1066
|
+
readonly height?: number | undefined;
|
|
1067
|
+
readonly movable?: boolean | undefined;
|
|
1068
|
+
readonly onMove?: ((...args: any[]) => any) | undefined;
|
|
1069
|
+
readonly "onItem:click"?: ((...args: any[]) => any) | undefined;
|
|
1070
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
1071
|
+
$attrs: {
|
|
1072
|
+
[x: string]: unknown;
|
|
1073
|
+
};
|
|
1074
|
+
$refs: {
|
|
1075
|
+
[x: string]: unknown;
|
|
1076
|
+
} & {
|
|
1077
|
+
virtualizerContainerRef: HTMLDivElement;
|
|
1078
|
+
};
|
|
1079
|
+
$slots: Readonly<{
|
|
1080
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
1081
|
+
}>;
|
|
1082
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
1083
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
1084
|
+
$host: Element | null;
|
|
1085
|
+
$emit: ((event: "move", ...args: any[]) => void) & ((event: "item:click", ...args: any[]) => void);
|
|
1086
|
+
$el: HTMLDivElement;
|
|
1087
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
1088
|
+
data: import('../CList/CList.vue').ListDataItem[];
|
|
1089
|
+
selectedIds?: (number | string)[];
|
|
1090
|
+
maxRowHeight: number;
|
|
1091
|
+
height?: number;
|
|
1092
|
+
movable?: boolean;
|
|
1093
|
+
}> & Readonly<{
|
|
1094
|
+
onMove?: ((...args: any[]) => any) | undefined;
|
|
1095
|
+
"onItem:click"?: ((...args: any[]) => any) | undefined;
|
|
1096
|
+
}>, {
|
|
1097
|
+
updateContextMenuItem: (item: import('../CList/CList.vue').ListDataItem, isOpen: boolean, e?: MouseEvent) => void;
|
|
1098
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1099
|
+
move: (...args: any[]) => void;
|
|
1100
|
+
"item:click": (...args: any[]) => void;
|
|
1101
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
1102
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
1103
|
+
created?: (() => void) | (() => void)[];
|
|
1104
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
1105
|
+
mounted?: (() => void) | (() => void)[];
|
|
1106
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
1107
|
+
updated?: (() => void) | (() => void)[];
|
|
1108
|
+
activated?: (() => void) | (() => void)[];
|
|
1109
|
+
deactivated?: (() => void) | (() => void)[];
|
|
1110
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
1111
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
1112
|
+
destroyed?: (() => void) | (() => void)[];
|
|
1113
|
+
unmounted?: (() => void) | (() => void)[];
|
|
1114
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
1115
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
1116
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1117
|
+
};
|
|
1118
|
+
$forceUpdate: () => void;
|
|
1119
|
+
$nextTick: typeof import('vue').nextTick;
|
|
1120
|
+
$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;
|
|
1121
|
+
} & Readonly<{}> & Omit<Readonly<{
|
|
1122
|
+
data: import('../CList/CList.vue').ListDataItem[];
|
|
1123
|
+
selectedIds?: (number | string)[];
|
|
1124
|
+
maxRowHeight: number;
|
|
1125
|
+
height?: number;
|
|
1126
|
+
movable?: boolean;
|
|
1127
|
+
}> & Readonly<{
|
|
1128
|
+
onMove?: ((...args: any[]) => any) | undefined;
|
|
1129
|
+
"onItem:click"?: ((...args: any[]) => any) | undefined;
|
|
1130
|
+
}>, "updateContextMenuItem"> & import('vue').ShallowUnwrapRef<{
|
|
1131
|
+
updateContextMenuItem: (item: import('../CList/CList.vue').ListDataItem, isOpen: boolean, e?: MouseEvent) => void;
|
|
1132
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1133
|
+
$slots: {
|
|
1134
|
+
item?(_: {
|
|
1135
|
+
index: number;
|
|
1136
|
+
isContextMenuOpen: boolean;
|
|
1137
|
+
isDraggedOver: boolean;
|
|
1138
|
+
isSelected: boolean;
|
|
1139
|
+
item: {
|
|
1140
|
+
[key: string]: any;
|
|
1141
|
+
id: number | string;
|
|
1142
|
+
};
|
|
1143
|
+
}): any;
|
|
1144
|
+
'item:context-menu'?(_: {
|
|
1145
|
+
item: {
|
|
1146
|
+
[key: string]: any;
|
|
1147
|
+
id: number | string;
|
|
1148
|
+
};
|
|
1149
|
+
}): any;
|
|
1150
|
+
};
|
|
1151
|
+
}) | null;
|
|
838
1152
|
tableRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
839
1153
|
selectedRows?: Record<string, boolean>;
|
|
840
1154
|
scrollerClass?: string;
|
|
@@ -893,7 +1207,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
893
1207
|
hideTotalResults: boolean;
|
|
894
1208
|
serverSide: boolean;
|
|
895
1209
|
disabledIds: Array<string | number>;
|
|
896
|
-
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
1210
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
1211
|
+
tableScroller: HTMLDivElement;
|
|
1212
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
897
1213
|
P: {};
|
|
898
1214
|
B: {};
|
|
899
1215
|
D: {};
|